/* =====================================================
   FÊTE DU BOUT DU HAUT 2026
   Structure : blocs jaunes arrondis sur fond vieux papier
   Chaque section = une carte indépendante
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Fredoka:wght@400;500;600;700&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 100px; }
body {
  font-family: 'Fredoka', sans-serif;
  background-color: #d4b483;
  color: #1a1a1a;
  overflow-x: hidden;
}
/* Fond parallaxe — se déplace plus lentement que le contenu */
body::before {
  content: '';
  position: fixed;
  inset: -60px;
  background: url('assets/elements/fondaffichevieuxpapier.png') center top / cover no-repeat;
  z-index: -1;
  will-change: transform;
  transform: translateY(var(--parallax-y, 0px));
}

/* ─── PALETTE — couleurs extraites directement des SVG de l'affiche ─── */
:root {
  /* Couleurs exactes des SVG fournis par l'utilisateur */
  --jaune:        #f8c80f;   /* carte jeune.svg  → fill #f8c80f          */
  --bleu:         #72bbc9;   /* bandeau bleu.svg → fill #72bbc9           */
  --border-jaune: 6px solid #3c392a;  /* carte jeune.svg  → stroke #3c392a 6px  */
  --border-bleu:  4px solid #000000;  /* bandeau bleu.svg → stroke #000000 4px  */
  --radius-jaune: 16px;      /* coins arrondis carte jaune (calculé SVG)  */
  --radius-bleu:  18px;      /* coins arrondis bandeau bleu (calculé SVG) */
  --ombre-jaune:  5px 5px 0px #3c392a;  /* ombre portée couleur bordure jaune */
  --ombre-bleu:   5px 5px 0px #000000;  /* ombre portée couleur bordure bleu  */
  --logo-roll: 0deg;
  --logo-slide: 0px;

  /* Couleurs complémentaires */
  --rouge:        #d94f4f;
  --rouge-f:      #b83232;
  --vert:         #4a9e5c;
  --noir:         #1a1a1a;
  --brun:         #3c392a;   /* couleur bordure des blocs jaunes           */
  --blanc:        #ffffff;
}


/* ══════════════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0;
  background: var(--jaune);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader .loader-logo {
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 6px solid var(--brun);
  box-shadow: 8px 8px 0px var(--brun);
  animation: pulse 1.2s infinite;
}
#loader p {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem; color: var(--rouge);
  margin-top: 1.5rem; letter-spacing: 3px;
}
@keyframes pulse { 0%,100%{ transform:scale(1) } 50%{ transform:scale(1.1) } }


/* ══════════════════════════════════════════════════
   NAVIGATION — bandeau bleu en haut
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .6rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bleu);
  border-bottom: var(--border-bleu);
  box-shadow: 0 4px 0px var(--noir);
  transition: all .3s;
}
.nav-logo img {
  height: 75px;
  border-radius: 50%;
  border: 4px solid var(--noir);
  background: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  /* Roulement + Progression horizontale */
  transform: translateX(var(--logo-slide)) rotate(var(--logo-roll));
  transition: transform 0.1s linear, box-shadow 0.3s;
  /* Positionnement équilibré */
  margin: -10px 0 -15px 0;
  position: relative;
  z-index: 10;
}
.nav-logo img:hover { 
  transform: translateX(var(--logo-slide)) scale(1.1) rotate(calc(var(--logo-roll) + 10deg)); 
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 1.2rem; list-style: none; }
.nav-links a {
  color: var(--blanc);
  text-decoration: none;
  font-family: 'Bangers', cursive;
  font-size: 1.1rem; letter-spacing: 1px;
  transition: color .2s;
  text-shadow: 1px 1px 0 rgba(0,0,0,.3);
}
.nav-links a:hover { color: var(--jaune); }

.nav-cta {
  background: linear-gradient(135deg, var(--rouge) 0%, #e8634b 100%);
  color: var(--blanc);
  padding: .55rem 1.3rem;
  border-radius: 10px;
  font-family: 'Bangers', cursive; font-size: 1.1rem;
  letter-spacing: 1px; text-decoration: none;
  border: 3px solid var(--noir);
  box-shadow: 3px 3px 0 var(--noir), 0 0 12px rgba(217,79,79,.3);
  transition: transform .15s, box-shadow .15s, background .2s;
  position: relative; overflow: hidden;
  animation: navCtaPulse 2.5s ease-in-out infinite;
}
.nav-cta::before {
  content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  animation: navCtaShine 3s ease-in-out infinite;
}
.nav-cta:hover {
  transform: translate(-2px,-2px) scale(1.05);
  box-shadow: 5px 5px 0 var(--noir), 0 0 20px rgba(217,79,79,.5);
  background: linear-gradient(135deg, #e8634b 0%, var(--rouge) 100%);
}
@keyframes navCtaPulse {
  0%, 100% { box-shadow: 3px 3px 0 var(--noir), 0 0 8px rgba(217,79,79,.2); }
  50% { box-shadow: 3px 3px 0 var(--noir), 0 0 18px rgba(217,79,79,.5); }
}
@keyframes navCtaShine {
  0%, 100% { left: -60%; }
  50% { left: 120%; }
}

/* Bouton Radio dans le menu mobile */
.mobile-radio-btn {
  background: var(--jaune);
  color: var(--noir);
  border: 3px solid var(--noir);
  border-radius: 12px;
  padding: 0.6rem 1.8rem;
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--noir);
  transition: transform .2s, box-shadow .2s;
}
.mobile-radio-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--noir);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 28px; height: 3px; background: var(--blanc); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(26,26,26,.97);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--blanc); text-decoration: none;
  font-family: 'Bangers', cursive; font-size: 2rem; letter-spacing: 2px;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--jaune); }


/* ══════════════════════════════════════════════════
   CONTENU PRINCIPAL — colonne de blocs
   ══════════════════════════════════════════════════ */
.page-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 20px 60px;  /* Augmenté pour ne pas couper les fleurs du haut avec la navbar */
  display: flex;
  flex-direction: column;
  gap: 28px;                 /* espace entre blocs = papier visible */
}


/* ══════════════════════════════════════════════════
   BLOC — base commune à tous les blocs
   Couleurs et formes fidèles aux SVG de l'affiche
   ══════════════════════════════════════════════════ */
.bloc {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Carte jaune — fidèle à carte jeune.svg */
.bloc-jaune {
  background: var(--jaune);              /* #f8c80f */
  border: var(--border-jaune);           /* 6px solid #3c392a */
  border-radius: var(--radius-jaune);    /* 16px */
  box-shadow: var(--ombre-jaune);        /* décalage brun foncé */
}

/* Bandeau bleu — fidèle à bandeau bleu.svg */
.bloc-bleu {
  background: var(--bleu);              /* #72bbc9 */
  border: var(--border-bleu);           /* 4px solid #000000 */
  border-radius: var(--radius-bleu);    /* 18px */
  box-shadow: var(--ombre-bleu);        /* décalage noir */
}


/* ══════════════════════════════════════════════════
   BLOC 1 — EN-TÊTE GRÉMÉVILLERS (bleu)
   Une seule image : bandeau principal.png
   ══════════════════════════════════════════════════ */
.bloc-bleu {
  padding: 0;
  overflow: visible;         /* Pour ne pas couper l'image décalée */
  background: transparent;
  border: none;
  box-shadow: none;
}

.bandeau-principal-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(15px); /* Petit décalage manuel pour compenser le vide de l'image */
  filter: drop-shadow(4px 8px 0 rgba(0,0,0,0.3));
}

.bandeau-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.bandeau-fleur {
  position: absolute;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transform-origin: bottom center; /* Effet de pousse depuis la base */
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 2; /* Par défaut devant le bandeau */
}

/* Placements sur les bords / coins pour éviter le texte */
.fleur-b1 { top: -15%; left: -4%; max-width: 130px; }
.fleur-b2 { top: -20%; right: 6%; max-width: 160px; }
.fleur-b3 { bottom: -5%; left: -6%; max-width: 150px; }
.fleur-b4 { bottom: -10%; right: -4%; max-width: 140px; }
.fleur-b5 { top: -12%; left: 28%; max-width: 120px; z-index: -1; } /* Derrière pour la profondeur */
.fleur-b6 { bottom: -15%; right: 28%; max-width: 135px; z-index: -1; }

.bandeau-container.show-flowers .fleur-b1 { opacity: 1; transform: scale(1) rotate(-15deg); transition-delay: 0s; }
.bandeau-container.show-flowers .fleur-b2 { opacity: 1; transform: scale(1) rotate(25deg); transition-delay: 0.1s; }
.bandeau-container.show-flowers .fleur-b3 { opacity: 1; transform: scale(1) rotate(-20deg); transition-delay: 0.15s; }
.bandeau-container.show-flowers .fleur-b4 { opacity: 1; transform: scale(1) rotate(10deg); transition-delay: 0.2s; }
.bandeau-container.show-flowers .fleur-b5 { opacity: 1; transform: scale(1) rotate(5deg); transition-delay: 0.05s; }
.bandeau-container.show-flowers .fleur-b6 { opacity: 1; transform: scale(1) rotate(-10deg); transition-delay: 0.25s; }


/* ══════════════════════════════════════════════════
   BLOC 2 — DÉCOMPTE  (style « stickers festival »)
   ══════════════════════════════════════════════════ */
/* Couleurs du bandeau multicolore */
:root {
  --cd-bleu:  #5BB8D4;
  --cd-rouge: #E53935;
  --cd-jaune: #F9A825;
  --cd-vert:  #6FAF2A;
}

.bloc-countdown {
  text-align: center;
  padding: 0 0 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Ligne flex : [bandeau gauche] [badges+labels] [bandeau droit] */
.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

/* Bandeaux latéraux : prennent tout l'espace disponible */
.bandeau-lateral {
  flex: 1 1 0;
  min-width: 0;
  max-height: 110px;    /* hauteur des badges */
  width: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Centre : badges et labels empilés */
.countdown-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Rangée de badges */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

/* Séparateurs masqués */
.countdown-sep { display: none; }

/* Labels alignés sous les badges */
.countdown-labels-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.countdown-labels-row span {
  width: 100px;
  text-align: center;
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--noir);
}


/* ── Chaque badge ── */
.countdown-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: transform 0.3s ease;
}
.countdown-item:hover {
  transform: scale(1.08) rotate(0deg) !important;
}

/* Légère rotation individuelle pour l'effet « sticker posé à la main » */
.countdown-item:nth-child(1) { transform: rotate(-2deg); }
.countdown-item:nth-child(2) { transform: rotate( 1.5deg); }
.countdown-item:nth-child(3) { transform: rotate(-1deg); }
.countdown-item:nth-child(4) { transform: rotate( 2.5deg); }

/* ── Chiffre dans un badge arrondi ── */
.countdown-value {
  font-family: 'Bangers', cursive;
  font-size: 3.6rem;
  line-height: 1;
  color: #fff;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 4px solid var(--noir);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  box-shadow:
    5px 6px 0 var(--noir),
    6px 8px 12px rgba(0,0,0,0.18);
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.countdown-value.pop {
  transform: scale(1.12);
}

/* Couleur de fond de chaque badge */
#cd-days    { background: var(--cd-bleu); }
#cd-hours   { background: var(--cd-rouge); }
#cd-minutes { background: var(--cd-jaune); }
#cd-seconds { background: var(--cd-vert); }

/* ── Labels sous les badges ── */
.countdown-label {
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--noir);
  margin-top: 0.6rem;
}


/* ══════════════════════════════════════════════════
   TITRE LIBRE — flotte sur le fond vieux papier
   ══════════════════════════════════════════════════ */
.titre-libre {
  text-align: center;
  padding: 0 1rem 1.5rem;
  margin-top: -1rem; /* Redescendu pour éviter le chevauchement avec le panneau du haut */
  position: relative;
  z-index: 10;
  /* Pas de background, pas de bordure : on voit le papier */
}
.titre-fdbdh {
  max-width: min(100vw, 1100px);
  width: 100%; height: auto;
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,0.3));
  position: relative;
  z-index: 2;
  animation: breathe 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.titre-libre:hover .titre-fdbdh {
  transform: scale(1.03);
}

.titre-etoile {
  position: absolute;
  max-width: 120px;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1; /* Derrière le titre */
  pointer-events: none;
}
.etoile-1 { top: 10%; left: 15%; max-width: 70px; }
.etoile-2 { top: -10%; right: 25%; max-width: 110px; }
.etoile-3 { bottom: 5%; right: 10%; max-width: 130px; }
.etoile-4 { bottom: 15%; left: 10%; max-width: 60px; }

.titre-libre:hover .etoile-1 { opacity: 1; transform: scale(1) rotate(-15deg) translate(-50px, -40px); transition-delay: 0.05s; }
.titre-libre:hover .etoile-2 { opacity: 1; transform: scale(1.2) rotate(45deg) translate(40px, -60px); transition-delay: 0.1s; }
.titre-libre:hover .etoile-3 { opacity: 1; transform: scale(1.1) rotate(-25deg) translate(60px, 40px); transition-delay: 0.15s; }
.titre-libre:hover .etoile-4 { opacity: 1; transform: scale(1) rotate(15deg) translate(-60px, 50px); transition-delay: 0.2s; }
.titre-dates {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--bleu);
  -webkit-text-stroke: 2px var(--noir);
  letter-spacing: 4px;
  margin-top: .5rem;
}
.titre-dates span { color: var(--rouge); }


/* ══════════════════════════════════════════════════
   TITRES DE SECTION communs
   ══════════════════════════════════════════════════ */
.bloc-titre-section {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--noir);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.bloc-sous-titre {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem; color: var(--noir);
  text-align: center;
  opacity: .8; margin-bottom: 2rem; font-weight: 500;
}


/* ══════════════════════════════════════════════════
   ANIMATIONS STICKERS — "logo qui bouge"
   ══════════════════════════════════════════════════ */
@keyframes breathe {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-15px) rotate(1deg); }
}

@keyframes punch {
  0%, 100% { transform: scale(1) rotate(-1deg); }
  50%       { transform: scale(1.05) rotate(1deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float-alt {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%       { transform: translateY(-10px) rotate(-1.5deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: .7; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1;  transform: scale(1.15) rotate(10deg); }
}
@keyframes pulse { 0%,100%{ transform:scale(1) } 50%{ transform:scale(1.08) } }

.bouge     { animation: float     3s ease-in-out infinite; }
.bouge-alt { animation: float-alt 3.5s ease-in-out infinite; }

/* Au hover : s'arrête et grossit */
.bouge:hover,
.bouge-alt:hover {
  animation-play-state: paused;
  transform: scale(1.08) rotate(0deg) !important;
  filter: drop-shadow(4px 6px 0 rgba(0,0,0,.4));
  transition: transform .2s, filter .2s;
  cursor: pointer;
}


/* ══════════════════════════════════════════════════
   BLOC ACTUS — ACTUALITÉS
   ══════════════════════════════════════════════════ */

/* ===== ACTUS SLIDER ===== */
.actus-slider {
  position: relative; width: 100%; margin: 0 auto;
  border: 4px solid var(--brun); border-radius: 22px;
  overflow: hidden; box-shadow: 6px 6px 0 var(--brun);
  background: #111;
}

/* Stage */
.actus-slider-stage { position: relative; }

/* Chaque slide */
.actus-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 700px;
  opacity: 0; pointer-events: none;
  transition: opacity .8s ease;
  overflow: hidden;
}
.actus-slide.active {
  position: relative; opacity: 1; pointer-events: auto;
}

/* Image — plein écran derrière tout */
.actus-slide > img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 8s ease;
}
.actus-slide.active > img {
  transform: scale(1.08);
}
/* Placeholder si pas d'image */
.actus-slide-image-placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

/* Dégradé cinématique — du haut et du bas */
.actus-slide::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
  z-index: 1; pointer-events: none;
}
.actus-slide::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, transparent 100%);
  z-index: 1; pointer-events: none;
}

/* Badge catégorie */
.actus-slide .actu-categorie {
  position: absolute; top: 20px; left: 24px; z-index: 3;
}
.actus-slide .actu-badge-new {
  position: absolute; top: 20px; right: -8px; z-index: 3;
}

/* Compteur slide */
.actus-slide-counter {
  position: absolute; top: 22px; right: 70px; z-index: 3;
  font-family: 'Bangers', cursive; font-size: .9rem;
  color: rgba(255,255,255,.8); background: rgba(0,0,0,.4);
  padding: 4px 14px; border-radius: 20px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* Overlay — tout le contenu texte en bas */
.actus-slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 40px 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.actus-slide-overlay .actu-date {
  font-size: .8rem; font-weight: 700; color: var(--jaune);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.actus-slide-overlay .actu-titre {
  font-family: 'Bangers', cursive; font-size: 2.8rem; color: var(--blanc);
  line-height: 1.05; margin: 0 0 12px;
  text-shadow: 3px 3px 0 rgba(0,0,0,.5), 0 0 30px rgba(0,0,0,.3);
  max-width: 700px;
}
.actus-slide-overlay .actu-extrait {
  font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.6;
  margin: 0 0 16px; max-width: 550px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.actus-slide-overlay .actu-media-badges { margin-bottom: 14px; }
.actus-slide-overlay .actu-media-badge {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3);
  color: #fff; backdrop-filter: blur(4px);
}
.actus-slide-overlay .actu-lire-suite {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: 'Bangers', cursive; font-size: 1.1rem;
  color: var(--brun); background: var(--jaune);
  padding: 12px 28px; border-radius: 12px;
  border: 3px solid var(--brun); box-shadow: 4px 4px 0 var(--brun);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.actus-slide-overlay .actu-lire-suite:hover {
  transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--brun);
  background: var(--blanc);
}
.actus-slide-overlay .actu-lire-suite::after { content: ' →'; }

/* Nav buttons */
.actus-sl-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 3px solid rgba(255,255,255,.4);
  font-size: 1.5rem; cursor: pointer; color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,.3); z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; backdrop-filter: blur(6px);
}
.actus-sl-btn:hover {
  background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.actus-sl-prev { left: 16px; }
.actus-sl-next { right: 16px; }

/* Bottom bar — dots + progress intégrés */
.actus-sl-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
}
.actus-sl-dots {
  display: flex; gap: 10px; padding: 8px 0 10px;
}
.actus-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: 2px solid rgba(255,255,255,.5);
  cursor: pointer; transition: all .25s;
}
.actus-dot.active {
  background: var(--jaune); transform: scale(1.3);
  box-shadow: 0 0 8px rgba(248,200,15,.5); border-color: var(--jaune);
}
.actus-dot:hover { background: rgba(255,255,255,.6); }

/* Progress bar */
.actus-sl-progress {
  width: 100%; height: 3px; background: rgba(255,255,255,.1);
}
.actus-sl-progress-bar {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--jaune), var(--rouge));
  transition: width .1s linear;
}

/* Carte actu */
.actu-card {
  background: var(--blanc); border: 4px solid var(--brun);
  border-radius: 18px; overflow: hidden;
  box-shadow: 5px 5px 0 var(--brun); transition: transform .2s, box-shadow .2s;
  position: relative; display: flex; flex-direction: column;
}
.actu-card:hover { transform: translate(-3px,-3px) rotate(-.3deg); box-shadow: 8px 8px 0 var(--brun); }

/* Badge nouveau */
.actu-badge-new {
  position: absolute; top: 14px; right: -8px; z-index: 2;
  background: var(--rouge); color: var(--blanc);
  font-family: 'Bangers', cursive; font-size: .85rem; letter-spacing: 1px;
  padding: 4px 18px 4px 14px; border-radius: 6px 0 0 6px;
  border: 2px solid var(--brun); box-shadow: 2px 2px 0 var(--brun);
}
.actu-badge-new::after {
  content: ''; position: absolute; right: -2px; bottom: -8px;
  width: 0; height: 0; border-left: 8px solid #a03030;
  border-bottom: 8px solid transparent;
}

/* Badge catégorie */
.actu-categorie {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 3px 12px; border-radius: 20px; font-size: .72rem; font-weight: 700;
  border: 2px solid var(--brun); box-shadow: 1px 1px 0 var(--brun);
}
.actu-categorie.cat-annonce { background: var(--jaune); color: var(--brun); }
.actu-categorie.cat-artiste { background: var(--rouge); color: var(--blanc); }
.actu-categorie.cat-info { background: var(--bleu); color: var(--blanc); }
.actu-categorie.cat-coulisses { background: var(--vert); color: var(--blanc); }

/* Image */
.actu-image {
  width: 100%; height: 200px; object-fit: cover;
  border-bottom: 4px solid var(--brun);
}
.actu-image-placeholder {
  width: 100%; height: 200px;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(60,57,42,.04) 12px, rgba(60,57,42,.04) 24px);
  border-bottom: 4px solid var(--brun);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

/* Contenu */
.actu-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.actu-date {
  font-size: .75rem; font-weight: 700; color: var(--rouge);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px;
}
.actu-titre {
  font-family: 'Bangers', cursive; font-size: 1.35rem; color: var(--brun);
  line-height: 1.2; margin-bottom: 8px;
}
.actu-extrait {
  font-size: .88rem; color: #666; line-height: 1.5;
  flex: 1; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.actu-lire-suite {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Bangers', cursive; font-size: .95rem; color: var(--rouge);
  text-decoration: none; transition: gap .2s;
  align-self: flex-start;
}
.actu-lire-suite:hover { gap: 10px; }
.actu-lire-suite::after { content: '→'; font-size: 1.1rem; }

/* Empty state */
.actus-empty {
  text-align: center; font-size: 1.1rem; color: #888;
  font-weight: 600; padding: 40px 20px;
  background: rgba(255,255,255,.5); border-radius: 16px;
  border: 3px dashed #d4c8a8;
}

/* Modal actu (plein contenu) */
.actu-modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 10000; align-items: center; justify-content: center; padding: 20px;
}
.actu-modal-overlay.show { display: flex; }
.actu-modal {
  background: var(--blanc); border: 4px solid var(--brun); border-radius: 20px;
  max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 10px 10px 0 var(--brun); position: relative;
}
.actu-modal-image {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: 16px 16px 0 0; border-bottom: 4px solid var(--brun);
}
.actu-modal-body { padding: 28px; }
.actu-modal-body .actu-date { font-size: .82rem; margin-bottom: 8px; }
.actu-modal-body .actu-titre { font-size: 1.8rem; margin-bottom: 14px; }
.actu-modal-body .actu-content { font-size: .95rem; color: #444; line-height: 1.7; }
.actu-modal-body .actu-content p { margin-bottom: 12px; }
.actu-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blanc); border: 3px solid var(--brun);
  font-size: 1.3rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--brun); transition: transform .1s;
}
.actu-modal-close:hover { transform: scale(1.1); }

/* Carousel */
.actu-carousel {
  position: relative; width: 100%; height: 300px; overflow: hidden;
  border-radius: 16px 16px 0 0; border-bottom: 4px solid var(--brun);
  background: #1a1a1a;
}
.actu-carousel-track {
  display: flex; height: 100%; transition: transform .4s ease;
}
.actu-carousel-track img {
  min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0;
}
.actu-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 3px solid var(--brun);
  font-size: 1.4rem; cursor: pointer; color: var(--brun);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--brun); transition: transform .1s;
  z-index: 2;
}
.actu-carousel-btn:hover { transform: translateY(-50%) scale(1.1); }
.actu-carousel-prev { left: 12px; }
.actu-carousel-next { right: 12px; }
.actu-carousel-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.actu-carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 2px solid var(--brun);
  cursor: pointer; transition: all .2s;
}
.actu-carousel-dot.active { background: var(--jaune); transform: scale(1.2); }

/* Video */
.actu-video-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
  margin-bottom: 18px; border-radius: 14px; overflow: hidden;
  border: 3px solid var(--brun); box-shadow: 4px 4px 0 var(--brun);
}
.actu-video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Audio */
.actu-audio-wrap {
  margin-bottom: 18px; padding: 14px 18px;
  background: linear-gradient(135deg, rgba(248,200,15,.1), rgba(217,79,79,.08));
  border: 3px solid var(--brun); border-radius: 14px;
  box-shadow: 3px 3px 0 var(--brun);
}
.actu-audio-label {
  font-family: 'Bangers', cursive; font-size: 1rem; color: var(--brun);
  margin-bottom: 8px;
}
.actu-audio-wrap audio {
  width: 100%; height: 42px; border-radius: 8px;
}

/* Card media badges */
.actu-media-badges {
  display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px;
}
.actu-media-badge {
  padding: 2px 8px; border-radius: 10px; font-size: .65rem; font-weight: 700;
  border: 1.5px solid;
}
.actu-media-badge.has-video { background: rgba(217,79,79,.1); color: var(--rouge); border-color: var(--rouge); }
.actu-media-badge.has-audio { background: rgba(248,200,15,.15); color: #8a6e00; border-color: #d4a800; }
.actu-media-badge.has-photos { background: rgba(114,187,201,.1); color: #2a7a8a; border-color: var(--bleu); }

/* Responsive actus slider */
@media (max-width: 768px) {
  .actus-slide { height: 550px; }
  .actus-slide-overlay { padding: 0 24px 28px; }
  .actus-slide-overlay .actu-titre { font-size: 2rem; }
  .actus-slide-overlay .actu-extrait { font-size: .88rem; -webkit-line-clamp: 2; }
  .actus-sl-btn { width: 38px; height: 38px; font-size: 1.2rem; }
  .actus-slide-counter { display: none; }
  .actu-modal-image { height: 260px; }
  .actu-carousel { height: 220px; }
  .actu-modal-body .actu-titre { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .actus-slide { height: 420px; }
  .actus-slide-overlay { padding: 0 18px 22px; }
  .actus-slide-overlay .actu-titre { font-size: 1.6rem; }
  .actus-slide-overlay .actu-extrait { display: none; }
  .actus-slide-overlay .actu-lire-suite { font-size: .95rem; padding: 10px 20px; }
  .actus-sl-btn { width: 34px; height: 34px; font-size: 1rem; }
  .actu-carousel { height: 180px; }
  .actu-carousel-btn { width: 32px; height: 32px; font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════════
   BLOC 3 — PROGRAMME (pleine largeur)
   ══════════════════════════════════════════════════ */

/* Titre SVG Programme */
/* ── Décorations fleurs & étoiles du programme ── */
.bloc-programme {
  overflow: visible !important;
  position: relative;
}

.prog-deco-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.pd {
  position: absolute;
  pointer-events: none;
  transform: rotate(var(--rot, 0deg));
  animation: pd-float 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.18));
  opacity: 0.9;
}

@keyframes pd-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

/* Sur mobile, plus petit */
@media (max-width: 768px) {
  .pd { transform: rotate(var(--rot, 0deg)) scale(0.6); }
}
@media (max-width: 480px) {
  .prog-deco-layer { display: none; }
}

.prog-titre-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.prog-titre-svg {
  max-width: 750px;
  width: 110%;
  height: auto;
  filter: drop-shadow(4px 5px 0 rgba(0,0,0,0.2));
}

/* Bloc par jour */
.prog-jour-bloc {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Header du jour avec SVG */
/* Animation BD "SMASH" pour les headers jour */
/* Entrée lente et spectaculaire */
@keyframes jour-smash {
  0%   { opacity: 0; transform: scale(0.2) rotate(-15deg); }
  30%  { opacity: 1; transform: scale(1.15) rotate(4deg); }
  50%  { opacity: 1; transform: scale(0.93) rotate(-2deg); }
  65%  { opacity: 1; transform: scale(1.06) rotate(1.5deg); }
  80%  { opacity: 1; transform: scale(0.98) rotate(-0.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
/* Pulse continu "regarde-moi" — scale + glow en boucle */
@keyframes jour-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.18)) drop-shadow(0 0 0px rgba(241,181,65,0));
  }
  50% {
    transform: scale(1.04) rotate(-1.5deg);
    filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.18)) drop-shadow(0 0 22px rgba(241,181,65,0.55));
  }
}
.prog-jour-header {
  text-align: center;
  margin-bottom: 1.5rem;
  perspective: 600px;
}
.prog-jour-svg {
  max-width: 700px;
  width: 105%;
  height: auto;
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.18));
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), filter 0.3s;
  cursor: default;
}
/* Avant apparition : caché */
.prog-jour-header.reveal .prog-jour-svg {
  opacity: 0;
  transform: scale(0.3) rotate(-12deg);
}
/* Quand visible → SMASH + glow */
.prog-jour-header.visible .prog-jour-svg {
  opacity: 1;
  animation: jour-smash 1.4s cubic-bezier(.34,1.56,.64,1) forwards,
             jour-pulse 2.5s ease-in-out 1.6s infinite;
}
.prog-jour-svg:hover {
  transform: scale(1.06) rotate(-2deg) !important;
  filter: drop-shadow(5px 6px 0 rgba(0,0,0,0.25)) drop-shadow(0 0 20px rgba(241,181,65,0.6));
}
.prog-jour-svg-dimanche {
  max-width: 220px;
  width: 50%;
  height: auto;
}

/* ══════════════════════════════════════
   PROGRAMME — 2 colonnes, panneaux BD colorés
   ══════════════════════════════════════ */

/* 2 colonnes fixes */
.prog-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 10px 0 40px;
  align-items: stretch; /* cartes de même hauteur par ligne */
}

/* ── Carte BD colorée ──
   La couleur va sur .prog-artiste-wrap (zone sticker)
   pour ne pas clipper la photo avec overflow:hidden */
.prog-slot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  background: transparent;
  border: 4px solid var(--noir);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--noir);
  overflow: visible;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
/* Animation d'entrée des cartes */
@keyframes card-enter {
  0%   { opacity: 0; transform: translateY(30px) rotate(-1deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.prog-slot {
  animation: card-enter 0.6s cubic-bezier(.34,1.56,.64,1) both;
}
.prog-timeline .prog-slot:nth-child(2) { animation-delay: 0.08s; }
.prog-timeline .prog-slot:nth-child(3) { animation-delay: 0.16s; }
.prog-timeline .prog-slot:nth-child(4) { animation-delay: 0.24s; }
.prog-timeline .prog-slot:nth-child(5) { animation-delay: 0.32s; }
.prog-timeline .prog-slot:nth-child(6) { animation-delay: 0.40s; }
.prog-timeline .prog-slot:nth-child(7) { animation-delay: 0.48s; }

.prog-slot {
  transform-style: preserve-3d;
  perspective: 800px;
}
.prog-slot:hover {
  box-shadow: 8px 10px 0 var(--noir);
}
/* Le tilt 3D est géré par JS — fallback CSS si pas de souris */
@media (hover: hover) {
  .prog-slot:hover:not(.tilt-active) {
    transform: translateY(-6px) scale(1.02);
  }
}

/* Couleurs portées par la zone sticker */
.prog-timeline .prog-slot:nth-child(4n+1) .prog-artiste-wrap { background: #E03D3B; }
.prog-timeline .prog-slot:nth-child(4n+2) .prog-artiste-wrap { background: #4DA7C0; }
.prog-timeline .prog-slot:nth-child(4n+3) .prog-artiste-wrap { background: #7DB662; }
.prog-timeline .prog-slot:nth-child(4n)   .prog-artiste-wrap { background: #F1B541; }

/* R-WAN — pleine largeur, noir doré */
.prog-slot-headliner {
  grid-column: 1 / -1;
  border-color: #F1B541;
  box-shadow: 5px 5px 0 #F1B541;
}
.prog-slot-headliner:hover { box-shadow: 8px 8px 0 #F1B541; }
.prog-slot-headliner .prog-artiste-wrap {
  background: #1a1a1a !important;
  height: 320px;
}
.prog-slot-headliner .sticker-prog { max-width: 320px; max-height: 320px; }

/* Ouverture / Fin du festival : pleine largeur + transparent */
.prog-slot-txt {
  grid-column: 1 / -1;
  background: transparent !important;
  border: none;
  box-shadow: none;
  cursor: default;
  overflow: visible;
}
.prog-slot-txt:hover { transform: none; box-shadow: none; }

/* Espace Famille : encadré bleu pointillé */
.prog-slot-espace-famille {
  background: #d0eef7 !important;
  border: 4px dashed #4DA7C0;
  box-shadow: 4px 4px 0 #4DA7C0;
}

/* Activité : encadré vert pointillé */
.prog-slot-activite {
  border: 4px dashed var(--vert);
  box-shadow: 4px 4px 0 var(--vert);
}
.prog-slot-activite .prog-artiste-wrap {
  background: #b8e6a3 !important;
}

/* Spectacle : encadré violet pointillé */
.prog-slot-spectacle {
  border: 4px dashed #9c27b0;
  box-shadow: 4px 4px 0 #9c27b0;
}
.prog-slot-spectacle .prog-artiste-wrap {
  background: #e1bee7 !important;
}

/* Badge catégorie sur la carte programme */
.prog-categorie-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: 'Bangers', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 2px solid var(--brun);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  z-index: 10;
  text-transform: uppercase;
}
.prog-categorie-badge-activite {
  background: var(--vert);
  color: white;
}
.prog-categorie-badge-spectacle {
  background: #9c27b0;
  color: white;
}

/* ── Zone du sticker (haut de la carte) ── */
.prog-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
/* Annuler stagger hérité */
.prog-slot:nth-child(odd) .prog-main,
.prog-slot:nth-child(even) .prog-main,
.prog-slot:nth-child(3n) .prog-main {
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

/* Zone sticker — coins ronds en haut, HAUTEUR FIXE pour alignement */
.prog-artiste-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  flex-shrink: 0;
  padding: 20px 16px 30px;
  box-sizing: border-box;
  border-radius: 14px 14px 0 0;
  overflow: visible; /* autorise le sticker à déborder */
}
/* Trame BD subtile sur la zone sticker */
.prog-artiste-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,0.07) 12px,
    rgba(255,255,255,0.07) 14px
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 14px 14px 0 0;
}

/* Sticker grand, centré, ombre BD profonde — déborde légèrement du cadre */
.sticker-prog {
  max-width: 240px; /* agrandi */
  max-height: 230px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,0.35));
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), filter 0.3s;
  transform: rotate(-2deg) translateY(-5px); /* position initiale qui sort un peu */
}
.sticker-prog-xl { 
  max-width: 380px; /* Très large pour Ceylon */
  max-height: 300px; 
  transform: rotate(-3deg) scale(1.15) translateY(-5px); /* On force le débordement par l'échelle */
}
.prog-slot-headliner .sticker-prog-xl { max-width: 420px; max-height: 350px; }

.prog-slot:hover .sticker-prog {
  transform: scale(1.12) rotate(3deg);
  filter: drop-shadow(7px 8px 0 rgba(0,0,0,0.4));
}
.prog-slot.active .sticker-prog { transform: scale(1.04) rotate(-1deg); }

/* ── Bandeau infos (bas de la carte) ── */
.prog-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 12px 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Nom — blanc, lisible sur toutes les couleurs */
.prog-nom {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.prog-slot-headliner .prog-nom { color: #F1B541; }
/* Nom caché si sticker présent (le nom est sur le sticker) */
.prog-artiste-wrap:has(.sticker-prog) .prog-nom { display: none; }

/* Scène — masquée dans le programme, visible dans la section Artistes */
.prog-timeline .prog-scene { display: none; }
.prog-scene {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--noir);
  background: rgba(255,255,255,0.85);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Badge horaire — gros chip BD "collé à la main" */
@keyframes badge-pop {
  0%   { transform: scale(0) rotate(-15deg); }
  60%  { transform: scale(1.15) rotate(-5deg); }
  100% { transform: scale(1) rotate(-6deg); }
}
.prog-heure-badge {
  position: relative;
  display: inline-block;
  background: white;
  border: 3px solid var(--noir);
  box-shadow: 3px 3px 0 var(--noir);
  padding: 6px 16px;
  border-radius: 8px;
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--noir);
  letter-spacing: 1.5px;
  transform: rotate(-6deg);
  line-height: 1;
  text-align: center;
  margin-bottom: 6px;
  z-index: 3;
  animation: badge-pop 0.5s cubic-bezier(.34,1.56,.64,1) both;
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-heure-badge .heure-debut { display: block; font-size: 1.6rem; }
.prog-heure-badge .heure-fin   { display: none; }
.prog-slot:hover .prog-heure-badge {
  transform: rotate(-2deg) scale(1.1);
  box-shadow: 4px 4px 0 var(--noir);
}

/* Badge dans la zone sticker (en bas à gauche) */
.prog-artiste-wrap:has(.sticker-prog) .prog-heure-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: auto;
  top: auto;
  margin-bottom: 0;
  z-index: 10;
  transform: rotate(-8deg);
  font-size: 1.6rem;
  padding: 7px 18px;
  border-width: 3px;
  box-shadow: 3px 3px 0 var(--noir);
}
.prog-artiste-wrap:has(.sticker-prog) .prog-heure-badge .heure-debut {
  font-size: 1.8rem;
}
.prog-slot:hover .prog-artiste-wrap:has(.sticker-prog) .prog-heure-badge {
  transform: rotate(-4deg) scale(1.08);
}
/* Annuler variantes odd/even */
.prog-slot:nth-child(even) .prog-artiste-wrap:has(.sticker-prog) .prog-heure-badge,
.prog-slot:nth-child(3n)   .prog-artiste-wrap:has(.sticker-prog) .prog-heure-badge,
.prog-slot:nth-child(4n)   .prog-artiste-wrap:has(.sticker-prog) .prog-heure-badge {
  bottom: 10px;
  left: 10px;
  right: auto;
  top: auto;
  transform: rotate(-8deg);
}

/* Bouton "En savoir plus" — fond blanc translucide */
.prog-more-btn {
  margin: 6px 12px 12px;
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  color: var(--noir);
  background: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 30px;
  border: 2px solid var(--noir);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  white-space: nowrap;
  transition: all 0.2s;
  align-self: center;
}
.prog-slot:hover .prog-more-btn { background: white; box-shadow: 3px 3px 0 rgba(0,0,0,0.4); }
.prog-slot.active .prog-more-btn { background: var(--noir); color: white; }

/* Bouton "En savoir plus" — masqué (infos visibles directement) */
.prog-more-btn { display: none; }

/* ── Section infos — toujours visible ── */
.prog-drawer {
  width: 100%;
  opacity: 1;
  max-height: none;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-drawer-content {
  background: #fef6e4;
  border-top: 4px solid rgba(0,0,0,0.18);
  border-radius: 0 0 14px 14px;
  padding: 0 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  flex: 1;
}


/* Photo artiste — format carré avec fond noir pour voir la photo en entier sans crop */
.prog-drawer-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: top center;
  background: #1a1a1a;
  display: block;
  flex-shrink: 0;
  border-bottom: 3px solid rgba(0,0,0,0.2);
}

/* Affiche festival — même format carré que la photo */
.prog-affiche {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  background: #1a1a1a;
  border-bottom: 3px solid rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* Image fallback (sans sticker) */
.prog-drawer-img {
  max-width: 90px;
  border-radius: 8px;
  border: 3px solid var(--noir);
  box-shadow: 3px 3px 0 var(--noir);
  margin-top: 0.8rem;
}
.prog-slot:has(.sticker-prog) .prog-drawer-img { display: none; }

/* ── Tags genre musical — chips BD dans la zone sticker ── */
@keyframes tag-slide {
  0%   { opacity: 0; transform: translateY(8px) rotate(5deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.prog-genres {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  max-width: 55%;
  z-index: 10;
}
.prog-genre-tag {
  font-family: 'Bangers', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border: 2px solid var(--noir);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--noir);
  display: inline-block;
  color: var(--noir);
  white-space: nowrap;
  line-height: 1.2;
  animation: tag-slide 0.4s cubic-bezier(.34,1.56,.64,1) both;
  transition: transform 0.2s, box-shadow 0.2s;
}
/* Apparition décalée pour chaque tag */
.prog-genre-tag:nth-child(1) { animation-delay: 0.1s; }
.prog-genre-tag:nth-child(2) { animation-delay: 0.2s; }
.prog-genre-tag:nth-child(3) { animation-delay: 0.3s; }
.prog-genre-tag:nth-child(4) { animation-delay: 0.4s; }
/* Rotation alternée "collé à la main" */
.prog-genre-tag:nth-child(odd)  { transform: rotate(-2deg); }
.prog-genre-tag:nth-child(even) { transform: rotate(2deg); }
/* Hover : pop up */
.prog-genre-tag:hover {
  transform: scale(1.12) rotate(0deg) !important;
  box-shadow: 3px 3px 0 var(--noir);
}
/* Couleurs BD alternées */
.prog-genres .prog-genre-tag:nth-child(4n+1) { background: #F1B541; }
.prog-genres .prog-genre-tag:nth-child(4n+2) { background: #E03D3B; color: white; text-shadow: 1px 1px 0 rgba(0,0,0,0.4); }
.prog-genres .prog-genre-tag:nth-child(4n+3) { background: #7DB662; color: white; text-shadow: 1px 1px 0 rgba(0,0,0,0.3); }
.prog-genres .prog-genre-tag:nth-child(4n)   { background: #4DA7C0; color: white; text-shadow: 1px 1px 0 rgba(0,0,0,0.3); }
/* Quand pas de sticker : genres en flow normal sous le badge */
.prog-artiste-wrap:not(:has(.sticker-prog)) .prog-genres {
  position: static;
  max-width: 100%;
  justify-content: center;
  margin-top: 6px;
}

/* Quand pas de photo : ajouter de l'espace au-dessus */
.prog-drawer-content:not(:has(.prog-drawer-photo)) .prog-drawer-info {
  padding-top: 0.8rem;
}
.prog-drawer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.prog-desc {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2a1f0e;              /* brun foncé — lisible sur crème */
}
.prog-links { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.prog-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--noir);
  color: white;
  text-decoration: none;
  font-family: 'Bangers', cursive;
  border-radius: 10px;
  font-size: 1.05rem;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}
.prog-link-btn:hover { transform: scale(1.05); }

/* ══════════════════════════════════════════
   MODALE ARTISTE — popup BD "En savoir plus"
   ══════════════════════════════════════════ */
.artist-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}
.artist-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.artist-modal {
  background: #fef6e4;
  border: 5px solid var(--noir);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--noir);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(40px);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.artist-modal-overlay.open .artist-modal {
  transform: scale(1) translateY(0);
}
/* Barre titre colorée */
.artist-modal-header {
  background: var(--rouge);
  color: white;
  padding: 1rem 1.5rem;
  padding-right: 56px;
  border-radius: 17px 17px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.artist-modal-header h2 {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.artist-modal-horaire {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 14px;
  background: rgba(0,0,0,0.25);
  border-radius: 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  -webkit-backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.artist-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 11;
  background: white;
  color: var(--noir);
  border: 3px solid var(--noir);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  font-family: 'Bangers', cursive;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.artist-modal-close:hover { transform: scale(1.15) rotate(90deg); }

/* Corps de la modale */
.artist-modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* ── Carrousel photos modale ── */
.modal-carousel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--noir);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
}
.modal-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1);
}
.modal-carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.modal-photo {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: cover;
  object-position: top;
}
/* Flèches du carrousel */
.modal-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  color: var(--noir);
  border: 3px solid var(--noir);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-carousel-btn:hover {
  background: var(--jaune);
  transform: translateY(-50%) scale(1.1);
}
.modal-carousel-prev { left: 10px; }
.modal-carousel-next { right: 10px; }
/* Points de navigation */
.modal-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.modal-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--noir);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.modal-carousel-dot.active {
  background: var(--rouge);
  transform: scale(1.2);
}
.modal-carousel-dot:hover {
  background: var(--jaune);
}

/* Genres dans la modale */
.modal-genres {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.modal-genre-tag {
  background: var(--bleu);
  color: white;
  font-family: 'Bangers', cursive;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 2px solid var(--noir);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

/* Description enrichie dans la modale */
.modal-desc-full {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--noir);
}
.modal-desc-full p {
  margin: 0 0 0.8rem;
}
.modal-desc-full p:last-child {
  margin-bottom: 0;
}
.modal-desc-full em {
  color: #555;
}

/* Sections média dans la modale */
.modal-media-section {
  background: rgba(255,255,255,0.7);
  border: 3px solid var(--noir);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
}
.modal-media-title {
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Vignette YouTube cliquable */
.modal-yt-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--noir);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.modal-yt-link:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}
.modal-yt-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.modal-yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(255,0,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.2s;
}
.modal-yt-play-btn span {
  color: white;
  font-size: 1.8rem;
  margin-left: 4px;
}
.modal-yt-link:hover .modal-yt-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ff0000;
}
.modal-yt-bar {
  background: var(--noir);
  color: white;
  text-align: center;
  padding: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
/* Galerie photos modale */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.modal-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--noir);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s;
}
.modal-gallery img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
/* Vidéo embed responsive */
.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid var(--noir);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
.modal-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
/* Audio embed (Spotify) */
.modal-audio-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--noir);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
.modal-audio-wrap iframe {
  width: 100%;
  height: 352px;
  border: none;
  border-radius: 9px;
}
/* Placeholder "contenu à venir" */
.modal-placeholder {
  text-align: center;
  padding: 1.5rem;
  color: #999;
  font-family: 'Fredoka', sans-serif;
  font-style: italic;
  border: 2px dashed #ccc;
  border-radius: 10px;
}
/* Couleurs alternées pour les headers de modales */
.artist-modal[data-color="bleu"] .artist-modal-header { background: var(--bleu); }
.artist-modal[data-color="vert"] .artist-modal-header { background: var(--vert); }
.artist-modal[data-color="jaune"] .artist-modal-header { background: var(--jaune); color: var(--noir); }
.artist-modal[data-color="rouge"] .artist-modal-header { background: var(--rouge); }
/* Responsive modale */
@media (max-width: 600px) {
  .artist-modal { max-height: 90vh; border-radius: 16px; }
  .artist-modal-header { padding: 0.8rem 1rem; padding-right: 50px; border-radius: 11px 11px 0 0; }
  .artist-modal-header h2 { font-size: 1.3rem; }
  .artist-modal-close { top: 8px; right: 8px; width: 34px; height: 34px; font-size: 1.2rem; }
  .artist-modal-body { padding: 1rem; }
  .modal-gallery { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}




/* ══════════════════════════════════════════════════
   BLOC 4 — ARTISTES (grille de cartes)
   ══════════════════════════════════════════════════ */
.artistes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

.artiste-card {
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--brun);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.artiste-card:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--brun); }

.artiste-card-sticker {
  background: var(--jaune);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem; min-height: 120px;
  border-bottom: 4px solid var(--brun);
}
.artiste-card-sticker img { max-height: 80px; width: auto; }

.artiste-card-info { padding: 1rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.artiste-card-info h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem; color: var(--noir); letter-spacing: .5px;
}
.artiste-genres {
  font-family: 'Fredoka', sans-serif;
  font-size: .85rem; color: var(--rouge); font-weight: 600;
}
.artiste-horaire-card {
  font-family: 'Fredoka', sans-serif;
  font-size: .8rem; color: #555;
}
.artiste-links { margin-top: auto; padding-top: .6rem; }
.artiste-link-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--noir); color: var(--jaune);
  font-family: 'Bangers', cursive; font-size: .95rem; letter-spacing: .5px;
  padding: .35rem .9rem; border-radius: 6px;
  text-decoration: none;
  transition: background .2s;
}
.artiste-link-btn:hover { background: var(--rouge); }

/* Carte artiste avec vraie photo */
.artiste-card-has-photo .artiste-card-photo {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: var(--noir);
}
.artiste-card-has-photo .artiste-photo-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: top center;
  background: #1a1a1a;
  display: block;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
.artiste-card:hover .artiste-photo-img { transform: scale(1.02); }
.artiste-sticker-overlay {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 90px;
  height: auto;
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.4));
  z-index: 5;
}

/* Description dans la carte artiste */
.artiste-desc-card {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

/* (doublon supprimé — règle .prog-drawer-photo déjà définie plus haut) */


/* ══════════════════════════════════════════════════
   BLOC 5 — LE FESTIVAL
   ══════════════════════════════════════════════════ */

/* Grille festival */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Carte festival — style BD */
.activite-card {
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--brun);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
  position: relative;
}
.activite-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 7px 9px 0 var(--brun);
  z-index: 2;
}

/* Zone sticker — haut de la carte, fond coloré */
.activite-card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.5rem;
}
/* Couleurs alternées */
.activite-card:nth-child(4n+1) .activite-card-top { background: #E03D3B; }
.activite-card:nth-child(4n+2) .activite-card-top { background: #4DA7C0; }
.activite-card:nth-child(4n+3) .activite-card-top { background: #7DB662; }
.activite-card:nth-child(4n)   .activite-card-top { background: #F1B541; }

/* Trame hachurée BD subtile */
.activite-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.08) 8px,
    rgba(255,255,255,0.08) 10px
  );
  pointer-events: none;
  z-index: 0;
}

/* Sticker */
.activite-sticker {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.25));
  z-index: 1;
  position: relative;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.activite-card:hover .activite-sticker {
  transform: scale(1.1) rotate(3deg);
}

/* Placeholder quand pas de sticker */
.activite-placeholder-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.25);
  border: 3px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 1;
  position: relative;
}

/* Photo réelle de l'activité (sous le sticker) */
.activite-card-photo {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-top: 4px solid var(--brun);
  border-bottom: 4px solid rgba(0,0,0,0.12);
  background: #f0eadb;
}
.activite-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.activite-card:hover .activite-card-photo img {
  transform: scale(1.06);
}

/* Zone texte — bas de la carte */
.activite-card-bottom {
  padding: 1rem 1.2rem 1.2rem;
  text-align: center;
  border-top: 4px solid rgba(0,0,0,0.12);
  background: #fef6e4;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
/* Onglets de filtrage festival */
.festival-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.festival-tab {
  padding: 8px 18px;
  border: 3px solid var(--brun);
  border-radius: 30px;
  background: var(--cream);
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--brun);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--brun);
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s;
}
.festival-tab:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brun);
}
.festival-tab.active {
  background: var(--brun);
  color: var(--jaune);
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--brun);
}

/* Badges jour + horaire */
.activite-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.activite-jour-badge, .activite-horaire-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 2px solid var(--brun);
  letter-spacing: 0.3px;
}
.badge-jour-sam  { background: #d94f4f; color: #fff; }
.badge-jour-dim  { background: #72bbc9; color: #fff; }
.badge-jour-tous { background: #f8c80f; color: var(--brun); }
.activite-horaire-badge { background: var(--cream); color: var(--brun); }

/* Description courte sur la carte */
.activite-card-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
  margin: 0.3rem 0 0.5rem;
  text-align: center;
}

.activite-desc {
  font-family: 'Bangers', cursive;
  font-size: 1.35rem;
  color: var(--brun);
  letter-spacing: 0.8px;
  line-height: 1.2;
}
.activite-more {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rouge);
  opacity: 0;
  transition: opacity 0.2s;
}
.activite-card:hover .activite-more {
  opacity: 1;
}

/* Modal activité */
.activite-modal-body {
  text-align: center;
}
.activite-modal-img {
  max-width: 220px;
  max-height: 220px;
  margin: 1rem auto;
  display: block;
  filter: drop-shadow(4px 5px 0 rgba(0,0,0,0.3));
}
.activite-modal-desc {
  margin-top: 1rem;
}

/* Animation d'entrée au scroll */
@keyframes activite-pop {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.activite-card.reveal {
  opacity: 0;
}
.activite-card.visible {
  opacity: 1;
  animation: activite-pop 0.4s cubic-bezier(.34,1.56,.64,1) both;
}
.activite-card:nth-child(2).visible { animation-delay: 0.06s; }
.activite-card:nth-child(3).visible { animation-delay: 0.12s; }
.activite-card:nth-child(4).visible { animation-delay: 0.18s; }
.activite-card:nth-child(5).visible { animation-delay: 0.24s; }
.activite-card:nth-child(n+6).visible { animation-delay: 0.3s; }


/* ══════════════════════════════════════════════════
   BLOC 6 — BILLETTERIE
   ══════════════════════════════════════════════════ */

/* --- Hero zone --- */
.billets-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--rouge) 0%, #e85d5d 50%, #f07a4a 100%);
  border: 5px solid var(--brun);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--brun);
  position: relative;
  overflow: hidden;
}
.billets-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 18px,
    rgba(255,255,255,.06) 18px, rgba(255,255,255,.06) 22px
  );
  pointer-events: none;
}
.billets-hero-left {
  flex: 1;
  position: relative;
  z-index: 1;
}
.billets-accroche {
  font-family: 'Bangers', cursive;
  font-size: 2.6rem;
  color: var(--jaune);
  line-height: 1.1;
  text-shadow: 3px 3px 0 var(--brun);
  letter-spacing: 1px;
}
.billets-lieu {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  color: var(--blanc);
  text-shadow: 2px 2px 0 var(--brun);
  margin-top: 2px;
}
.billets-baseline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin: 12px 0 22px;
  line-height: 1.5;
  max-width: 420px;
  opacity: .95;
}
.billets-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--rouge) 0%, #c0392b 100%);
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 1.7rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 4px solid var(--brun);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--brun), 0 0 20px rgba(217,79,79,.3);
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: ctaPulse 2s ease-in-out infinite;
  margin-bottom: 32px;
}
/* Effet brillant qui traverse le bouton */
.billets-cta-main::before {
  content: ''; position: absolute; top: -50%; left: -70%; width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3.5s ease-in-out infinite;
}
/* Petit texte "Places limitées" sous le bouton */
.billets-cta-main::after {
  content: '⚡ Places limitées — Réservez maintenant !';
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-family: 'Fredoka', sans-serif; font-size: .75rem; font-weight: 600;
  color: var(--jaune); white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  letter-spacing: .5px;
  animation: ctaTextBlink 2s ease-in-out infinite;
}
.billets-cta-main:hover {
  transform: translate(-3px, -3px) scale(1.05);
  box-shadow: 8px 8px 0 var(--brun), 0 0 30px rgba(217,79,79,.5);
  background: linear-gradient(135deg, #e74c3c 0%, var(--rouge) 100%);
}
.billets-cta-main:active {
  transform: translate(2px, 2px) scale(.98);
  box-shadow: 2px 2px 0 var(--brun);
}
.billets-cta-icon { font-size: 2rem; filter: drop-shadow(0 2px 3px rgba(0,0,0,.3)); }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 5px 5px 0 var(--brun), 0 0 15px rgba(217,79,79,.2); }
  50% { box-shadow: 5px 5px 0 var(--brun), 0 0 30px rgba(217,79,79,.5); }
}
@keyframes ctaShine {
  0%, 100% { left: -70%; }
  50% { left: 130%; }
}
@keyframes ctaTextBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* Affiche hero */
.billets-hero-right {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.billets-affiche-img {
  width: 240px;
  height: auto;
  border: 5px solid var(--brun);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--brun);
  transform: rotate(3deg);
  transition: transform .4s ease;
}
.billets-affiche-img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Stars / decorations */
.billets-star, .billets-fleur {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.billets-star-1 {
  width: 50px; height: 50px;
  top: -15px; right: -15px;
  animation: billets-spin 6s linear infinite;
}
.billets-star-2 {
  width: 35px; height: 35px;
  bottom: -10px; left: -10px;
  animation: billets-spin 8s linear infinite reverse;
}
.billets-fleur-1 {
  width: 45px; height: 45px;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  animation: billets-float 3s ease-in-out infinite;
}
@keyframes billets-spin {
  to { transform: rotate(360deg); }
}
@keyframes billets-float {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-60%) rotate(15deg); }
}

/* --- Tickets grid --- */
.billets-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Ticket card (billet look) --- */
.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--brun);
  overflow: visible;
  transition: transform .2s, box-shadow .2s;
}
.ticket-card:hover {
  transform: translate(-3px, -3px) rotate(-0.5deg);
  box-shadow: 8px 8px 0 var(--brun);
}

/* Perforated edges (left & right dashed line effect) */
.ticket-perfo-left,
.ticket-perfo-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 0;
  border-left: 3px dashed rgba(60, 57, 42, .2);
  z-index: 5;
  pointer-events: none;
}
.ticket-perfo-left { left: 12px; }
.ticket-perfo-right { right: 12px; }

/* Ticket header (day band) */
.ticket-header {
  padding: 14px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--brun);
  position: relative;
}
.ticket-header::after {
  content: '';
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}
.ticket-header-rouge {
  background: linear-gradient(135deg, var(--rouge), #e06060);
}
.ticket-header-rouge::after { border-top: 10px solid var(--rouge); }
.ticket-header-bleu {
  background: linear-gradient(135deg, var(--bleu), #5ab0c4);
}
.ticket-header-bleu::after { border-top: 10px solid var(--bleu); }
.ticket-header-vert {
  background: linear-gradient(135deg, var(--vert), #5db86e);
}
.ticket-header-vert::after { border-top: 10px solid var(--vert); }

.ticket-jour {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--blanc);
  text-shadow: 2px 2px 0 rgba(0,0,0,.2);
  letter-spacing: 1px;
}
.ticket-date {
  font-family: 'Fredoka', sans-serif;
  font-size: .85rem;
  color: var(--blanc);
  opacity: .9;
  font-weight: 600;
}

/* Ticket body */
.ticket-body {
  padding: 24px 20px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Prix */
.ticket-prix-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 4px 0 8px;
}
.ticket-prix {
  font-family: 'Bangers', cursive;
  font-size: 4rem;
  color: var(--rouge);
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(217,79,79,.15);
}
.ticket-devise {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  color: var(--rouge);
}
.ticket-prix-gratuit {
  font-size: 2.8rem;
  color: var(--vert);
  text-shadow: 3px 3px 0 rgba(74,158,92,.15);
}

/* Liste features */
.ticket-liste {
  list-style: none;
  width: 100%;
  padding: 0;
}
.ticket-liste li {
  font-family: 'Fredoka', sans-serif;
  font-size: .88rem;
  padding: 8px 0;
  border-bottom: 1px dashed #e0d5c0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brun);
}
.ticket-liste li:last-child { border-bottom: none; }
.ticket-liste li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--vert);
  color: var(--blanc);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Ticket footer (CTA) */
.ticket-footer {
  padding: 12px 16px 0;
}
.ticket-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--blanc);
  border: 3px solid var(--brun);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--brun);
  transition: transform .12s, box-shadow .12s;
  position: relative;
  overflow: hidden;
}
.ticket-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brun);
}
.ticket-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--brun);
}
.ticket-btn-rouge { background: var(--rouge); }
.ticket-btn-bleu { background: var(--bleu); }
.ticket-btn-vert { background: var(--vert); }

/* Ticket stub (talon) */
.ticket-stub {
  border-top: 3px dashed var(--brun);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 6px,
    rgba(60,57,42,.03) 6px, rgba(60,57,42,.03) 8px
  );
  border-radius: 0 0 12px 12px;
}
.ticket-stub-img {
  height: 50px;
  width: auto;
}
.ticket-stub-emoji {
  font-size: 2.2rem;
}
.ticket-stub-text {
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  color: var(--brun);
  letter-spacing: 3px;
  opacity: .4;
}

/* Old poster-btn kept for backward compat */
.poster-btn {
  display: block; width: 100%; text-align: center;
  padding: .65rem 1rem;
  border-radius: 8px;
  font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 1px;
  text-decoration: none;
  border: 3px solid var(--noir);
  box-shadow: 4px 4px 0 var(--noir);
  transition: transform .15s, box-shadow .15s;
}
.poster-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--noir); }
.poster-btn-rouge { background: var(--rouge); color: var(--blanc); }
.poster-btn-bleu  { background: var(--bleu);  color: var(--blanc); }
.poster-btn-vert  { background: var(--vert);  color: var(--blanc); }


/* --- Affiche zoom hint --- */
.billets-affiche-img {
  cursor: pointer;
}
.affiche-zoom-hint {
  font-family: 'Fredoka', sans-serif;
  font-size: .75rem;
  color: var(--blanc);
  text-align: center;
  margin-top: 6px;
  opacity: .7;
  transition: opacity .2s;
  position: relative;
  z-index: 1;
}
.billets-hero-right:hover .affiche-zoom-hint {
  opacity: 1;
}

/* --- Affiche lightbox --- */
.affiche-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.85);
  -webkit-backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: lb-fade-in .3s ease;
}
.affiche-lightbox.open {
  display: flex;
}
@keyframes lb-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.affiche-lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--rouge);
  color: var(--blanc);
  border: 3px solid var(--blanc);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: transform .15s;
  box-shadow: 3px 3px 0 rgba(0,0,0,.3);
}
.affiche-lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
}
.affiche-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border: 6px solid var(--blanc);
  border-radius: 16px;
  box-shadow: 0 10px 60px rgba(0,0,0,.5);
  cursor: default;
  animation: lb-zoom-in .35s cubic-bezier(.2, .8, .3, 1.1);
}
@keyframes lb-zoom-in {
  from { transform: scale(.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════════════════
   BLOC 7 — VENIR AU FESTIVAL (Map + infos)
   ══════════════════════════════════════════════════ */

/* --- Lieu hero --- */
.lieu-hero {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 14px;
  padding: 1.2rem 1.8rem;
  box-shadow: 4px 4px 0 var(--brun);
  margin-bottom: 1.5rem;
}
.lieu-hero-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  animation: lieu-bounce 2s ease-in-out infinite;
}
@keyframes lieu-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.lieu-hero-nom {
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  color: var(--rouge);
  letter-spacing: .5px;
  line-height: 1.2;
}
.lieu-hero-adresse {
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  color: #666;
  margin-top: 2px;
}

/* --- Map container --- */
.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--brun);
  box-shadow: 5px 5px 0 var(--brun);
  margin-bottom: 1.2rem;
}
#map {
  height: 400px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

/* Custom map marker */
.map-marker-wrap {
  background: none !important;
  border: none !important;
}
.map-marker-festival {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-marker-emoji {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: var(--rouge);
  border: 3px solid var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
  animation: marker-bob 2s ease-in-out infinite;
}
@keyframes marker-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.map-marker-pulse {
  position: absolute;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(217, 79, 79, .25);
  animation: marker-pulse 2s ease-out infinite;
}
@keyframes marker-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* --- Action buttons --- */
.lieu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.lieu-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 3px solid var(--brun);
  border-radius: 12px;
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  letter-spacing: .5px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--brun);
  transition: transform .12s, box-shadow .12s;
  background: var(--blanc);
  color: var(--brun);
}
.lieu-action-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brun);
}
.lieu-action-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--brun);
}
.lieu-action-icon { font-size: 1.3rem; }
.lieu-action-gmaps {
  background: #4285F4;
  color: var(--blanc);
}
.lieu-action-waze {
  background: #33ccff;
  color: var(--blanc);
}
.lieu-action-copy {
  background: var(--jaune);
  color: var(--brun);
  font-family: 'Bangers', cursive;
  font-size: 1rem;
}

/* --- Info cards grid --- */
.lieu-infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lieu-info-card {
  background: var(--blanc);
  border: 3px solid var(--brun);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 3px 3px 0 var(--brun);
  transition: transform .15s, box-shadow .15s;
}
.lieu-info-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brun);
}
.lieu-info-emoji {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.lieu-info-card h4 {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  color: var(--rouge);
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.lieu-info-card p {
  font-family: 'Fredoka', sans-serif;
  font-size: .82rem;
  color: #666;
  line-height: 1.4;
}

/* Colors per card */
.lieu-info-parking { border-top: 5px solid var(--bleu); }
.lieu-info-camping { border-top: 5px solid var(--vert); }
.lieu-info-acces { border-top: 5px solid var(--jaune); }
.lieu-info-resto { border-top: 5px solid var(--rouge); }


/* ══════════════════════════════════════════════════
   BLOC 8 — FAQ
   ══════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--blanc);
  border: 4px solid var(--brun); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--noir);
  overflow: hidden;
  transition: transform .15s;
}
.faq-item:hover { transform: translate(-2px,-2px); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.4rem; cursor: pointer;
  font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: .5px;
  background: var(--blanc); transition: background .2s;
}
.faq-question:hover { background: rgba(242,201,76,.3); }
.faq-question .arrow { transition: transform .3s; color: var(--rouge); font-size: 1.3rem; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 1.4rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.4rem 1rem; }
.faq-answer p { font-family: 'Fredoka', sans-serif; font-size: .95rem; color: #444; line-height: 1.6; }


/* ══════════════════════════════════════════════════
   BLOC 9 — CONTACT
   ══════════════════════════════════════════════════ */

/* --- Social buttons --- */
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative; z-index: 5;
}
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 4px solid var(--brun);
  position: relative; z-index: 10;
  pointer-events: auto !important;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Bangers', cursive;
  font-size: 1.15rem;
  letter-spacing: .5px;
  color: var(--blanc);
  box-shadow: 4px 4px 0 var(--brun);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
}
.contact-social-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 8px,
    rgba(255,255,255,.08) 8px, rgba(255,255,255,.08) 10px
  );
  pointer-events: none;
}
.contact-social-btn:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 7px 7px 0 var(--brun);
}
.contact-social-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--brun);
}
.contact-social-svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(1px 1px 0 rgba(0,0,0,.2));
}
.contact-social-btn span {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,.15);
}

/* Social brand colors */
.contact-social-facebook { background: #1877F2; }
.contact-social-facebook:hover { background: #0d65d9; }
.contact-social-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-social-instagram:hover { background: linear-gradient(135deg, #e08020, #d45530, #c91e38, #b91d5a, #a81580); }
.contact-social-youtube { background: #FF0000; }
.contact-social-youtube:hover { background: #cc0000; }
.contact-social-website { background: var(--bleu); }
.contact-social-website:hover { background: #5aa5b8; }

/* --- Mail + Newsletter cards --- */
.contact-mail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-mail-card {
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 4px 4px 0 var(--brun);
  transition: transform .15s, box-shadow .15s;
}
.contact-mail-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brun);
}
.contact-mail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.contact-mail-header h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.5rem;
  color: var(--rouge);
  letter-spacing: .5px;
}
.contact-mail-svg {
  width: 36px;
  height: 36px;
  color: var(--rouge);
  flex-shrink: 0;
}
.contact-mail-text {
  font-family: 'Fredoka', sans-serif;
  font-size: .92rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}
.contact-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--rouge);
  color: var(--blanc);
  border: 3px solid var(--brun);
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: .5px;
  box-shadow: 3px 3px 0 var(--brun);
  transition: transform .12s, box-shadow .12s;
}
.contact-mail-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brun);
}
.contact-mail-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--brun);
}
.contact-mail-btn svg { flex-shrink: 0; }

/* Newsletter card accent */
.contact-newsletter-card {
  border-top: 6px solid var(--vert);
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 3px solid var(--brun);
  border-radius: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  color: var(--brun);
  background: #fdf6e3;
  outline: none;
  min-width: 0;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--vert);
  background: #fff;
}
.newsletter-form input[type="email"]::placeholder {
  color: #bbb;
}
.newsletter-submit {
  padding: 12px 24px;
  background: var(--vert);
  color: var(--blanc);
  border: 3px solid var(--brun);
  border-radius: 10px;
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: .5px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--brun);
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
}
.newsletter-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brun);
}
.newsletter-submit:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--brun);
}
.newsletter-msg {
  font-family: 'Fredoka', sans-serif;
  font-size: .85rem;
  margin-top: 8px;
  min-height: 20px;
  font-weight: 600;
}
.newsletter-msg.success { color: var(--vert); }
.newsletter-msg.error { color: var(--rouge); }


/* ══════════════════════════════════════════════════
   BLOC 10 — PARTENAIRES
   ══════════════════════════════════════════════════ */
/* ── PARTENAIRES DYNAMIQUES ── */
.partenaires-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.partenaire-card {
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 4px 4px 0 var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 80px;
  max-width: 200px;
  transition: transform .2s, box-shadow .2s;
}
.partenaire-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 6px 6px 0 var(--noir);
}
.partenaire-logo {
  max-width: 100%;
  max-height: 60px;
  display: block;
}
.partenaire-nom {
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  color: var(--noir);
  text-align: center;
}
.partenaires-none {
  font-family: 'Fredoka', sans-serif;
  font-style: italic;
  color: #888;
}

/* ── INFOS PRATIQUES DYNAMIQUES ── */
.infos-pratiques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-pratique-item {
  background: var(--blanc);
  border: 4px solid var(--brun);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--noir);
  padding: 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.info-pratique-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--noir);
}
.info-pratique-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.info-pratique-content h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--rouge);
  letter-spacing: 0.5px;
}
.info-pratique-content div {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  text-align: center;
  padding: 18px 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: .8rem;
  color: #a08b6e;
  opacity: .7;
}
.site-footer .admin-link {
  color: #a08b6e;
  text-decoration: none;
  font-size: .7rem;
  margin-left: 8px;
  opacity: .5;
  transition: opacity .2s;
}
.site-footer .admin-link:hover { opacity: 1; }

/* ══════════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 50px; height: 50px;
  background: var(--rouge); color: var(--blanc);
  border: 4px solid var(--brun); border-radius: 10px;
  font-size: 1.3rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all .3s; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 var(--noir);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--noir); }


/* ══════════════════════════════════════════════════
   MINI RADIO VINTAGE BD — Flottant bas-gauche
   ══════════════════════════════════════════════════ */
@keyframes onair-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
@keyframes antenne-sway {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(4deg); }
}
.radio-widget {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* ── Le poste radio ── */
.radio-poste {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 82px;
  background: linear-gradient(180deg, #d4a843 0%, #c4922e 40%, #b07e22 100%);
  border: 3px solid var(--noir, #3c392a);
  border-radius: 14px 14px 10px 10px;
  box-shadow: 4px 4px 0 var(--noir, #3c392a);
  padding: 8px 6px 6px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
}
.radio-poste:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 6px 6px 0 var(--noir, #3c392a);
}

/* Antenne */
.radio-antenne {
  position: absolute;
  top: -22px;
  left: 18px;
  width: 3px;
  height: 24px;
  background: var(--noir, #3c392a);
  border-radius: 2px;
  transform-origin: bottom center;
  animation: antenne-sway 2.5s ease-in-out infinite;
}
.radio-antenne::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -3px;
  width: 9px;
  height: 9px;
  background: var(--rouge, #E03D3B);
  border: 2px solid var(--noir, #3c392a);
  border-radius: 50%;
}

/* Haut-parleur — grille ronde */
.radio-haut-parleur {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--noir, #3c392a);
  border: 3px solid #8a6914;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.radio-grille {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--noir, #3c392a) 0deg 8deg,
    #5a4a12 8deg 16deg
  );
  opacity: 0.7;
}

/* Cadran — texte du nom de la radio */
.radio-cadran {
  width: 100%;
  background: #fef6e4;
  border: 2px solid var(--noir, #3c392a);
  border-radius: 4px;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.radio-freq {
  font-family: 'Bangers', cursive;
  font-size: 0.55rem;
  color: var(--noir, #3c392a);
  letter-spacing: 0.5px;
  line-height: 1;
}
.radio-onair {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.42rem;
  font-weight: 700;
  color: white;
  background: #E03D3B;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  animation: onair-blink 1.2s ease-in-out infinite;
}

/* Molettes */
.radio-boutons {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.radio-molette {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8d48a, #8a6914);
  border: 2px solid var(--noir, #3c392a);
  transition: transform 0.3s;
}
.radio-poste:hover .radio-molette:first-child { transform: rotate(45deg); }
.radio-poste:hover .radio-molette:last-child  { transform: rotate(-45deg); }

/* ── Notes de musique flottantes ── */
@keyframes note-float-1 {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5) rotate(0deg); }
  15%  { opacity: 1; transform: translate(8px, -12px) scale(1) rotate(-10deg); }
  85%  { opacity: 0.8; transform: translate(25px, -55px) scale(1.1) rotate(15deg); }
  100% { opacity: 0; transform: translate(35px, -75px) scale(0.6) rotate(25deg); }
}
@keyframes note-float-2 {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5) rotate(0deg); }
  15%  { opacity: 1; transform: translate(-5px, -15px) scale(1) rotate(8deg); }
  85%  { opacity: 0.8; transform: translate(-20px, -60px) scale(1.1) rotate(-12deg); }
  100% { opacity: 0; transform: translate(-30px, -80px) scale(0.6) rotate(-20deg); }
}
@keyframes note-float-3 {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.5) rotate(0deg); }
  15%  { opacity: 1; transform: translate(15px, -10px) scale(1) rotate(5deg); }
  85%  { opacity: 0.8; transform: translate(40px, -45px) scale(1.1) rotate(-8deg); }
  100% { opacity: 0; transform: translate(50px, -65px) scale(0.6) rotate(-15deg); }
}
.radio-notes {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 50px;
  pointer-events: none;
  z-index: 20;
}
.radio-note {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
}
/* Notes visibles SEULEMENT quand la radio joue (.playing) */
.radio-widget.playing .radio-note:nth-child(1) {
  animation: note-float-1 2.2s ease-out infinite;
}
.radio-widget.playing .radio-note:nth-child(2) {
  animation: note-float-2 2.5s ease-out 0.7s infinite;
}
.radio-widget.playing .radio-note:nth-child(3) {
  animation: note-float-3 2.8s ease-out 1.4s infinite;
}
/* Haut-parleur vibre quand ça joue */
@keyframes speaker-vibe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.radio-widget.playing .radio-haut-parleur {
  animation: speaker-vibe 0.3s ease-in-out infinite;
}
.radio-widget.playing .radio-grille {
  opacity: 0.9;
}

/* ── Panneau lecteur Deezer — style BD ── */
@keyframes panel-open {
  0%   { opacity: 0; transform: translateY(20px) scale(0.7) rotate(3deg); }
  50%  { opacity: 1; transform: translateY(-5px) scale(1.03) rotate(-1deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
.radio-panel {
  background: linear-gradient(180deg, #fef6e4 0%, #f5e8c8 100%);
  border: 4px solid var(--noir, #3c392a);
  border-radius: 16px;
  box-shadow: 8px 8px 0 var(--noir, #3c392a),
              inset 0 2px 0 rgba(255,255,255,0.5);
  width: 310px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  pointer-events: none;
  transition: none;
}
.radio-widget.open .radio-panel {
  animation: panel-open 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
  pointer-events: auto;
}
.radio-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, var(--noir, #3c392a) 0%, #5a4a2a 100%);
  color: var(--jaune, #f8c80f);
  padding: 10px 16px;
  font-family: 'Bangers', cursive;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
  border-bottom: 3px solid rgba(0,0,0,0.2);
}
.radio-panel-header::before {
  content: '🎶';
  margin-right: 6px;
}
.radio-close {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  width: 26px;
  height: 26px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}
.radio-close:hover {
  transform: scale(1.2) rotate(90deg);
  background: var(--rouge, #E03D3B);
  border-color: var(--rouge, #E03D3B);
}
.radio-player {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
.radio-player[src=""] { height: 60px; }

/* Billetterie & Lieu — medium screens */
@media (max-width: 1050px) and (min-width: 769px) {
  .billets-tickets { grid-template-columns: 1fr 1fr; }
  .ticket-card:last-child { grid-column: 1 / -1; max-width: 420px; justify-self: center; }
  .lieu-infos-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablette (≤ 768px)
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .page-content { padding: 80px 12px 40px; gap: 20px; }
  .bloc { padding: 1.3rem; }

  /* Radio : cacher le poste flottant, panneau en popup centré */
  .radio-poste { display: none !important; }
  .radio-notes { display: none !important; }
  .radio-widget {
    bottom: auto; left: auto;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
  }
  .radio-widget.open {
    pointer-events: auto;
    background: rgba(0,0,0,0.5);
  }
  .radio-panel { width: min(90vw, 320px); }
  .radio-player { height: 280px; }

  /* Grémévillers : empilé */
  .gremevillers-layout { flex-direction: column; align-items: center; text-align: center; }
  .gremevillers-gauche, .gremevillers-droite { justify-content: center; }
  .gremevillers-img { max-width: 300px; }
  .asso-presents { width: 90px; }
  .edition-img { width: 72px; }

  /* Titre libre */
  .titre-dates { font-size: 2rem; }

  /* Programme : colonne unique sur tablette */
  .programme-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .prog-timeline { grid-template-columns: 1fr; gap: 20px; }
  .prog-titre-svg { width: 90%; max-width: 500px; }
  .prog-jour-svg { width: 85%; max-width: 450px; }
  .prog-artiste-wrap { height: 200px; padding: 14px 12px 24px; }
  .sticker-prog { max-width: 180px; max-height: 180px; }
  .sticker-prog-xl { max-width: 260px; max-height: 220px; }
  .prog-slot-headliner .sticker-prog { max-width: 240px; max-height: 240px; }
  .prog-slot-headliner .sticker-prog-xl { max-width: 300px; max-height: 260px; }
  .prog-slot-headliner .prog-artiste-wrap { height: 260px; }
  .prog-drawer-photo { max-height: 180px; }
  .prog-desc { font-size: 0.85rem; }
  .prog-genre-tag { font-size: 0.7rem; padding: 2px 8px; }
  .prog-heure-badge { font-size: 0.75rem; padding: 4px 10px; }

  /* Countdown */
  .countdown-value { width: 68px; height: 68px; font-size: 2.3rem; }

  /* Billetterie */
  .billets-hero { flex-direction: column; text-align: center; padding: 1.5rem; }
  .billets-accroche { font-size: 2rem; }
  .billets-baseline { margin: 10px auto 18px; }
  .billets-affiche-img { width: 200px; transform: rotate(0deg); }
  .billets-hero-right { display: flex; justify-content: center; }
  .billets-tickets { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Festival */
  .festival-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  /* Lieu */
  .lieu-hero { padding: 1rem 1.2rem; gap: 1rem; }
  .lieu-hero-nom { font-size: 1.3rem; }
  .lieu-hero-icon { font-size: 2.2rem; }
  #map { height: 320px; }
  .lieu-infos-grid { grid-template-columns: 1fr 1fr; }
  .lieu-action-btn { font-size: .9rem; padding: 8px 14px; }

  /* Contact */
  .contact-mail-section { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; }

  /* Modal carrousel */
  .modal-carousel-btn { width: 34px; height: 34px; font-size: 1rem; }
  .modal-photo { max-height: 280px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Petit mobile (≤ 480px)
   ══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .page-content { padding: 70px 8px 30px; gap: 16px; }
  .bloc { padding: 1rem; border-width: 4px; }

  .countdown { gap: 0.8rem; }
  .countdown-value { width: 54px; height: 54px; font-size: 1.7rem; }
  .countdown-labels-row span { font-size: 0.65rem; min-width: auto; width: auto; }

  /* Programme */
  .prog-timeline { gap: 14px; }
  .prog-artiste-wrap { height: 170px; padding: 10px 8px 20px; }
  .sticker-prog { max-width: 150px; max-height: 150px; }
  .sticker-prog-xl { max-width: 200px; max-height: 180px; }
  .prog-slot-headliner .prog-artiste-wrap { height: 220px; }
  .prog-slot-headliner .sticker-prog-xl { max-width: 240px; max-height: 220px; }
  .prog-nom { font-size: 1rem; }
  .prog-scene { font-size: 0.7rem; }
  .prog-drawer-content { padding: 10px; }
  .prog-drawer-photo { max-height: 150px; }
  .prog-desc { font-size: 0.8rem; line-height: 1.4; }
  .prog-link-btn { font-size: 0.8rem; padding: 6px 14px; }

  /* Titres programme */
  .prog-titre-svg { width: 95%; max-width: 350px; }
  .prog-jour-svg { width: 90%; max-width: 320px; }

  /* Festival */
  .festival-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .activite-card-top { min-height: 100px; padding: 1rem; }
  .activite-sticker { max-width: 80px; max-height: 80px; }
  .activite-desc { font-size: 1.1rem; }

  /* Billetterie */
  .billets-accroche { font-size: 1.6rem; }
  .billets-lieu { font-size: 1rem; }
  .billets-cta-main { font-size: 1.2rem; padding: 12px 24px; }
  .billets-affiche-img { width: 180px; }
  .ticket-prix { font-size: 3rem; }
  .ticket-prix-gratuit { font-size: 2.2rem; }
  .ticket-jour { font-size: 1.2rem; }

  /* Lieu */
  .lieu-hero { flex-direction: column; text-align: center; padding: 1rem; }
  .lieu-hero-nom { font-size: 1.2rem; }
  .lieu-hero-adresse { font-size: .85rem; }
  #map { height: 260px; }
  .lieu-actions { flex-direction: column; align-items: stretch; }
  .lieu-action-btn { justify-content: center; }
  .lieu-infos-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .lieu-info-card { padding: .9rem .7rem; }
  .lieu-info-emoji { font-size: 1.8rem; }
  .lieu-info-card h4 { font-size: .95rem; }
  .lieu-info-card p { font-size: .75rem; }

  /* Contact */
  .contact-social-btn { padding: 10px 18px; font-size: 1rem; }
  .contact-social-svg { width: 22px; height: 22px; }
  .contact-mail-section { grid-template-columns: 1fr; }
  .contact-mail-card { padding: 1.3rem; }
  .contact-mail-header h3 { font-size: 1.3rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-submit { width: 100%; }

  /* Modal */
  .artist-modal-header h2 { font-size: 1.2rem; }
  .artist-modal-horaire { font-size: 0.75rem; }
  .modal-photo { max-height: 220px; }
  .modal-desc-full { font-size: 0.9rem; }
  .modal-genre-tag { font-size: 0.8rem; padding: 3px 10px; }
  .modal-carousel-btn { width: 30px; height: 30px; font-size: 0.85rem; }
  .modal-audio-wrap iframe { height: 260px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Très petit mobile (≤ 360px)
   ══════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .countdown-value { width: 48px; height: 48px; font-size: 1.5rem; }
  .countdown-labels-row span { font-size: 0.6rem; }
  .prog-artiste-wrap { height: 150px; }
  .sticker-prog { max-width: 120px; max-height: 120px; }
  .prog-nom { font-size: 0.9rem; }
  .prog-titre-svg { width: 100%; max-width: 280px; }
  .prog-jour-svg { width: 95%; max-width: 260px; }
  .billets-hero { padding: 1rem; gap: 1.5rem; }
  .billets-accroche { font-size: 1.4rem; }
  .billets-baseline { font-size: .9rem; }
  .billets-cta-main { font-size: 1.1rem; padding: 10px 20px; }
  .billets-affiche-img { width: 160px; }
  .billets-star, .billets-fleur { display: none; }
  .ticket-body { padding: 16px 14px 8px; }
  .ticket-prix { font-size: 2.8rem; }
  .ticket-prix-gratuit { font-size: 2rem; }
  .lieu-infos-grid { grid-template-columns: 1fr; }
  #map { height: 220px; }
}

/* ══════════════════════════════════════════════════
   PAGE MAINTENANCE / COMPTEUR
   ══════════════════════════════════════════════════ */
/* Bandeau admin maintenance */
.admin-maint-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99998;
  background: #d94f4f;
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
  border-bottom: 3px solid #3c392a;
  align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  display: none;
}
.admin-maint-banner.show { display: flex; }
.admin-maint-link {
  padding: 4px 14px;
  background: #fff;
  color: #d94f4f;
  border-radius: 6px;
  border: 2px solid #3c392a;
  text-decoration: none;
  font-weight: 700;
  font-size: .8rem;
  transition: transform .1s;
}
.admin-maint-link:hover { transform: translate(-1px,-1px); box-shadow: 2px 2px 0 #3c392a; }

#maintenancePage { position: fixed; inset: 0; z-index: 99999; }
#maintenancePage.maint-hidden { display: none; }
.maint-bg {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: #d4b483 url('assets/elements/fondaffichevieuxpapier.png') center top / cover fixed;
  position: relative; overflow: hidden;
}
.maint-box {
  background: var(--jaune);
  border: 6px solid #3c392a;
  border-radius: 28px;
  padding: 48px 40px 40px;
  max-width: 620px; width: 90%;
  text-align: center;
  box-shadow: 8px 8px 0 #3c392a;
  position: relative; z-index: 2;
  animation: maintPop .6s ease-out;
}
@keyframes maintPop {
  from { transform: scale(.85) rotate(-2deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.maint-logo {
  width: 120px; margin-bottom: 12px;
  filter: drop-shadow(3px 3px 0 #3c392a);
  animation: logoBounce 3s ease-in-out infinite;
}
@keyframes logoBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-8px) rotate(2deg); }
  75%  { transform: translateY(-4px) rotate(-1deg); }
}
.maint-title {
  font-family: 'Bangers', cursive;
  font-size: 2.6rem;
  color: #d94f4f;
  text-shadow: 3px 3px 0 #3c392a;
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.maint-subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  color: #3c392a;
  font-weight: 600;
  margin-bottom: 28px;
}

/* Countdown */
.maint-countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 24px; flex-wrap: wrap;
}
.maint-unit {
  background: #3c392a;
  border-radius: 14px;
  padding: 14px 10px 10px;
  min-width: 80px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.25);
  border: 3px solid #1a1a1a;
}
.maint-num {
  display: block;
  font-family: 'Bangers', cursive;
  font-size: 2.8rem;
  color: var(--jaune);
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,.4);
}
.maint-label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: .72rem;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.maint-sep {
  font-family: 'Bangers', cursive;
  font-size: 2.4rem;
  color: #3c392a;
  padding: 0 2px;
}

.maint-date-badge {
  display: inline-block;
  background: #72bbc9;
  color: #fff;
  font-family: 'Bangers', cursive;
  font-size: 1.15rem;
  letter-spacing: 1px;
  padding: 8px 24px;
  border-radius: 30px;
  border: 3px solid #3c392a;
  box-shadow: 3px 3px 0 #3c392a;
  margin-bottom: 22px;
}

/* Socials */
.maint-socials {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.maint-social {
  padding: 8px 18px;
  border-radius: 10px;
  border: 3px solid #3c392a;
  background: #fffdf5;
  color: #3c392a;
  font-family: 'Fredoka', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 2px 2px 0 #3c392a;
  transition: transform .15s, box-shadow .15s;
}
.maint-social:hover {
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 #3c392a;
}

/* Floating deco flowers */
.maint-deco {
  position: absolute; opacity: .35; pointer-events: none;
  z-index: 1;
}
.maint-deco-1 { width: 120px; top: 5%; left: 4%; animation: maintFloat 6s ease-in-out infinite; }
.maint-deco-2 { width: 100px; bottom: 8%; right: 5%; animation: maintFloat 7s ease-in-out infinite .5s; }
.maint-deco-3 { width: 90px; top: 10%; right: 8%; animation: maintFloat 5s ease-in-out infinite 1s; }
.maint-deco-4 { width: 110px; bottom: 12%; left: 6%; animation: maintFloat 8s ease-in-out infinite 1.5s; }
@keyframes maintFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

/* Responsive maintenance */
@media (max-width: 520px) {
  .maint-box { padding: 32px 20px 28px; }
  .maint-title { font-size: 1.8rem; }
  .maint-subtitle { font-size: .92rem; }
  .maint-unit { min-width: 62px; padding: 10px 6px 8px; }
  .maint-num { font-size: 2rem; }
  .maint-sep { font-size: 1.6rem; }
  .maint-date-badge { font-size: .95rem; padding: 6px 16px; }
  .maint-deco { display: none; }
}


/* ══════════════════════════════════════════════════
   ANIMATIONS D'ENTRÉE AU SCROLL
   ══════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.4s ease-out,
              transform 0.4s ease-out;
}
.scroll-reveal.reveal-left {
  transform: translateX(-30px);
}
.scroll-reveal.reveal-right {
  transform: translateX(30px);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Désactiver les animations si l'utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ══════════════════════════════════════════════════
   BOUTONS DE PARTAGE
   ══════════════════════════════════════════════════ */
.share-section {
  text-align: center;
  padding: 40px 20px 50px;
  max-width: 700px;
  margin: 0 auto;
}
.share-title {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  color: #3c392a;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.share-subtitle {
  font-size: 1rem;
  color: #6b5e4b;
  margin-bottom: 20px;
}
.share-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 3px solid #3c392a;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 4px 4px 0px #3c392a;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.share-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #3c392a;
}
.share-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px #3c392a;
}
.share-facebook { background: #1877F2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25D366; color: #fff; }
.share-copy { background: #f8c80f; color: #3c392a; }

/* Toast copié */
.share-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #3c392a;
  color: #f8c80f;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 3px solid #f8c80f;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}
.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 520px) {
  .share-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .share-btn span { display: none; }
  .share-btn svg { width: 24px; height: 24px; }
  .share-title { font-size: 1.7rem; }
}
