/* ═══════════════════════════════════════════════
   HERO SECTION — Fully responsive
   ═══════════════════════════════════════════════ */

#accueil {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ─── Background ─── */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.62) 50%, rgba(8,8,8,0.88) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
  z-index: 0;
  /* Fallback for older browsers that don't support inset */
  top: 0; right: 0; bottom: 0; left: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.10) 0%, transparent 60%);
}

/* ─── Content ─── */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 80px 80px;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.60);
}

.hero-tagline::before {
  content: '';
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 8vw, 110px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 2px;
  color: #FAFAF8;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.70), 0 0 60px rgba(0,0,0,0.40);
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 250, 248, 0.78);
  margin-bottom: 40px;
  max-width: 650px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

.hero-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 2;
  color: rgba(250, 250, 248, 0.88);
  max-width: 520px;
  margin-bottom: 48px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Stats sidebar ─── */
.hero-stats {
  position: absolute;
  right: 80px; bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 1;
}

.hero-stat {
  text-align: right;
  border-right: 2px solid var(--gold);
  padding-right: 22px;
}

.hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.70);
  margin-top: 5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.50);
}

/* ─── Scroll indicator ─── */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  text-decoration: none;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}
