:root{
  --pink:#ff58b9; --teal:#00e6ff; --yellow:#ffe347;
  --ink:#0b0e13; --ink-2:#1b202c; --text:#eaf1ff;
  --radius:18px; --maxw:1200px; --shadow:0 14px 34px rgba(0,0,0,.18);
}
*{box-sizing:border-box}
body{margin:0; font-family:Poppins, ui-sans-serif, system-ui; background:linear-gradient(135deg,#161922,#0b0e13); color:var(--text); line-height:1.6}
.container{max-width:var(--maxw); margin:0 auto; padding:0 22px}

/* Header / Nav */
header.nav{position:sticky; top:0; z-index:1000; background:rgba(0,0,0,.28); backdrop-filter: blur(8px); border-bottom:1px solid rgba(255,255,255,.06)}
.navbar{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0}
.brand{display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none; font-weight:900}
.brand img{width:40px; height:40px}
.links{display:flex; gap:18px; align-items:center}
.links a{color:var(--yellow); font-weight:900; letter-spacing:.04em; padding:.6rem .9rem; border-radius:10px; text-decoration:none; display:inline-flex; align-items:center; justify-content:center}
.links a:hover, .links a.active{background:rgba(255,227,71,.16)}
button.burger{display:none; background:none; border:0; color:var(--yellow); font-size:1.8rem; line-height:1; padding:.2rem .4rem; cursor:pointer}
.mobile-panel{display:none; position:fixed; inset:64px 12px auto 12px; background:#111522; border:1px solid rgba(255,255,255,.08); border-radius:14px; box-shadow:0 20px 40px rgba(0,0,0,.35); padding:8px; z-index:2000}
.mobile-panel a{display:flex; align-items:center; justify-content:center; color:#ffe875; padding:12px; border-radius:10px; font-weight:900; letter-spacing:.04em; text-decoration:none}
.mobile-panel a:hover{background:rgba(255,223,0,.15)}
.mobile-panel.show{display:block}
/* DON sticker sizes */
.links 
.mobile-panel 

@media (max-width: 920px){
  .links{display:none}
  button.burger{display:block}
}

/* Marquee */
.marquee{overflow:hidden;background:#111522;border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}
.marquee .track{display:flex;gap:40px;white-space:nowrap;padding:12px 0;animation:scrollX 24s linear infinite;justify-content:center}
.marquee .item{font-weight:900;letter-spacing:.06em;color:var(--yellow)}
@keyframes scrollX{from{transform:translateX(0)} to{transform:translateX(-50%)}}

/* Hero */
.hero{position:relative; min-height:76vh; display:flex; align-items:center; text-align:center; overflow:hidden}
.hero .poster{position:absolute; inset:0; background:url('assets/hero.jpg') center/cover no-repeat; opacity:.18; mix-blend:screen; pointer-events:none}
.hero .inner{position:relative; z-index:2; width:100%; display:flex; flex-direction:column; align-items:center; justify-content:center}
.hero .logo img{width:min(420px,62vw)}
.hero .tag{display:inline-block; margin:10px 0 18px; background:var(--yellow); color:#111; font-weight:900; padding:.5rem .9rem; border-radius:999px; letter-spacing:.06em}
.hero .cta{display:flex; justify-content:center; gap:14px; margin-top:12px}
.btn{display:inline-block; font-weight:900; border-radius:16px; padding:.9rem 1.2rem; text-decoration:none}
.btn.primary{background:var(--yellow); color:#111}
.btn.secondary{background:rgba(255,255,255,.16); color:#fff; border:2px solid rgba(255,255,255,.3)}

@media (max-width: 768px){
  .hero .poster{background:url('assets/hero-mobile.png') center/cover no-repeat; opacity:1; mix-blend-mode:normal}
  .hero .inner{background:rgba(0,0,0,.45); padding:30px 12px}
  .hero .logo img{max-width:280px}
  .hero .cta{flex-direction:column}
  .hero .tag{background:none; color:var(--yellow); padding:0}
}

/* Sections */
.section{padding:90px 0}
.title{display:inline-block; background:rgba(0,230,255,.95); padding:14px 20px; border-radius:18px; color:#111; font-weight:900; font-size:clamp(26px,4vw,36px)}
.center{text-align:center}

/* Cards & grids */
.grid{display:grid; gap:24px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
@media (max-width: 900px){ .grid.cols-3{grid-template-columns:1fr} }
.card{background:#111522; border:1px solid rgba(255,255,255,.06); border-radius:18px; box-shadow:var(--shadow); overflow:hidden}

/* Tickets */
.tickets{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:16px}
@media (max-width: 900px){ .tickets{grid-template-columns:1fr} }
.ticket{position:relative; background:#111522; border:1px solid rgba(255,255,255,.06); border-radius:18px; box-shadow:var(--shadow); overflow:hidden}
.ticket .cap{padding:18px}
.ticket h3{margin:.2rem 0 .2rem; font-size:1.6rem}
.ticket .price{font-size:2rem; font-weight:900; color:var(--yellow)}
.ticket .desc{color:#c6cfda}
.ticket .actions{display:flex; gap:10px; margin-top:12px}
.ticket .actions .btn{flex:1; text-align:center}
.ticket.soldout::after{content:""; position:absolute; right:-10px; top:6px; width:160px; height:160px; background:url('assets/soldout.png') center/contain no-repeat; transform: rotate(-18deg); opacity:.95; pointer-events:none}
.ticket .badge{position:absolute; top:8px; right:8px; width:80px; pointer-events:none}

/* Footer */
footer{padding:50px 0; color:#bcd; text-align:center; border-top:1px solid rgba(255,255,255,.06)}
footer img{width:46px}

/* Centered primary nav and 'Plus' dropdown */
.navbar{gap:16px}
.links.primary{display:flex; align-items:center; gap:18px; margin-left:auto; margin-right:auto}
.links.more{position:relative; display:flex; align-items:center}
.more-btn{font-size:2.4rem; color:#FFD700; background:none; border:none; box-shadow:none; padding:0; margin:0; line-height:1}
.more-btn:hover{background:rgba(255,255,255,.14)}
.more-menu{display:none; position:absolute; right:0; top:calc(100% + 8px); background:#111522; border:1px solid rgba(255,255,255,.12); border-radius:10px; box-shadow:0 10px 30px rgba(0,0,0,.35); padding:8px; min-width:220px; z-index:1200}
.more-menu a{display:block; padding:10px; color:#ffe875; text-decoration:none; border-radius:8px; font-weight:800}
.more-menu a:hover{background:rgba(255,223,0,.12)}

/* Language switch */
.lang-switch{display:flex; align-items:center; gap:6px}
.lang-btn{background:none; border:0; color:#cfe; font-weight:800; cursor:pointer; padding:.2rem .3rem}
.lang-btn.active{color:var(--yellow); text-decoration:underline}

/* Adjust mobile layout */
@media (max-width: 920px){
  .links.primary{display:none}
  .links.more{display:none}
  .lang-switch{margin-left:auto}
}


/* Floating icons animation on homepage */
.floating-icons{position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:1}
.floating-icons img{position:absolute; width:64px; height:auto; opacity:0.7; animation:floatY 12s ease-in-out infinite, spin 28s linear infinite}
@keyframes floatY{0%{transform:translateY(0)} 50%{transform:translateY(-40px)} 100%{transform:translateY(0)}}
@keyframes spin{0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)}}
.hero .inner{z-index:2; position:relative}


/* Floating icons refinements: two animation styles, avoid center via positioning in HTML */
.floating-icons{position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:1}
.floating-icons img{position:absolute; width:72px; height:auto; opacity:0.9; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));}
.floating-icons img.floater{animation:floatY 10s ease-in-out infinite;}
.floating-icons img.spinner{animation:spin 24s linear infinite;}
@keyframes floatY{0%{transform:translateY(0)}50%{transform:translateY(-36px)}100%{transform:translateY(0)}}
@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}

/* À l'affiche full-width band */
.affiche-band{display:flex; align-items:center; justify-content:center; margin:40px auto; padding:20px;}
.affiche-band .sticker{max-width:min(300px,28vw); width:100%; height:auto;}
.affiche-title{text-align:center; display:block; margin:0 auto 20px auto; background:#00cfff; color:#000; font-weight:700; font-size:1.6rem; padding:10px 24px; border-radius:6px;}

.menu-more{font-size:2.2rem; color:#FFD700; background:none; border:none; box-shadow:none;}

/* Partner sticker (like DON) */


}

/* Center header items vertically */
.header .nav, .header .nav a, .header{
  display:flex; align-items:center;
}

/* Partners page */
.partners-hero{padding:80px 0 30px; text-align:center}
.partners-hero .title{display:inline-block; background:#00e6ff; color:#111; padding:12px 18px; border-radius:14px; font-weight:900}
.partners-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; padding:10px 0 60px}
.partners-card{background:#111522; border:1px solid rgba(255,255,255,.08); border-radius:16px; min-height:120px; display:flex; align-items:center; justify-content:center; color:#cfe}
@media (max-width: 1000px){ .partners-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 540px){ .partners-grid{grid-template-columns:1fr} }
.partners-cta{display:flex; gap:12px; justify-content:center; margin:8px 0 40px}


/* Partenaires sticker (FR only) */

 }
/* Language-conditional visibility */
[ data-show="fr" ]{display:none}
[ data-show="en" ]{display:none}
.lang-fr [data-show="fr"]{display:inline-flex}
.lang-en [data-show="en"]{display:inline-flex}

 }


 }

/* === Global header safe-area padding + logo safety (Rewind) === */
body > header, header.topbar, .site-header {
  padding-left: max(20px, env(safe-area-inset-left, 20px));
  padding-right: max(20px, env(safe-area-inset-right, 20px));
}

/* Ensure brand/logo never squished */
.brand, .site-brand, .site-logo, .site-logo a, .site-logo img, .brand img {
  display:inline-flex;
  align-items:center;
  height:auto;
  max-height:42px; /* adjust as needed */
  width:auto;
  object-fit:contain;
  flex-shrink:0;
}

/* Keep nav spacing sane on small screens */
@media (max-width: 480px){
  nav, .nav { gap: 10px; }
}


/* Safe-area header padding (forced) */
body > header, header.topbar, .site-header {
  padding-left: max(20px, env(safe-area-inset-left, 20px));
  padding-right: max(20px, env(safe-area-inset-right, 20px));
}

/* Brand/logo safety */
.brand, .site-brand, .site-logo, .site-logo a, .site-logo img, .brand img {
  display:inline-flex;
  align-items:center;
  height:auto;
  max-height:42px;
  width:auto;
  object-fit:contain;
  flex-shrink:0;
}



/* Sticker "A VENIR" overlay */





/* Sticker overlay on ticket cards (top-right corner) */
.ticket-card.card{ position: relative; }
.ticket-card.card::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:70px;
  height:70px;
  background: url("assets/a-venir.png") no-repeat top right / contain;
  pointer-events:none;
  z-index: 12;
}


/* Force-hide any stray partenaires sticker in header */



/* Header cleanup */
header ul, header li { list-style: none; margin: 0; padding: 0; }
header a:empty { display: none !important; }


/* Force enlarged PARTENAIRES sticker */



/* Swap sizes: DON big, PARTENAIRES normal */





/* Balanced sizes: DON dominant, PARTENAIRES visible */





/* Variant sizes: DON = 110px, PARTENAIRES = 100px */





/* Variant sizes: DON = 85px, PARTENAIRES = 100px */
.don-sticker {
  height: 85px !important;
  width: auto !important;
  margin-left: 6px;
  vertical-align: middle;
}

.partner-sticker {
  height: 100px !important;
  width: auto !important;
  margin-left: 6px;
  vertical-align: middle;
}


/* === Programmation section video background === */
main.has-video-bg{position:relative; overflow:hidden}
main.has-video-bg .video-bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0}
main.has-video-bg .video-overlay{position:absolute; inset:0; background:rgba(0,0,0,.35); z-index:1}
/* Keep existing visuals above the video */
main.has-video-bg > .container{position:relative; z-index:2}
/* Ensure min height so the section shows the video nicely even if content is short */
main.has-video-bg{min-height:70vh; display:flex; align-items:center}


/* === Responsive tagline (hero) === */
.hero .tag{display:inline-block; background:var(--yellow); color:#111; font-weight:900; 
  padding:.6rem 1rem; border-radius:999px; letter-spacing:.04em; max-width:min(90vw, 980px);}
.hero .tag .tagline-long{display:inline;}
.hero .tag .tagline-short{display:none;}
/* Stack CTAs under the tagline with comfortable spacing */
.hero .cta{margin-top:16px}

/* Mobile: swap to short tagline, allow wrapping inside the pill */
@media (max-width: 720px){
  .hero .tag{padding:.55rem .9rem; border-radius:16px; line-height:1.25; text-align:center}
  .hero .tag .tagline-long{display:none;}
  .hero .tag .tagline-short{display:inline;}
}

/* Tablet narrow breakpoint: prefer short if space is tight */
@media (max-width: 900px){
  .hero .tag .tagline-long{display:none;}
  .hero .tag .tagline-short{display:inline;}
}


/* === Pastille positionnée sous les CTA (hero) === */
.hero .cta{margin-top:16px; display:flex; gap:14px; justify-content:center}
.hero .tag{display:inline-block; margin-top:14px}
@media (max-width: 720px){
  .hero .cta{flex-direction:column; align-items:center}
  .hero .tag{margin-top:12px}
}


/* === Hero tagline style: Blue translucent bubble === */
.hero .tag{
  display:inline-block;
  background:rgba(0,160,255,0.25); /* translucent blue */
  color:#fff; /* white text for contrast */
  font-weight:900;
  padding:.6rem 1rem;
  border-radius:999px;
  letter-spacing:.04em;
  max-width:min(90vw, 980px);
}


/* === Tag bubble: blue translucent, restored position === */
.hero .tag{
  background: rgba(0, 160, 255, 0.25) !important; /* soft blue */
  color: #ffffff !important;
  border: 1px solid rgba(0,160,255,0.45);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
}
/* Keep pill shape and center */
.hero .inner{display:flex; flex-direction:column; align-items:center; justify-content:center}
.hero .tag{display:inline-block; padding:.6rem 1rem; border-radius:999px; letter-spacing:.04em; text-align:center}
@media (max-width: 720px){
  .hero .tag{padding:.55rem .9rem; border-radius:16px; line-height:1.25}
}


/* Floating icons enlarged by 50% */
.floating-icon, .float, .icon-float {
  transform: scale(1.50) !important;
}
