/* =============================================
   SUMMER BREAK TOULOUSE 2026 — MAIN STYLESHEET
   BKM Event — Style Afro-Tropical Éditorial
   Inspiré du design Delta Festival
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --color-orange:  #FF8C00;
  --color-pink:    #FF1493;
  --color-purple:  #9B30FF;
  --color-teal:    #00D4CF;
  --color-lime:    #A8FF00;
  --color-yellow:  #FFE500;
  --color-white:   #FFFFFF;
  --color-dark:    #090B14;
  --color-dark2:   #0D101F;
  --color-coral:   #C94A1C;
  --color-coral2:  #B83E14;
  --color-cream:   #F2E8C8;
  --color-card:    rgba(255,255,255,0.05);
  --color-border:  rgba(255,255,255,0.1);
  --gradient-main: linear-gradient(135deg, var(--color-orange), var(--color-pink), var(--color-purple));
  --gradient-alt:  linear-gradient(135deg, var(--color-teal), var(--color-lime));
  --font-display:  'Bebas Neue', 'Righteous', cursive;
  --font-head:     'Righteous', 'Boogaloo', cursive;
  --font-body:     'Poppins', sans-serif;
  --radius:        14px;
  --radius-sm:     8px;
  --shadow-glow:   0 0 40px rgba(255,20,147,0.3), 0 0 80px rgba(155,48,255,0.2);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         72px;
}

/* ---- GRAIN TEXTURE (SVG noise inline) ---- */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
::selection { background: var(--color-pink); color: #fff; }
:focus-visible { outline: 2px solid var(--color-lime); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: var(--gradient-main); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--color-pink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 2px solid rgba(255,20,147,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
@media (hover: none) { .cursor, .cursor-follower { display: none; } body { cursor: auto; } }

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { height: 80px; margin: 0 auto 16px; mix-blend-mode: screen; }
.loader-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar-fill {
  height: 100%;
  background: var(--gradient-main);
  width: 0;
  animation: loaderFill 1.5s ease forwards;
  border-radius: 2px;
}
@keyframes loaderFill { to { width: 100%; } }

/* =============================================
   NAVBAR — Style Delta (hamburger + logo + ticket)
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(9,11,20,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: relative;
}

/* Burger — Always visible, left */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Logo — centered */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1000;
}
.nav-logo img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #fff;
}

/* BILLETTERIE — Delta-style pennant button, right */
.btn-tickets.nav-cta {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.9);
  color: #fff;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-tickets.nav-cta:hover {
  background: #fff;
  color: var(--color-dark);
}

/* Nav links — fullscreen overlay menu */
.nav-links {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(9,11,20,0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 999;
}
.nav-links.open { display: flex; animation: fadeInMenu 0.3s ease; }
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  transition: var(--transition);
  line-height: 1.2;
  padding: 8px 0;
}
.nav-link:hover { color: var(--color-orange); transform: translateX(12px); }

/* =============================================
   HERO — Video background + Aurora CSS fallback
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* mobile-friendly — exclut la barre du navigateur */
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  /* Deep dark base — aurora CSS shows on top */
  background: #08020F;
}

/* Aurora CSS — rayons de lumière animés dans les couleurs de la marque.
   Visible quand aucun fichier vidéo n'est présent. */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 110% 75% at 10% 90%,  rgba(201,74,28,0.55)  0%, transparent 55%),
    radial-gradient(ellipse 80%  65% at 90% 10%,  rgba(255,20,147,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 90%  90% at 50% 50%,  rgba(0,212,207,0.08)  0%, transparent 65%),
    radial-gradient(ellipse 65%  55% at 80% 95%,  rgba(155,48,255,0.25) 0%, transparent 50%),
    linear-gradient(160deg, #140418 0%, #0C1822 45%, #08020F 100%);
  animation: auroraShift 16s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
@keyframes auroraShift {
  0%   { opacity: 1;    transform: scale(1) translateX(0px); }
  35%  { opacity: 0.82; transform: scale(1.03) translateX(-8px); }
  70%  { opacity: 1;    transform: scale(1.06) translateX(4px); }
  100% { opacity: 0.88; transform: scale(1) translateX(-4px); }
}

/* Video background */
.hero-video {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  will-change: transform;
}

/* Gradient overlay — lisibilité du texte + grain cinéma */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(8,2,15,0.65)  0%,
      rgba(8,2,15,0.1)   30%,
      rgba(8,2,15,0.25)  60%,
      rgba(8,2,15,0.90)  92%,
      #08020F            100%
    ),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,20,147,0.07) 0%, transparent 100%);
  pointer-events: none;
}
/* Grain cinéma sur l'overlay */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* ---- PARALLAX LAYERS ---- */
.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* LAYER PARTICLES */
.particle-canvas {
  position: absolute; inset: 0;
  z-index: 3;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

/* LAYER CROWD — illustration bas-du-flyer */
.layer-crowd {
  top: auto;
  bottom: -100px;
  /* Dégradé transparent en haut pour un fondu avec le fond vidéo */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 18%, black 40%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 18%, black 40%);
}
.crowd-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  will-change: transform;
}

/* Hero content layer */
.layer-front {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px 200px; /* 200px de marge basse pour laisser visible la foule */
  width: 100%;
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(9,11,20,0.6);
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.badge-dot { width: 8px; height: 8px; background: var(--color-lime); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }

.hero-logo-wrap { margin-bottom: 24px; }
.hero-logo {
  max-width: min(600px, 82vw);
  margin-top: 150px;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 30px rgba(255,20,147,0.5))
          drop-shadow(0 0 60px rgba(255,140,0,0.3));
  animation: float 5s ease-in-out infinite;
}

.hero-dates {
  display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.date-item {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(255,140,0,0.4));
  letter-spacing: 0.02em;
}
.date-dot { font-size: 2rem; color: var(--color-lime); margin: 0 4px; }
.date-label {
  display: block; width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.35em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  margin-top: 4px;
}

.hero-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  background: rgba(9,11,20,0.5);
  padding: 8px 20px; border-radius: 4px;
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* Countdown */
.countdown {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.countdown-item {
  display: flex; flex-direction: column; align-items: center;
  min-width: 76px;
  background: rgba(9,11,20,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 2.4rem; line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.02em;
}
.countdown-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-top: 4px; }
.countdown-sep { font-family: var(--font-display); font-size: 2rem; color: var(--color-pink); line-height: 1; margin-bottom: 20px; }

/* Hero CTAs */
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

/* Primary CTA — gradient pill */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-main);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 0.08em;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 30px rgba(255,20,147,0.4);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,20,147,0.55); }
.btn-glow { animation: glow 3s ease-in-out infinite alternate; }
@keyframes glow {
  from { box-shadow: 0 6px 24px rgba(255,20,147,0.4); }
  to   { box-shadow: 0 6px 40px rgba(255,140,0,0.6), 0 0 60px rgba(155,48,255,0.3); }
}

/* Secondary CTA — outline box */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(9,11,20,0.5);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 0.08em;
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(10px);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-secondary:hover { border-color: var(--color-orange); color: var(--color-orange); transform: translateY(-3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff; border-radius: 4px;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em;
  font-weight: 600; transition: var(--transition); cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-outline:hover { border-color: var(--color-teal); color: var(--color-teal); }

.btn-outline-sm {
  display: inline-block; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px; font-size: 0.8rem;
  font-family: var(--font-display); letter-spacing: 0.08em;
  transition: var(--transition); cursor: pointer;
}
.btn-outline-sm:hover { border-color: var(--color-lime); color: var(--color-lime); }
.btn-large { padding: 18px 44px; font-size: 1.15rem; }

/* Hero stats bar */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(9,11,20,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 16px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 500px; margin: 0 auto;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 0.05em;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); z-index: 6;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.1); overflow: hidden; }
.scroll-line-fill { width: 100%; height: 50%; background: var(--gradient-main); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* =============================================
   SECTIONS — Structure & grain
   ============================================= */
.section { padding: 100px 0; position: relative; overflow: hidden; }

/* Grain overlay utility */
.section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
.section > * { position: relative; z-index: 1; }

/* Section background variants */
.dark-section  { background: var(--color-dark); }
.dark2-section { background: var(--color-dark2); }
.coral-section {
  background: var(--color-coral);
  background-image: linear-gradient(160deg, #D4521E 0%, #B03A10 100%);
  color: var(--color-cream);
}
.teal-section {
  background: #0B1E20;
  background-image: linear-gradient(160deg, #0D2426 0%, #091618 100%);
}

/* Editorial section headers */
.section-header { text-align: center; margin-bottom: 60px; }
.editorial-h {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
/* Colored highlight box spans */
.hl {
  display: inline;
  padding: 2px 16px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.15;
}
.hl-orange { background: var(--color-orange); color: var(--color-dark); }
.hl-pink   { background: var(--color-pink);   color: #fff; }
.hl-teal   { background: var(--color-teal);   color: var(--color-dark); }
.hl-lime   { background: var(--color-lime);   color: var(--color-dark); }
.hl-purple { background: var(--color-purple); color: #fff; }
.hl-cream  { background: var(--color-cream);  color: var(--color-dark); }
.hl-white  { background: #fff;                color: var(--color-dark); }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 12px;
  opacity: 0.8;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1; margin-bottom: 12px;
}
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  max-width: 500px;
  margin: 0 auto;
}
.coral-section .section-sub { color: rgba(242,232,200,0.6); }
.teal-section .section-sub  { color: rgba(255,255,255,0.5); }

/* =============================================
   HEADLINERS
   ============================================= */
.headliners-section { background: var(--color-dark); }
.headliners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.08);
}
.headliner-card {
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  transform-style: preserve-3d;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.headliner-card:last-child { border-right: none; }
.headliner-card:hover { background: rgba(255,255,255,0.07); }
.headliner-card.featured { background: rgba(255,140,0,0.06); }
.headliner-img-wrap { position: relative; padding-top: 130%; overflow: hidden; }
.headliner-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,140,0,0.12), rgba(155,48,255,0.18));
  display: flex; align-items: center; justify-content: center;
}
.placeholder-icon { font-size: 6rem; opacity: 0.35; }
.headliner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,11,20,0.97) 0%, transparent 55%);
}
.headliner-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.headliner-card:hover .headliner-img-wrap img { transform: scale(1.06); }
.headliner-info { padding: 24px 28px 28px; }
.headliner-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-main);
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.headliner-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.headliner-genre { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; letter-spacing: 0.05em; }
.headliner-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 12px; }
.headliner-day { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.08em; color: var(--color-teal); }
.headliner-time { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.05em; color: var(--color-lime); }

/* =============================================
   PROGRAMME — 3 Affiches Jours (retro poster)
   ============================================= */
.programme-section {
  background: var(--color-coral);
  background-image: linear-gradient(160deg, #C94A1C 0%, #A83810 100%);
}

/* Grid 3 colonnes = 3 affiches */
.day-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid rgba(242,232,200,0.2);
}

.day-poster {
  padding: 36px 28px 28px;
  border-right: 2px solid rgba(242,232,200,0.2);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.day-poster:last-child { border-right: none; }
.day-poster--featured {
  background: rgba(255,255,255,0.05);
}

/* Poster header: gros numéro de jour */
.poster-day-header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(242,232,200,0.25);
}
.poster-day-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--color-cream);
  letter-spacing: -0.02em;
}
.poster-day-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 6px;
}
.poster-day-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--color-lime);
  line-height: 1;
}
.poster-day-month {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(242,232,200,0.6);
}

/* Day panel — always visible (no tabs) */
.day-panel { display: block !important; animation: none !important; flex: 1; }

/* Schedule list — poster style */
.schedule-list { display: flex; flex-direction: column; gap: 0; }
.schedule-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242,232,200,0.12);
  cursor: pointer;
  transition: var(--transition);
}
.schedule-item:first-child { border-top: none; }
.schedule-item:hover { padding-left: 6px; }
.schedule-item:hover .schedule-artist-name { color: var(--color-lime); }

.schedule-time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(242,232,200,0.5);
  min-width: 44px;
  flex-shrink: 0;
}
.schedule-artist-info { flex: 1; }
.schedule-artist-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  line-height: 1.2;
  transition: var(--transition);
}
/* Headliner = bigger text */
.schedule-item.is-headliner .schedule-artist-name {
  font-size: 1.5rem;
  color: #fff;
}
.schedule-genre { font-size: 0.72rem; color: rgba(242,232,200,0.45); letter-spacing: 0.05em; }
.schedule-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  flex-shrink: 0;
}
.schedule-badge.HEADLINER { color: var(--color-lime); }
.schedule-badge.LIVE  { color: var(--color-teal); }
.schedule-badge.DJ,
.schedule-badge["DJ SET"] { color: rgba(242,232,200,0.5); }
.schedule-stage { font-size: 0.68rem; color: rgba(242,232,200,0.35); }

/* Poster CTA button */
.poster-ticket-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 12px 20px;
  border: 2px solid rgba(242,232,200,0.5);
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  transition: var(--transition);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.poster-ticket-btn:hover {
  background: var(--color-cream);
  color: var(--color-coral);
  border-color: var(--color-cream);
}

/* Hide old tabs */
.tabs-wrapper { display: none; }

/* =============================================
   LINEUP — Artists grid
   ============================================= */
.lineup-section { background: var(--color-dark); }
.filter-bar {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.1em;
  cursor: pointer; transition: var(--transition);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.filter-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.filter-btn.active { background: var(--gradient-main); border-color: transparent; color: #fff; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.artist-card {
  background: var(--color-dark);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition); cursor: pointer;
}
.artist-card:hover { background: rgba(255,255,255,0.04); }
.artist-card.hidden { display: none; }
.artist-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(255,140,0,0.2), rgba(155,48,255,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-name {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.artist-genre { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.artist-meta { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.artist-day-badge {
  font-family: var(--font-display);
  font-size: 0.65rem; letter-spacing: 0.08em;
  padding: 3px 10px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.day-1 { background: rgba(255,140,0,0.2); color: var(--color-orange); }
.day-2 { background: rgba(255,20,147,0.2); color: var(--color-pink); }
.day-3 { background: rgba(155,48,255,0.2); color: var(--color-purple); }
.artist-time {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.05em;
  color: var(--color-lime);
}

/* =============================================
   AFFICHE SECTION
   ============================================= */
.affiche-section { background: var(--color-dark2); }
.affiche-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.affiche-wrap {
  position: relative; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
}
.affiche-img { width: 100%; height: auto; display: block; }
.affiche-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,140,0,0.08), rgba(155,48,255,0.08));
  pointer-events: none;
}
.affiche-placeholder {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(155,48,255,0.15));
  display: flex; align-items: center; justify-content: center;
}
.affiche-text .section-tag { margin-bottom: 16px; }
.affiche-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
}
.affiche-text p { color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.7; }
.affiche-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-section { background: var(--color-dark2); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer; aspect-ratio: 1/1;
  transition: var(--transition);
}
.gallery-item:hover { opacity: 0.85; }
.gallery-item--large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item--tall  { grid-row: span 2; aspect-ratio: auto; }
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, rgba(255,140,0,0.08), rgba(155,48,255,0.14));
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
}
.gallery-placeholder-icon { font-size: 2.5rem; opacity: 0.4; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,11,20,0.92), transparent 50%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-cta { text-align: center; }

/* =============================================
   INFOS PRATIQUES
   ============================================= */
.infos-section { background: var(--color-dark); }
.infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 48px;
}
.info-card {
  background: var(--color-dark);
  padding: 32px 24px;
  transition: var(--transition);
}
.info-card:hover { background: rgba(255,255,255,0.03); }
.info-icon {
  width: 52px; height: 52px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.info-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.map-wrapper {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-iframe { width: 100%; height: 350px; border: none; display: block; filter: brightness(0.8) contrast(1.1); }
.map-overlay-label {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(9,11,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* =============================================
   BILLETTERIE
   ============================================= */
.billetterie-section {
  background: var(--color-dark2);
  position: relative; overflow: hidden;
}
.billet-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,20,147,0.12), transparent 60%);
  pointer-events: none;
}
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.ticket-card {
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ticket-card:last-child { border-right: none; }
.ticket-card:hover { background: rgba(255,255,255,0.03); }
.ticket-featured { background: rgba(255,140,0,0.05); }
.ticket-badge {
  display: inline-block; padding: 4px 14px;
  background: rgba(255,255,255,0.08);
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.15em;
  margin-bottom: 10px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.badge-hot { background: var(--gradient-main); }
.ticket-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.05em;
}
.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem; letter-spacing: 0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
.ticket-features { text-align: left; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ticket-features li {
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
}
.btn-ticket {
  display: block; width: 100%; padding: 14px;
  border: 2px solid rgba(255,255,255,0.2);
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.12em;
  cursor: pointer; transition: var(--transition); color: #fff;
  text-align: center;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-ticket:hover { border-color: var(--color-orange); color: var(--color-orange); }
.btn-ticket-featured { background: var(--gradient-main); border-color: transparent; }
.btn-ticket-featured:hover { opacity: 0.88; color: #fff; border-color: transparent; }

/* Bizouk iframe container */
.bizouk-iframe-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--color-dark);
  position: relative; overflow: hidden;
}
.newsletter-bg { position: absolute; inset: 0; pointer-events: none; }
.nl-circle {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}
.nl-circle-1 { width: 400px; height: 400px; background: rgba(255,20,147,0.12); top: -100px; left: -100px; }
.nl-circle-2 { width: 500px; height: 500px; background: rgba(155,48,255,0.08); bottom: -150px; right: -100px; }

.newsletter-wrap {
  position: relative; z-index: 1;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 64px 48px;
  max-width: 720px; margin: 0 auto;
}
.nl-icon { font-size: 3rem; margin-bottom: 16px; }
.nl-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nl-sub { color: rgba(255,255,255,0.5); margin-bottom: 36px; letter-spacing: 0.03em; }
.nl-inputs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.nl-input {
  flex: 1; min-width: 160px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
  border-radius: 2px;
}
.nl-input::placeholder { color: rgba(255,255,255,0.25); }
.nl-input:focus { outline: none; border-color: rgba(255,20,147,0.5); background: rgba(255,20,147,0.04); }
.btn-nl {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255,20,147,0.3);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-nl:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,20,147,0.4); }
.nl-legal { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-top: 10px; letter-spacing: 0.02em; }
.nl-success { padding: 12px; background: rgba(168,255,0,0.08); border: 1px solid rgba(168,255,0,0.25); color: var(--color-lime); font-family: var(--font-display); letter-spacing: 0.06em; margin-top: 16px; }
.nl-error { padding: 12px; background: rgba(255,20,147,0.08); border: 1px solid rgba(255,20,147,0.25); color: var(--color-pink); margin-top: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #060810; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 64px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer-logo { height: 48px; margin-bottom: 14px; mix-blend-mode: screen; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.08em;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px; display: block;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 8px; line-height: 1.6; }
.footer-organizer { font-size: 0.8rem !important; color: rgba(255,255,255,0.3) !important; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.1em;
  margin-bottom: 18px; color: rgba(255,255,255,0.7);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-col ul a:hover { color: var(--color-orange); }
.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover { background: var(--gradient-main); border-color: transparent; color: #fff; transform: translateY(-2px); }
.newsletter-footer p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 8px; letter-spacing: 0.05em; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.55); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-main);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,20,147,0.4);
  z-index: 100;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(9,11,20,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  z-index: 9000;
  backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hide { transform: translateY(100%); }
.cookie-banner p { font-size: 0.8rem; color: rgba(255,255,255,0.5); flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: 8px; }
.btn-cookie-accept {
  padding: 8px 20px; background: var(--gradient-main);
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em;
  color: #fff; cursor: pointer; transition: var(--transition);
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}
.btn-cookie-accept:hover { opacity: 0.9; }
.btn-cookie-refuse {
  padding: 8px 20px; border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; color: rgba(255,255,255,0.45); cursor: pointer; transition: var(--transition);
}
.btn-cookie-refuse:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }

/* ---- TILT CARDS ---- */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ---- AOS ---- */
[data-aos] { transition-duration: 600ms !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .headliners-grid { grid-template-columns: repeat(3, 1fr); }
  .infos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .affiche-container { gap: 40px; }
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .day-posters { grid-template-columns: 1fr; }
  .day-poster { border-right: none; border-bottom: 2px solid rgba(242,232,200,0.15); }
  .day-poster:last-child { border-bottom: none; }
  .poster-day-num { font-size: 5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Mobile nav: burger left always, logo center, ticket button right */
  .nav-container { padding: 0 18px; }
  .btn-tickets.nav-cta { padding: 8px 14px; font-size: 0.85rem; }

  .section { padding: 70px 0; }
  .editorial-h { font-size: clamp(3rem, 10vw, 6rem); }

  .headliners-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .headliner-card.featured { }

  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .affiche-container { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .infos-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .ticket-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .newsletter-wrap { padding: 40px 24px; }
  .nl-inputs { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 8px; padding: 20px; clip-path: none; max-width: 280px; }
  .stat-sep { width: 40px; height: 1px; }
  .countdown { gap: 4px; }
  .countdown-item { min-width: 62px; padding: 10px 12px; }
  .countdown-num { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .affiche-ctas { flex-direction: column; }
  .btn-tickets.nav-cta { display: none; }
}

/* ---- ANIMATIONS ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-15px) rotate(1deg); }
  66%       { transform: translateY(-8px) rotate(-0.5deg); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
