/* ============================================================
   THE PIPO NIGHT 2026 — Main Stylesheet v3
   Palette : Noir #0B0B0B | Or #D4AF37 | Or vif #FFD700 | Blanc #FFF
   Polices  : Poppins (body) + Cormorant Garamond (display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');

/* ════════════════════════════════════════
   VARIABLES
════════════════════════════════════════ */
:root {
  --noir:        #0B0B0B;
  --noir-soft:   #0f0f0f;
  --noir-card:   #161616;
  --or:          #D4AF37;
  --or-vif:      #FFD700;
  --or-fonce:    #B8860B;
  --or-champagne:#E6BE8A;
  --blanc:       #FFFFFF;
  --gris:        #888;
  --rouge:       #C0392B;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Poppins', sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius: 8px;
  --shadow-gold: 0 0 40px rgba(212,175,55,0.25);
  --shadow-card: 0 12px 40px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════
   SCROLL PROGRESS
════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--or-fonce), var(--or-vif), var(--or));
  z-index: 9999;
  width: 0;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════
   PARTICLES
════════════════════════════════════════ */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 12px 36px;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(212,175,55,0.2);
}

.navbar {
  gap: 14px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  margin-left: -12px;
}

.nav-logo-img {
  width: 140px; height: 110px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--or);
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--or); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--or), var(--or-fonce));
  color: var(--noir);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-vote-btn:hover {
  background: linear-gradient(135deg, var(--or-vif), var(--or));
  box-shadow: 0 0 24px rgba(212,175,55,0.45);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  /*gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none; */
  align-items: center;
  justify-content: center;
  width: 38px;         /* Largeur du cercle */
  height: 38px;        /* Hauteur du cercle */
  background: var(--or); /* Couleur de fond dorée */
  border-radius: 50%;  /* Transforme le carré en cercle parfait */
  gap: 3px;            /* Espace entre les 3 barres noires */
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  /* display: block; */
  /* width: 24px; height: 2px;
  background: var(--or);
  transition: var(--transition); */
  width: 15px;         /* Largeur des barres noires */
  height: 2px;         /* Épaisseur des barres */
  background: var(--noir); /* Couleur noire pour les barres */
}



/* ════════════════════════════════════════
   RESPONSIVE SMARTPHONE (NAVBAR)
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Masque le texte du logo */
  .nav-brand {
    display: none;
  }

  /* Logo compact, aligné le plus à gauche possible */
  

  

  .nav-logo { margin-left: -6px; gap: 8px; }

  /* Ajuste l'espacement de la navbar sur mobile si nécessaire */
  .navbar, .navbar.scrolled {
    padding: 12px 16px;
  }

  /* Menu hamburger ouvert — police des statistiques (Poppins) */
  .nav-links a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
  }
}


/* ════════════════════════════════════════
   HERO — PLEIN ÉCRAN IMMERSIF
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  z-index: 1;
}

/* Fond radial chaud */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184,134,11,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255,215,0,0.06) 0%, transparent 55%),
    #0B0B0B;
  z-index: -2;
}

/* Vignette bords */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Lignes de lumière décoratives */
.hero-light-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-light-lines::before,
.hero-light-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 60%;
  top: 20%;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.3), transparent);
}

.hero-light-lines::before { left: 15%; animation: lightPulse 4s ease-in-out infinite; }
.hero-light-lines::after  { right: 15%; animation: lightPulse 4s ease-in-out infinite 2s; }

@keyframes lightPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.8); }
  50%       { opacity: 0.6; transform: scaleY(1); }
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeDown 0.9s ease forwards 0.2s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--or));
}
.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--or));
}

/* Logo Pipo Night */
.hero-pipo-logo {
  padding: 80px 0 0;
  width: min(255px, 80vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: fadeUp 1.1s ease forwards 0.45s;
  filter:
    drop-shadow(0 0 60px rgba(212,175,55,0.55))
    drop-shadow(0 0 20px rgba(255,215,0,0.3));
  margin-bottom: 50px;
}

/* Divider doré */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 22px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.7s;
}

.hero-divider-line {
  width: 72px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.6));
}
.hero-divider-line.right {
  background: linear-gradient(to left, transparent, rgba(212,175,55,0.6));
}

.hero-divider-diamond {
  width: 7px; height: 7px;
  background: var(--or);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(212,175,55,0.8);
}

/* Slogan principal */
.hero-subtitle {
  /* font-family: var(--font-display); */
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.85s;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════
   CARTE THÈME DE LA SOIRÉE
════════════════════════════════════════ */
.theme-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px 0px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.95s;
}

.theme-badge {
  display: inline-block;
  padding: 7px 26px;
  background: linear-gradient(135deg, #EE3A34, #C41E1A);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 20px 20px 20px 3px;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(228,52,47,0.4);
}

.theme-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--or-champagne), var(--or-vif), var(--or));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--or);
  margin-bottom: 2px;
}

.theme-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 2.6vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .theme-card { margin-bottom: 10px; }
  .theme-badge { font-size: 10px; padding: 5px 18px; }
}

/* Stats bar — toujours horizontale */
.stats-bar {
  display: flex;
  flex-direction: row !important;
  gap: 0;
  margin-bottom: 44px;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(90,68,18,0.16), rgba(10,8,5,0.3));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
  width: 100%;
  max-width: 560px;
}

.stat-item {
  flex: 1;
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
  min-width: 0; /* empêche le débordement */
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(212,175,55,0.06); }

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(184,134,11,0.4), rgba(70,52,16,0.22) 65%, rgba(30,22,8,0.12));
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--or);
  margin-bottom: 8px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.stat-icon svg { width: 18px; height: 18px; }

.stat-value {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 5vw, 2rem);
  color: var(--blanc);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(7px, 2vw, 9px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 600;
  white-space: nowrap;
}

/* CTA buttons */
.hero-cta-group {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 5vw, 2rem);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.15s;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(212,175,55,0.35), 0 4px 24px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 48px rgba(212,175,55,0.75), 0 0 90px rgba(255,215,0,0.18), 0 4px 24px rgba(0,0,0,0.4); }
}
@keyframes glowPulseOutline {
  0%, 100% { box-shadow: 0 0 10px rgba(212,175,55,0.15), inset 0 0 8px rgba(212,175,55,0.04); }
  50%       { box-shadow: 0 0 36px rgba(212,175,55,0.5), inset 0 0 16px rgba(212,175,55,0.08); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 40px;
  background: linear-gradient(135deg, var(--or), var(--or-fonce));
  color: var(--noir);
  font-weight: 900;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  animation: glowPulse 2.6s ease-in-out infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(212,175,55,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 40px;
  background: transparent;
  color: var(--or);
  border: 1px solid rgba(212,175,55,0.55);
  font-weight: 900;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  animation: glowPulseOutline 2.6s ease-in-out infinite 1.3s;
}

.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--or);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
  transform: translateY(-2px);
}

/* Bouton Billetterie — sous les 2 CTA principaux */
.btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px dashed rgba(255,255,255,0.28);
  font-weight: 900;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-ticket:hover {
  color: var(--or-vif);
  border-color: var(--or);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
  cursor: pointer;
}

.scroll-indicator-text {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-indicator-mouse {
  width: 22px; height: 34px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator-dot {
  width: 3px; height: 6px;
  background: var(--or);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ════════════════════════════════════════
   SÉPARATEUR DORÉ
════════════════════════════════════════ */
.gold-separator {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.gold-separator-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
}

.gold-separator-icon { color: var(--or); font-size: 14px; }

/* ════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
════════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--or);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--blanc);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-title span { color: var(--or); }

.section-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ════════════════════════════════════════
   EXPÉRIENCES — grille espacée
════════════════════════════════════════ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;           /* espace entre les cartes */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}

.exp-card {
  background: var(--noir-card);
  background-size: cover;
  background-position: center;
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212,175,55,0.06);
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Fonds thématiques distincts par carte, dans la palette or/noir */
.experiences-grid .exp-card:nth-child(1) {
  background:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,0.22) 0%, transparent 55%),
    linear-gradient(155deg, rgba(184,134,11,0.12), transparent 60%),
    var(--noir-card);
}
.experiences-grid .exp-card:nth-child(2) {
  background:
    radial-gradient(circle at 15% 85%, rgba(255,215,0,0.18) 0%, transparent 55%),
    linear-gradient(155deg, rgba(212,175,55,0.1), transparent 60%),
    var(--noir-card);
}
.experiences-grid .exp-card:nth-child(3) {
  background:
    radial-gradient(circle at 85% 85%, rgba(184,134,11,0.2) 0%, transparent 55%),
    linear-gradient(200deg, rgba(192,57,43,0.08), transparent 60%),
    var(--noir-card);
}
.experiences-grid .exp-card:nth-child(4) {
  background:
    radial-gradient(circle at 15% 15%, rgba(212,175,55,0.18) 0%, transparent 55%),
    linear-gradient(220deg, rgba(212,175,55,0.08), transparent 60%),
    var(--noir-card);
}

.exp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--or), var(--or-vif));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.exp-card:hover::before  { transform: scaleX(1); }
.exp-card:hover { background: #1b1b1b; transform: translateY(-4px); box-shadow: var(--shadow-card); }

.exp-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212,175,55,0.18);
  transition: var(--transition);
  color: var(--or);
}

.exp-icon svg { width: 22px; height: 22px; }

.exp-card:hover .exp-icon {
  background: rgba(212,175,55,0.18);
  box-shadow: 0 0 18px rgba(212,175,55,0.2);
}

.exp-number {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(212,175,55,0.05);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.exp-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--or);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.exp-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 22px;
}

.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--or);
  transition: gap 0.3s;
}

.exp-card:hover .exp-link { gap: 14px; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-card { display: block; }

.contact-icon {
  width: 32px; height: 32px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--or);
}

.contact-icon svg { width: 15px; height: 15px; }

/* ════════════════════════════════════════
   CONTACTS BAR — identique aux stats (toujours horizontal)
════════════════════════════════════════ */
.contacts-bar {
  display: flex;
  flex-direction: row !important;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(212,175,55,0.04);
  backdrop-filter: blur(10px);
}

.contact-bar-item {
  flex: 1;
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
  min-width: 0;
}

.contact-bar-item:last-child { border-right: none; }
.contact-bar-item:hover { background: rgba(212,175,55,0.08); }

.contact-bar-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.contact-bar-number {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 3vw, 1.15rem);
  color: var(--blanc);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-bar-label {
  font-family: var(--font-body);
  font-size: clamp(8px, 2vw, 11px);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* ════════════════════════════════════════
   SPONSORS — défilement automatique
════════════════════════════════════════ */
.sponsors-track-wrap {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  /* masque les bords */
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.sponsors-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: sponsorScroll 28s linear infinite;
  padding: 16px 0 8px;
}

.sponsors-track:hover { animation-play-state: paused; }

@keyframes sponsorScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sponsor-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.sponsor-item:hover .sponsor-circle {
  border-color: var(--or);
  background: rgba(212,175,55,0.12);
}

.sponsor-circle span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--or);
  letter-spacing: 1px;
}

.sponsor-name {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--noir-soft);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 60px 60px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.footer-brand-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--or);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.footer-brand-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 230px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.38);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--or); }

.footer-contacts { list-style: none; }
.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
}

.footer-social-block {
  max-width: 1200px;
  margin: 28px auto 0;
}

.footer-social-block .footer-col-title { margin-bottom: 14px; }

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 34px; height: 34px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--or);
  color: var(--noir);
  text-decoration: none;
  transition: var(--transition);
}

.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { background: var(--or-vif); box-shadow: 0 0 14px rgba(212,175,55,0.5); transform: translateY(-2px); }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--noir-card);
  border: 1px solid var(--or);
  color: var(--blanc);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 300px;
  box-shadow: var(--shadow-gold);
}

.toast.show    { transform: translateX(0); }
.toast.success { border-color: #27ae60; }
.toast.error   { border-color: var(--rouge); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 16px 28px; }
  .navbar.scrolled { padding: 12px 28px; }
  section { padding: 80px 32px; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .hero-pipo-logo {
    padding: 60px 0 0;
  margin-bottom: 25px;
}
.nav-logo-img {
    padding: 0;
    width: 160px;
    height: 78px;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    gap: 20px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212,175,55,0.15);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 14px; }
  .nav-vote-btn { display: none; }

  section { padding: 60px 20px; }
  .hero { padding: 90px 16px 70px; }

  /* stats-bar : TOUJOURS horizontale — ne jamais passer en colonne */
  .stats-bar {
    flex-direction: row !important;
    max-width: 100%;
    margin-bottom: 36px;
  }

  /* Pousse les boutons sous la ligne de flottaison : au chargement,
     seuls logo + slogan + stats sont visibles à l'écran. */
  .hero-cta-group {
    margin-top: 70px;
  }

  .experiences-grid { grid-template-columns: 1fr; gap: 0; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 48px 28px 24px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-copy {
    flex: 1 1 100%;
    text-align: left;
  }

  .footer-social-block {
    margin-top: 0;
  }
  .gold-separator { padding: 0 24px; }
  .footer-hide-1 {display: none;}
  .footer-hide-2 {display: none;}
  .footer-hide-3 {display: none;}
  /* .footer-bottom {display: none;} */
}

@media (max-width: 600px) {
  .navbar { padding: 14px 10px; }
  .navbar.scrolled { padding: 10px 20px; }

  .hero-eyebrow { font-size: 8px; letter-spacing: 4px; }
  .hero-subtitle { font-size: 13px; padding: 30px 0 30px ;}

  .hero-cta-group { flex-direction: column; align-items: center; width: 100%; margin-top: 90px; }
  .btn-primary, .btn-outline, .btn-ticket { width: 100%; max-width: 320px; justify-content: center; }

  /* stats-bar reste horizontale même à 320px */
  .stats-bar {
    flex-direction: row !important;
    max-width: 100%;
    border-radius: 18px;
  }

  .stat-item {
    padding: 16px 6px;
    border-right: 1px solid rgba(212,175,55,0.1);
    border-bottom: none !important;
  }

  .stat-item:last-child { border-right: none; }

  .footer-content { grid-template-columns: 1fr;  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .stat-value { font-size: 1.25rem; }
  .stat-label { font-size: 7px; letter-spacing: 1px; }
  .stat-icon { width: 38px; height: 38px; }
  .stat-icon svg { width: 16px; height: 16px; }
}
/* ════════════════════════════════════════
   SÉLECTEUR DE LANGUE
════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.lang-btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--or), var(--or-fonce));
  color: var(--noir);
}

.lang-btn:not(.active):hover {
  color: var(--or);
  background: rgba(212,175,55,0.08);
}

@media (max-width: 900px) {
  .lang-switcher { margin-right: 8px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }
}

/* ════════════════════════════════════════
   SÉLECTEUR DE LANGUE — TOUJOURS VISIBLE
   (jamais caché dans le hamburger)
════════════════════════════════════════ */
.nav-lang-standalone {
  flex-shrink: 0;
  /* Pas de "order" ici : il doit rester avant le hamburger,
     dans son ordre naturel du DOM (entre nav-links et le bouton hamburger). */
}

@media (max-width: 900px) {
  .nav-lang-standalone {
    margin-right: 4px;
  }
  .nav-lang-standalone .lang-btn {
    padding: 5px 9px;
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .nav-lang-standalone { margin-right: 2px; }
  .nav-lang-standalone .lang-btn { padding: 4px 8px; font-size: 9.5px; }
}