/* ── Hero principal (index) ───────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../assets/images/c0c4e7b0-8b70-4f61-82e0-64f220610027.jpg') center/cover no-repeat;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(17,17,17,0.6) 65%,
    var(--black-soft) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* Fond CSS décoratif */
.hero-bg-css {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Orbs : taches lumineuses dorées floutées */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, transparent 70%);
  bottom: -25%;
  right: -15%;
  animation: orbFloat1 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: orbFloat2 16s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 20vw;
  height: 20vw;
  max-width: 260px;
  max-height: 260px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  top: 30%;
  left: 40%;
  animation: orbFloat1 9s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes orbFloat2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-20px, 25px) scale(0.95); }
}

/* Grille géométrique très discrète */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Lignes diagonales décoratives */
.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.12), transparent);
  height: 1px;
  width: 60%;
  pointer-events: none;
}
.hero-line-1 {
  top: 32%;
  right: -5%;
  transform: rotate(-18deg);
  width: 50%;
}
.hero-line-2 {
  bottom: 28%;
  right: 5%;
  transform: rotate(-18deg);
  width: 35%;
  opacity: 0.6;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.75rem;
  line-height: 1.8;
}

/* ── Section photo de groupe ──────────────────────────────────── */
.group-photo-wrap {
  position: relative;
  width: 100%;
}
.group-photo-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
  border: 1px solid rgba(201,168,76,0.2);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
  transition: clip-path 0.5s var(--ease);
}
.group-photo-wrap:hover .group-photo-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}

/* Badge flottant avec les stats */
.group-photo-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
  background: var(--black-soft);
  border: 1px solid var(--gold);
  padding: 0.9rem 1.5rem;
  text-align: center;
  min-width: 96px;
  z-index: 2;
}

/* Indicateur scroll */
.scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.9; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}
