/* ============================================================
   NUIT DORÉE 2026 — accueil.css
   Styles spécifiques à la page d'accueil
   ============================================================ */

/* ── PAGE BODY ───────────────────────────────────────────── */
.page-accueil {
  background: var(--beige);
}

/* ── NAV transparent sur hero ────────────────────────────── */
.nav--transparent {
  background: transparent !important;
  box-shadow: none !important;
  transition: background .4s, box-shadow .4s;
}
.nav--scrolled-dark {
  background: rgba(13,13,13,0.97) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) !important;
}
.nav__mobile-cta {
  color: var(--or) !important;
  font-weight: 700;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0D0D0D;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 56px;
}

/* Contenu gauche */
.hero__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.hero__title em {
  color: var(--or);
  font-style: italic;
}
.hero__title-sub {
  font-family: var(--cursive);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 38px);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 28px 0 32px;
  max-width: 440px;
}

/* Meta bar : date | horaires | lieu */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 16px 0;
  border-top: 1px solid rgba(197,160,89,0.2);
  border-bottom: 1px solid rgba(197,160,89,0.2);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 20px;
}
.hero__meta-item:first-child { padding-left: 0; }
.hero__meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--or);
}
.hero__meta-val {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}
.hero__meta-div {
  width: 1px;
  height: 32px;
  background: rgba(197,160,89,0.25);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__prix {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.hero__prix strong {
  color: var(--or);
  font-size: 16px;
  font-family: var(--serif);
}
.hero__badge {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: .5px;
}

/* Cadre photo droite */
.hero__photo-wrap {
  position: relative;
}

.hero__photo-frame {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(197,160,89,0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13,13,13,0.7) 100%
  );
}

.hero__photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.hero__photo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(13,13,13,0.7);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(197,160,89,0.3);
}

/* Carte flottante */
.hero__float-card {
  position: absolute;
  top: -18px;
  left: -22px;
  background: var(--or);
  border-radius: 4px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(197,160,89,0.3);
}
.hero__float-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: #0D0D0D;
  line-height: 1;
}
.hero__float-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.7);
  text-align: center;
  line-height: 1.3;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .4;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-txt {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* ── ANIMATIONS ENTRÉE ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade { animation: fadeUp .75s cubic-bezier(.22,1,.36,1) forwards; opacity: 0; }
.f1 { animation-delay: .05s; }
.f2 { animation-delay: .18s; }
.f3 { animation-delay: .32s; }
.f4 { animation-delay: .46s; }
.f5 { animation-delay: .62s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 12px;
}
.eyebrow--light {
  color: rgba(197,160,89,0.7);
}

/* ── SECTION CONCEPT ─────────────────────────────────────── */
.section-concept {
  background: var(--beige);
  padding: clamp(72px, 10vw, 100px) 24px;
}

.concept-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.concept-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: #2B1E17;
  line-height: 1.1;
  margin-bottom: 20px;
}
.concept-h2 em {
  color: var(--or);
  font-style: italic;
}

.concept-body {
  font-size: 15px;
  color: var(--t-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

.concept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or-border);
  padding: 6px 16px;
  border-radius: 999px;
}

.concept-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.concept-card {
  background: #FFFFFF;
  border: 1px solid var(--b-jour);
  border-top: 2px solid var(--or);
  border-radius: var(--r);
  padding: 22px 20px;
}
.concept-card-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--or);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.concept-card-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: #2B1E17;
  margin-bottom: 6px;
  line-height: 1.25;
}
.concept-card-desc {
  font-size: 12px;
  color: var(--t-mid);
  line-height: 1.6;
}

/* ── DRESS CODE BAND ─────────────────────────────────────── */
.dresscode-band {
  background: #1A1A1A;
  border-top: 1px solid rgba(197,160,89,0.15);
  border-bottom: 1px solid rgba(197,160,89,0.15);
  padding: clamp(48px, 7vw, 72px) 24px;
}
.dresscode-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.dresscode-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.dresscode-body {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.dresscode-swatches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.swatch {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.swatch-dot {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ── SECTION LIEU ────────────────────────────────────────── */
.section-lieu {
  background: #0D0D0D;
  padding-bottom: clamp(64px, 9vw, 96px);
  overflow: hidden;
}

.lieu-header {
  padding: clamp(64px, 9vw, 96px) 24px clamp(40px, 5vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.lieu-h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
}
.lieu-h2 em {
  color: var(--or);
  font-style: italic;
}

/* Collage v2 — style images 4/5 */

/* Grand titre typographique qui déborde */
.lieu-titre-wrap {
  padding: clamp(64px, 9vw, 96px) 0 0;
  position: relative;
  overflow: hidden;
}
.lieu-titre-bg {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0;
  padding: 0 24px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Collage principal */
.lieu-collage-v2 {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  min-height: 480px;
  margin: -40px 0 0;
  position: relative;
}

/* Bloc texte gauche */
.lieu-txt-bloc {
  padding: 40px 32px 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.lieu-txt-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 320px;
}
.lieu-txt-body {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.75;
  max-width: 300px;
}

/* Cercle GPS style image 5 */
.lieu-gps-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}
.lieu-gps-line1,
.lieu-gps-line2 {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--or);
  letter-spacing: .5px;
}
.lieu-gps-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 6px;
}

/* Stack de photos décalées */
.lieu-photos-stack {
  position: relative;
  min-height: 500px;   /* CRITIQUE : sans ça les enfants absolus sont invisibles */
  padding-bottom: 20px;
}

/* Photo A : grande, occupe le haut-droite */
.lieu-photo-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 310px;
  overflow: hidden;
  z-index: 1;
}
.lieu-photo-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
  transition: transform .6s ease;
}
.lieu-photo-a:hover img { transform: scale(1.04); }

/* Photo B : petite, bas-gauche, recouvre partiellement A */
.lieu-photo-b {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 46%;
  height: 220px;
  overflow: hidden;
  border: 4px solid #0D0D0D;
  z-index: 2;
}
.lieu-photo-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.8);
  transition: transform .6s ease;
}
.lieu-photo-b:hover img { transform: scale(1.04); }

/* Photo C : petite, milieu-droite, superposée */
.lieu-photo-c {
  position: absolute;
  top: 260px;
  right: 10px;
  width: 40%;
  height: 200px;
  overflow: hidden;
  border: 4px solid #0D0D0D;
  z-index: 3;
}
.lieu-photo-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.75);
  transition: transform .6s ease;
}
.lieu-photo-c:hover img { transform: scale(1.04); }

/* Facts band */
.lieu-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(32px, 5vw, 48px) 24px;
  border: 1px solid rgba(197,160,89,0.12);
  border-radius: var(--r);
  margin-top: 24px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.lieu-fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lieu-fact-val {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--or);
  line-height: 1;
}
.lieu-fact-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.lieu-fact-sep {
  width: 1px;
  height: 48px;
  background: rgba(197,160,89,0.15);
  flex-shrink: 0;
}

/* ── SECTION PROGRAMME ───────────────────────────────────── */
.section-programme {
  background: #FDFBF7;
  padding: clamp(72px, 10vw, 100px) 24px;
}

.programme-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.programme-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  color: #2B1E17;
  margin-bottom: 10px;
}
.programme-sub {
  font-size: 14px;
  color: var(--t-mid);
}

.programme-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--b-jour);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #FFFFFF;
}

.prog-item {
  padding: 28px 24px;
  border-right: 1px solid var(--b-jour);
  border-bottom: 1px solid var(--b-jour);
  position: relative;
  transition: background .2s;
}
.prog-item:nth-child(3n) { border-right: none; }
.prog-item:nth-child(4), .prog-item:nth-child(5), .prog-item:nth-child(6) { border-bottom: none; }
.prog-item:hover { background: #FDFBF7; }

.prog-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .2s;
}
.prog-item:hover .prog-line { background: var(--or); }

.prog-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--or);
  display: block;
  margin-bottom: 10px;
}
.prog-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: #2B1E17;
  margin-bottom: 8px;
  line-height: 1.25;
}
.prog-desc {
  font-size: 13px;
  color: var(--t-mid);
  line-height: 1.65;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: #111111;
  border-top: 1px solid rgba(197,160,89,0.2);
  border-bottom: 1px solid rgba(197,160,89,0.2);
  padding: clamp(64px, 9vw, 96px) 24px;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.cta-band-actions {
  flex-shrink: 0;
  text-align: center;
}
.btn-cta-lg {
  font-size: 12px;
  padding: 18px 36px;
  display: block;
  margin-bottom: 10px;
}
.cta-band-prix {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── SECTION CONTACT ─────────────────────────────────────── */
.section-contact {
  background: var(--beige);
  padding: clamp(64px, 9vw, 96px) 24px;
}
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
}
.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: #2B1E17;
  margin-bottom: 10px;
}
.contact-sub {
  font-size: 14px;
  color: var(--t-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--b-jour);
  border-radius: var(--r);
  transition: border-color .2s, transform .2s;
  color: inherit;
  text-decoration: none;
}
.contact-item:hover {
  border-color: var(--or-border);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--or-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
}
.contact-item-lbl {
  font-size: 10px;
  color: var(--t-pale);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-item-val {
  font-size: 14px;
  font-weight: 600;
  color: #2B1E17;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__photo-wrap {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__float-card {
    left: auto;
    right: -12px;
    top: -12px;
  }
  .concept-layout {
    grid-template-columns: 1fr;
  }
  .dresscode-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Collage v2 mobile */
  .lieu-collage-v2 {
    grid-template-columns: 1fr;
  }
  .lieu-txt-bloc {
    padding: 24px;
  }
  .lieu-photos-stack {
    min-height: 320px;
    padding: 0 24px 40px;
  }
  .lieu-photo-a {
    width: 65%;
  }
  .lieu-photo-b {
    width: 48%;
  }
  .lieu-photo-c {
    width: 40%;
    right: 30px;
    bottom: 10px;
  }
  .programme-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prog-item:nth-child(3n) { border-right: 1px solid var(--b-jour); }
  .prog-item:nth-child(2n) { border-right: none; }
  .prog-item:nth-child(4) { border-bottom: 1px solid var(--b-jour); }
  .prog-item:nth-child(5), .prog-item:nth-child(6) { border-bottom: none; }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lieu-facts {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-around;
  }
  .lieu-fact-sep { display: none; }
}

@media (max-width: 560px) {
  .hero__meta {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
  }
  .hero__meta-div { display: none; }
  .hero__meta-item { padding: 0; }
  .concept-cards { grid-template-columns: 1fr; }
  .lieu-titre-bg { font-size: clamp(60px, 22vw, 100px); }
  .lieu-gps-circle { width: 130px; height: 130px; }
  .lieu-gps-line1, .lieu-gps-line2 { font-size: 11px; }
  .programme-grid {
    grid-template-columns: 1fr;
    border-radius: 0;
  }
  .prog-item { border-right: none !important; }
  .prog-item:nth-child(n) { border-bottom: 1px solid var(--b-jour); }
  .prog-item:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fade, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll-line { animation: none; }
}
