:root{
  --navy:#191935;
  --corail:#E35D4F;
  --corail-dark:#c94a3d;
  --yellow:#F7C91E;
  --turquoise:#21B2B2;
  --violet:#934996;
  --cream:#FFF6DE;
  --cream-deep:#FFEFC6;
  --mint:#BDDDC0;
  --ink:#191935;
  --radius-lg: 32px;
  --radius-md: 20px;

  /* ---- Tokens de thème (clair par défaut) ---- */
  --bg:var(--cream);
  --bg-soft:var(--cream-deep);
  --text:var(--navy);
  --surface-glass-strong: rgba(255,255,255,.72);
  --surface-glass: rgba(255,255,255,.45);
  --glass-border: rgba(255,255,255,.65);
  --glass-border-soft: rgba(25,25,53,.09);
  --nav-bg: rgba(255,246,222,.72);
  --shadow: 0 12px 30px rgba(25,25,53,0.15);
  --shadow-lg: 0 26px 60px rgba(25,25,53,.22);
  --ambient-opacity: .30;
  --overlay-strong: linear-gradient(155deg, rgba(12,12,30,.90) 0%, rgba(25,25,53,.62) 55%, rgba(227,93,79,.38) 100%);
}

/* Respecte le thème système si l'utilisateur n'a rien choisi explicitement */
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#0b0b1d;
    --bg-soft:#12122a;
    --text:var(--cream);
    --surface-glass-strong: rgba(22,22,45,.68);
    --surface-glass: rgba(255,246,222,.07);
    --glass-border: rgba(255,246,222,.15);
    --glass-border-soft: rgba(255,246,222,.12);
    --nav-bg: rgba(9,9,22,.68);
    --shadow: 0 14px 34px rgba(0,0,0,.5);
    --shadow-lg: 0 28px 64px rgba(0,0,0,.6);
    --ambient-opacity: .45;
    --overlay-strong: linear-gradient(155deg, rgba(5,5,14,.94) 0%, rgba(11,11,29,.68) 55%, rgba(227,93,79,.32) 100%);
  }
}
/* Bascule manuelle (bouton de thème), prioritaire dans les deux sens */
:root[data-theme="dark"]{
  --bg:#0b0b1d;
  --bg-soft:#12122a;
  --text:var(--cream);
  --surface-glass-strong: rgba(22,22,45,.68);
  --surface-glass: rgba(255,246,222,.07);
  --glass-border: rgba(255,246,222,.15);
  --glass-border-soft: rgba(255,246,222,.12);
  --nav-bg: rgba(9,9,22,.68);
  --shadow: 0 14px 34px rgba(0,0,0,.5);
  --shadow-lg: 0 28px 64px rgba(0,0,0,.6);
  --ambient-opacity: .45;
  --overlay-strong: linear-gradient(155deg, rgba(5,5,14,.94) 0%, rgba(11,11,29,.68) 55%, rgba(227,93,79,.32) 100%);
}
:root[data-theme="light"]{
  --bg:var(--cream);
  --bg-soft:var(--cream-deep);
  --text:var(--navy);
  --surface-glass-strong: rgba(255,255,255,.72);
  --surface-glass: rgba(255,255,255,.45);
  --glass-border: rgba(255,255,255,.65);
  --glass-border-soft: rgba(25,25,53,.09);
  --nav-bg: rgba(255,246,222,.72);
  --shadow: 0 12px 30px rgba(25,25,53,0.15);
  --shadow-lg: 0 26px 60px rgba(25,25,53,.22);
  --ambient-opacity: .30;
  --overlay-strong: linear-gradient(155deg, rgba(12,12,30,.90) 0%, rgba(25,25,53,.62) 55%, rgba(227,93,79,.38) 100%);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Nunito', sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  position:relative;
  transition:background .4s ease, color .4s ease;
}
/* Halo de couleur ambiant, fixe, qui traverse les surfaces vitrées */
body::before, body::after{
  content:"";
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  z-index:-1;
  opacity:var(--ambient-opacity);
  pointer-events:none;
  transition:opacity .4s ease;
}
body::before{ width:640px; height:640px; background:var(--turquoise); top:-220px; right:-220px; }
body::after{ width:600px; height:600px; background:var(--corail); bottom:-240px; left:-220px; }

h1,h2,h3,h4,.font-display{
  font-family:'Baloo 2', 'Nunito', sans-serif;
  line-height:1.05;
  margin:0;
}
p{ line-height:1.6; }
a{ color:inherit; }
img{ max-width:100%; display:block; }
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
section{ position:relative; }
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Baloo 2', sans-serif;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.85rem;
  padding:6px 16px;
  border-radius:999px;
  background:rgba(25,25,53,0.06);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:'Baloo 2', sans-serif;
  font-weight:700;
  font-size:1.02rem;
  padding:15px 30px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, background .3s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(135deg, #ff8a72, var(--corail) 55%, var(--corail-dark));
  color:#fff;
  box-shadow:0 12px 26px rgba(227,93,79,0.45);
}
.btn-primary:hover{ box-shadow:0 16px 34px rgba(227,93,79,0.55); }
.btn-outline{
  background:var(--surface-glass);
  backdrop-filter:blur(8px);
  border:2px solid currentColor;
  color:var(--text);
}
.btn-outline.on-dark{ color:var(--cream); }
.btn-block{ width:100%; }

/* ---------- BOUTON DE THÈME (clair / sombre) ---------- */
.theme-toggle{
  width:42px; height:42px;
  border-radius:50%;
  border:1.5px solid var(--glass-border-soft);
  background:var(--surface-glass);
  backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  color:var(--text);
  flex:none;
  transition:transform .2s ease, background .2s ease;
}
.theme-toggle:hover{ transform:translateY(-2px) rotate(-8deg); }
.theme-toggle svg{ width:19px; height:19px; }
.theme-toggle .icon-sun{ display:none; }
:root[data-theme="dark"] .theme-toggle .icon-moon{ display:none; }
:root[data-theme="dark"] .theme-toggle .icon-sun{ display:block; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .theme-toggle .icon-moon{ display:none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-sun{ display:block; }
}

/* ---------- NAV ---------- */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--nav-bg);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-bottom:1px solid var(--glass-border-soft);
  transition:background .4s ease, border-color .4s ease;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 24px;
  max-width:1180px;
  margin:0 auto;
}
.nav-logo img{ height:34px; width:auto; }
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
  margin:0; padding:0;
  font-family:'Baloo 2', sans-serif;
  font-weight:600;
}
.nav-links a{ text-decoration:none; opacity:.85; padding-bottom:4px; border-bottom:2px solid transparent; }
.nav-links a:hover{ opacity:1; }
.nav-links a.active{ opacity:1; border-bottom-color:var(--corail); }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-burger span{
  width:24px; height:3px; background:var(--text); border-radius:2px;
}
.mobile-panel{
  display:none;
  flex-direction:column;
  gap:18px;
  padding:20px 24px 28px;
  background:var(--bg);
  border-bottom:1px solid var(--glass-border-soft);
  font-family:'Baloo 2', sans-serif;
  font-weight:600;
}
.mobile-panel a{ text-decoration:none; font-size:1.05rem; }
.mobile-panel a.active{ color:var(--corail-dark); }
.mobile-panel.open{ display:flex; }

@media (max-width:860px){
  .nav-links, .nav-cta .btn-outline{ display:none; }
  .nav-burger{ display:flex; }
}

/* ---------- HERO (page d'accueil) ---------- */
.hero{
  background:var(--navy) center/cover no-repeat;
  color:var(--cream);
  padding:70px 0 90px;
  position:relative;
  overflow:hidden;
  animation:kenburns 26s ease-in-out infinite alternate;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:var(--overlay-strong);
}
@keyframes kenburns{
  0%{ background-size:104%; background-position:50% 45%; }
  100%{ background-size:118%; background-position:50% 55%; }
}
.blob{
  position:absolute;
  border-radius:50%;
  opacity:.9;
  mix-blend-mode:screen;
}
.hero .blob-1{ width:420px; height:420px; background:var(--violet); top:-160px; left:-140px; opacity:.55; }
.hero .blob-2{ width:320px; height:320px; background:var(--turquoise); bottom:-140px; right:-100px; opacity:.35; }
.hero .blob-3{ width:120px; height:120px; background:var(--yellow); top:18%; right:8%; opacity:.5; border-radius:38% 62% 55% 45% / 45% 40% 60% 55%; }
.hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.hero-logo{ width:min(560px, 82vw); margin:0 auto; filter:drop-shadow(0 18px 30px rgba(0,0,0,.35)); }
.hero-tagline{
  font-size:clamp(1.05rem, 2vw, 1.35rem);
  max-width:640px;
  opacity:.95;
  font-weight:600;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:4px;
}
.hero-meta .pill{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,246,222,0.12);
  backdrop-filter:blur(8px);
  border:1.5px solid rgba(255,246,222,0.4);
  padding:9px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
}
.pill-icon{
  width:16px; height:16px;
  flex:none;
  fill:currentColor;
  opacity:.9;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
  margin-top:12px;
}
.hero-note{
  font-size:.85rem;
  opacity:.7;
  margin-top:6px;
}

/* ---------- BANDE PHOTOS (ambiance, page d'accueil) ---------- */
.photo-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-top:-56px;
  position:relative;
  z-index:5;
}
.photo-strip figure{ margin:0; overflow:hidden; border-radius:20px; box-shadow:var(--shadow-lg); border:1px solid var(--glass-border); }
.photo-strip img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  transition:transform .5s ease;
  display:block;
}
.photo-strip figure:hover img{ transform:scale(1.08) rotate(-1deg); }

@media (max-width:760px){
  .photo-strip{ grid-template-columns:1fr 1fr; margin-top:-40px; }
}

/* ---------- PAGE HEADER (pages internes) ---------- */
.page-header{
  background:var(--navy) center/cover no-repeat;
  color:var(--cream);
  padding:64px 0 74px;
  position:relative;
  overflow:hidden;
  animation:kenburns 30s ease-in-out infinite alternate;
}
.page-header::before{
  content:"";
  position:absolute; inset:0;
  background:var(--overlay-strong);
}
.page-header .blob{ opacity:.4; }
.page-header .blob-a{ width:260px; height:260px; background:var(--violet); top:-120px; left:-100px; }
.page-header .blob-b{ width:200px; height:200px; background:var(--turquoise); bottom:-110px; right:-70px; opacity:.3; }
.page-header-inner{ position:relative; z-index:2; }
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.9rem;
  font-weight:700;
  opacity:.7;
  margin-bottom:16px;
  font-family:'Baloo 2', sans-serif;
}
.breadcrumb a{ text-decoration:none; }
.breadcrumb a:hover{ opacity:.8; }
.page-title{
  font-size:clamp(2rem, 4vw, 3rem);
  margin-top:6px;
}
.page-subtitle{
  margin-top:16px;
  max-width:640px;
  font-size:1.1rem;
  opacity:.88;
}

/* ---------- SECTIONS GENERIQUES ---------- */
.section{ padding:96px 0; }
.section-head{
  max-width:680px;
  margin:0 0 44px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{
  font-size:clamp(1.8rem, 3.4vw, 2.6rem);
  margin-top:14px;
}
.lede{
  font-size:1.15rem;
  max-width:760px;
  margin-top:16px;
}
.eyebrow.corail{ background:rgba(227,93,79,0.14); color:var(--corail-dark); }
.eyebrow.turquoise{ background:rgba(33,178,178,0.16); color:#147373; }
.eyebrow.violet{ background:rgba(147,73,150,0.16); color:var(--violet); }
.eyebrow.yellow{ background:rgba(247,201,30,0.22); color:#8a6d05; }
.eyebrow.on-dark{ background:rgba(255,246,222,0.14); color:var(--cream); }

/* ---------- PILIERS (concept) ---------- */
.pillars{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.pillar-card{
  background:var(--surface-glass-strong);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  padding:28px 24px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.pillar-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.pillar-card::before{
  content:"";
  position:absolute; top:-30px; right:-30px;
  width:90px; height:90px; border-radius:50%;
  opacity:.2;
  filter:blur(2px);
}
.pillar-card.joie::before{ background:var(--corail); }
.pillar-card.complicite::before{ background:var(--turquoise); }
.pillar-card.partage::before{ background:var(--yellow); }
.pillar-card.convivialite::before{ background:var(--violet); }
.pillar-num{
  font-family:'Baloo 2', sans-serif;
  font-weight:800;
  font-size:1.5rem;
  width:46px; height:46px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  color:#fff;
}
.pillar-card.joie .pillar-num{ background:var(--corail); }
.pillar-card.complicite .pillar-num{ background:var(--turquoise); }
.pillar-card.partage .pillar-num{ background:var(--yellow); color:var(--navy); }
.pillar-card.convivialite .pillar-num{ background:var(--violet); }
.pillar-card h3{ font-size:1.25rem; margin-bottom:8px; }
.pillar-card p{ font-size:.96rem; opacity:.8; margin:0; }

@media (max-width:900px){
  .pillars{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .pillars{ grid-template-columns:1fr; }
}

/* ---------- INFOS PRATIQUES ---------- */
.infos{
  background:var(--navy);
  color:var(--cream);
}
.infos-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}
.infos-card{
  background:rgba(255,246,222,0.07);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,246,222,0.16);
  border-radius:var(--radius-lg);
  padding:36px;
}
.infos-list{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:22px;
}
.infos-list li{
  display:flex; gap:16px; align-items:flex-start;
}
.infos-icon{
  flex:none;
  width:42px; height:42px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  background:var(--corail);
}
.infos-icon svg{ width:20px; height:20px; }
.infos-list li:nth-child(2) .infos-icon{ background:var(--turquoise); }
.infos-list li:nth-child(3) .infos-icon{ background:var(--yellow); color:var(--navy); }
.infos-list li:nth-child(4) .infos-icon{ background:var(--violet); }
.infos-list li:nth-child(5) .infos-icon{ background:var(--corail-dark); }
.infos-list h4{ font-family:'Baloo 2',sans-serif; font-size:1.05rem; margin-bottom:4px; }
.infos-list p{ margin:0; opacity:.78; font-size:.95rem; }

.gallery-stack{
  display:flex;
  gap:18px;
  justify-content:center;
}
.gallery-stack img{
  border-radius:18px;
  box-shadow:0 20px 45px rgba(0,0,0,0.4);
  width:48%;
  transform:rotate(-3deg);
}
.gallery-stack img:last-child{ transform:rotate(3deg); margin-top:26px; }

@media (max-width:900px){
  .infos-grid{ grid-template-columns:1fr; }
  .gallery-stack{ margin-top:10px; }
}

/* ---------- BILLETTERIE ---------- */
.billetterie{ background:var(--bg-soft); transition:background .4s ease; }
.tickets-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:10px;
}
.ticket-card{
  background:var(--surface-glass-strong);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:16px;
  border:3px solid var(--glass-border);
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.ticket-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.ticket-card.featured{ border-color:var(--corail); }
.ticket-badge{
  position:absolute; top:-14px; right:24px;
  background:linear-gradient(135deg,#ff8a72,var(--corail));
  color:#fff;
  font-family:'Baloo 2',sans-serif; font-weight:700;
  font-size:.78rem;
  padding:6px 14px; border-radius:999px;
  box-shadow:0 6px 14px rgba(227,93,79,0.4);
}
.ticket-name{ font-size:1.3rem; font-family:'Baloo 2',sans-serif; font-weight:700; }
.ticket-price{
  font-family:'Baloo 2',sans-serif;
  font-size:2.3rem;
  font-weight:800;
  background:linear-gradient(135deg,var(--corail),var(--violet));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.ticket-price span{ font-size:1rem; font-weight:600; color:var(--text); opacity:.6; -webkit-text-fill-color:var(--text); }
.ticket-desc{ font-size:.92rem; opacity:.78; margin:0; min-height:44px; }
.ticket-features{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:10px;
  font-size:.92rem;
}
.ticket-features li{ display:flex; gap:8px; align-items:flex-start; }
.ticket-features li::before{
  content:"✓";
  color:var(--turquoise);
  font-weight:800;
}

.widget-wrap{
  margin-top:60px;
  background:var(--surface-glass-strong);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:36px;
}
.widget-head{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}
.widget-head h3{ font-size:1.3rem; }
.billetweb-slot{
  border:2px dashed var(--glass-border-soft);
  border-radius:18px;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(127,127,127,0.04);
}
.billetweb-slot .placeholder{
  text-align:center;
  max-width:460px;
  padding:30px;
  opacity:.72;
}
.billetweb-slot .placeholder strong{ opacity:1; }
.billetweb-slot iframe{ width:100%; height:600px; border:none; border-radius:14px; }

@media (max-width:900px){
  .tickets-grid{ grid-template-columns:1fr; }
}

/* ---------- FAQ ---------- */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:800px;
}
.faq-item{
  background:var(--surface-glass-strong);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  cursor:pointer;
  padding:20px 24px;
  font-family:'Baloo 2', sans-serif;
  font-weight:700;
  font-size:1.02rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  color:var(--text);
}
.faq-q .plus{
  flex:none;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--bg-soft);
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
  transition:transform .25s ease;
}
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 24px;
}
.faq-item.open .faq-a{ padding-bottom:22px; }
.faq-a p{ margin:0; opacity:.8; font-size:.96rem; }

/* ---------- HUB (cartes de navigation, page d'accueil) ---------- */
.hub-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
  gap:22px;
}
.hub-card{
  background:var(--surface-glass-strong);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  padding:30px 26px;
  box-shadow:var(--shadow);
  text-decoration:none;
  color:var(--text);
  display:flex;
  flex-direction:column;
  gap:14px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.hub-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.hub-icon{
  width:48px; height:48px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.hub-icon svg{ width:22px; height:22px; }
.hub-card.c-concept .hub-icon{ background:linear-gradient(135deg,#ff8a72,var(--corail)); }
.hub-card.c-programme .hub-icon{ background:linear-gradient(135deg,#33335f,var(--navy)); }
.hub-card.c-infos .hub-icon{ background:linear-gradient(135deg,#3fd1d1,var(--turquoise)); }
.hub-card.c-billetterie .hub-icon{ background:linear-gradient(135deg,#ffe066,var(--yellow)); color:var(--navy); }
.hub-card.c-faq .hub-icon{ background:linear-gradient(135deg,#b465b8,var(--violet)); }
.hub-card h3{ font-size:1.15rem; }
.hub-card p{ font-size:.92rem; opacity:.78; margin:0; flex:1; }
.hub-link{
  display:flex; align-items:center; gap:6px;
  font-family:'Baloo 2', sans-serif;
  font-weight:700; font-size:.92rem;
  color:var(--corail-dark);
}
.hub-link svg{ width:14px; height:14px; fill:currentColor; transition:transform .2s ease; }
.hub-card:hover .hub-link svg{ transform:translateX(4px); }

@media (max-width:900px){
  .hub-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .hub-grid{ grid-template-columns:1fr; }
}

/* ---------- CTA BANNER (bandeau d'appel à l'action, pages internes) ---------- */
.cta-banner{
  background:linear-gradient(120deg,#ff8a72,var(--corail) 60%,var(--corail-dark));
  color:#fff;
  border-radius:var(--radius-lg);
  padding:48px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.cta-banner.has-photo{ background-size:cover; background-position:center; }
.cta-banner.has-photo::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(227,93,79,.92), rgba(147,73,150,.55));
}
.cta-banner > *{ position:relative; z-index:1; }
.cta-banner h3{ font-size:1.6rem; }
.cta-banner p{ opacity:.92; margin-top:6px; max-width:420px; }
.cta-banner .btn-primary{ background:var(--navy); box-shadow:0 10px 24px rgba(0,0,0,.35); }
.cta-banner .btn-primary:hover{ background:#0f0f24; }
.cta-banner .btn-outline{ background:rgba(255,255,255,.12); }

/* ---------- NOTE BOX (mentions "à confirmer") ---------- */
.note-box{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:rgba(33,178,178,0.14);
  backdrop-filter:blur(12px);
  border:1px solid rgba(33,178,178,0.3);
  border-radius:16px;
  padding:20px 24px;
  margin-top:28px;
}
.note-box .note-icon{
  flex:none;
  width:30px; height:30px;
  border-radius:50%;
  background:var(--turquoise);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.note-box .note-icon svg{ width:16px; height:16px; }
.note-box p{ margin:0; font-size:.92rem; }
.note-box p strong{ display:block; font-family:'Baloo 2', sans-serif; font-size:.98rem; margin-bottom:2px; }
.note-box.on-dark{ background:rgba(255,246,222,0.08); border-color:rgba(255,246,222,0.2); }

/* ---------- PROGRAMME (timeline de la journée) ---------- */
.timeline{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.timeline-step{
  background:var(--surface-glass-strong);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  padding:26px 24px;
  box-shadow:var(--shadow);
  border-top:4px solid var(--corail);
  transition:transform .25s ease, box-shadow .25s ease;
}
.timeline-step:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.timeline-step:nth-child(2){ border-top-color:var(--turquoise); }
.timeline-step:nth-child(3){ border-top-color:var(--yellow); }
.timeline-step:nth-child(4){ border-top-color:var(--corail); }
.timeline-step:nth-child(5){ border-top-color:var(--turquoise); }
.timeline-step:nth-child(6){ border-top-color:var(--violet); }
.timeline-step:nth-child(7){ border-top-color:var(--yellow); }
.timeline-icon{
  width:44px; height:44px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  margin-bottom:14px;
}
.timeline-icon svg{ width:20px; height:20px; }
.timeline-step:nth-child(1) .timeline-icon{ background:var(--corail); }
.timeline-step:nth-child(2) .timeline-icon{ background:var(--turquoise); }
.timeline-step:nth-child(3) .timeline-icon{ background:var(--yellow); color:var(--navy); }
.timeline-step:nth-child(4) .timeline-icon{ background:var(--corail); }
.timeline-step:nth-child(6) .timeline-icon{ background:var(--violet); }
.timeline-step:nth-child(7) .timeline-icon{ background:var(--yellow); color:var(--navy); }
.timeline-time{
  display:inline-block;
  font-family:'Baloo 2', sans-serif;
  font-weight:800;
  font-size:.82rem;
  background:var(--navy);
  color:var(--cream);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
.timeline-step h3{ font-size:1.12rem; margin-bottom:8px; }
.timeline-step p{ font-size:.92rem; opacity:.8; margin:0; }
.timeline-step a{ text-decoration:underline; font-weight:700; }

/* Variante avec photo (cartes illustrées de la timeline) */
.timeline-step.has-photo{
  padding:0;
  overflow:hidden;
  border-top:none;
}
.timeline-step.has-photo.wide{
  grid-column:span 2;
}
.timeline-step.has-photo .timeline-photo{
  height:150px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.timeline-step.has-photo.wide .timeline-photo{
  height:190px;
}
.timeline-step.has-photo .timeline-photo::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(9,9,26,0) 35%, rgba(9,9,26,.7));
}
.timeline-step.has-photo .timeline-time.on-photo{
  position:absolute; top:16px; left:16px; z-index:2; margin:0;
}
.timeline-step.has-photo .timeline-body{ padding:22px 26px 26px; }

@media (max-width:900px){
  .timeline{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .timeline{ grid-template-columns:1fr; }
  .timeline-step.has-photo.wide{ grid-column:span 1; }
}

/* ---------- CRAZY BALLON (temps fort, palette dédiée et cloisonnée) ---------- */
.cb-section{
  background:var(--navy);
  color:var(--cream);
  --cb-orange:#E8792B;
  --cb-blue:#2D6CDF;
}
.cb-banner{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,246,222,0.18);
  margin-bottom:8px;
}
.cb-facts{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 40px;
}
.cb-facts span{
  background:rgba(255,246,222,0.08);
  backdrop-filter:blur(8px);
  border:1.5px solid rgba(255,246,222,0.25);
  padding:9px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:.92rem;
}
.cb-teams{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:40px;
  font-weight:700;
  font-size:.92rem;
}
.cb-teams .dot{
  width:14px; height:14px;
  border-radius:50%;
  display:inline-block;
}
.cb-teams .dot.violet{ background:var(--violet); }
.cb-teams .dot.jaune{ background:var(--yellow); }
.cb-teams .dot.orange{ background:var(--cb-orange); }
.cb-teams .dot.bleu{ background:var(--cb-blue); }
.cb-steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.cb-step{
  background:rgba(255,246,222,0.06);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,246,222,0.15);
  border-radius:var(--radius-md);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-lg);
  transition:transform .25s ease;
}
.cb-step:hover{ transform:translateY(-4px); }
.cb-step-photo{
  height:170px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.cb-step-photo::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(9,9,26,0) 40%, rgba(9,9,26,.6));
}
.cb-step-body{ padding:34px 22px 24px; position:relative; }
.cb-step-num{
  font-family:'Baloo 2', sans-serif;
  font-weight:800;
  font-size:1.1rem;
  width:38px; height:38px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:absolute;
  top:-19px; left:20px;
  color:var(--navy);
  box-shadow:0 8px 18px rgba(0,0,0,.4);
}
.cb-step:nth-child(1) .cb-step-num{ background:var(--yellow); }
.cb-step:nth-child(2) .cb-step-num{ background:var(--cb-orange); color:#fff; }
.cb-step:nth-child(3) .cb-step-num{ background:var(--cb-blue); color:#fff; }
.cb-step:nth-child(4) .cb-step-num{ background:var(--corail); color:#fff; }
.cb-step:nth-child(5) .cb-step-num{ background:var(--violet); color:#fff; }
.cb-step:nth-child(6) .cb-step-num{ background:var(--yellow); }
.cb-step h3{ font-size:1.05rem; margin-bottom:8px; }
.cb-step p{ font-size:.9rem; opacity:.82; margin:0; }

@media (max-width:900px){
  .cb-steps{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .cb-steps{ grid-template-columns:1fr; }
  .cb-banner{ height:180px; }
}

/* ---------- FOOTER ---------- */
footer{
  background:var(--navy);
  color:var(--cream);
  padding:60px 0 30px;
}
.footer-top{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,246,222,0.15);
}
.footer-logo img{ height:32px; margin-bottom:14px; }
.footer-cols{
  display:flex;
  gap:60px;
  flex-wrap:wrap;
}
.footer-col h4{
  font-family:'Baloo 2',sans-serif;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  opacity:.6;
  margin-bottom:14px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ text-decoration:none; opacity:.85; font-weight:600; }
.footer-col a:hover{ opacity:1; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding-top:24px;
  font-size:.85rem;
  opacity:.6;
}
.footer-bottom a{ color:inherit; text-decoration:underline; }
.footer-bottom a:hover{ opacity:.8; }
.social-row{ display:flex; gap:12px; margin-top:16px; }
.social-row a{
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,246,222,0.1);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-weight:700;
  transition:background .2s ease, transform .2s ease;
}
.social-row a:hover{ background:rgba(255,246,222,0.2); transform:translateY(-2px); }
.social-row a svg{ display:block; }
.footer-col .wa-badge{
  display:inline-flex; align-items:center; justify-content:center;
  vertical-align:middle;
  margin-left:6px;
  opacity:.75;
}
.footer-col .wa-badge:hover{ opacity:1; }
.footer-col .wa-badge svg{ display:block; }

/* Le fade-in n'est activé que si le JS a bien démarré (voir script en tête
   de <body>) : sans JS, ou si un bloqueur empêche l'observer de tourner,
   tout le contenu reste visible par défaut. */
html.has-js .reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
html.has-js .reveal.visible{ opacity:1; transform:translateY(0); }
