.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../pictures/general/barrel.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 1200px;
}

/* h1 du hero : flex column pour empiler .hero-chateau et .hero-name */
.hero-overlay h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  color: white;
}

.hero-chateau {
  font-family: var(--font-secondary);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-name {
  font-family: var(--font-primary);
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero {
    min-height: 420px;
    height: 70svh;
  }

  .hero-overlay {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    height: 60svh;
  }
}