/* ─────────────────────────────────────────
   hero.css — Section hero plein écran
   ───────────────────────────────────────── */

.hero {
  height: 100vh;
  min-height: 620px;
  background: linear-gradient(135deg, #ede6db, #f5efe0, #ede6db);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animation du dégradé */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Monogramme filigrane */
.hero-mono {
  position: absolute;
  width: min(480px, 68vw);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Contenu central */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo-top {
  width: 52px;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-label {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.85s 0.4s forwards;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 13vw, 9.5rem);
  line-height: 0.88;
  color: var(--ink);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1.1s 0.55s forwards;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroWordFadeUp 0.8s forwards;
}

/* Animation avec delay automatique */
.hero-word:nth-child(1) { animation-delay: 0.3s; }
.hero-word:nth-child(2) { animation-delay: 0.6s; }
.hero-word:nth-child(3) { animation-delay: 0.9s; }


@keyframes heroWordFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .and {
  font-style: italic;
  font-size: 0.42em;
  display: block;
  line-height: 1.75;
  letter-spacing: 0.07em;
  color: var(--ink-mid);
}

.hero-date {
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.85s 0.85s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.85s 1.3s forwards;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--ink-light), transparent);
  animation: pulse 2.2s 2s infinite;
}

.scroll-label {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
}
