/* === Design system de base === */
:root {
  --bg: #ffffff;
  --bg-alt: #e9e9e9;
  --surface: #EC6593;
  --text: #000000;
  --muted: #94a3b8;
  --primary: #EC6593; /* cyan */
  --secondary: #2D2668;
  --accent: #2D2668;
  --card: #2D2668;
  --border: #090d1f;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 16px;
  --shadow: 0 10px 20px rgba(0,0,0,.25);
  --container: 1200px;
}

@font-face {
  font-family: 'SevenOneEight';
  src: url('/wp-content/themes/irc2025/fonts/SevenOneEight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Gotham Regular */
@font-face {
  font-family: 'Gotham';
  src: url('/wp-content/themes/irc2025/fonts/Gotham-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Gotham Bold */
@font-face {
  font-family: 'Gotham';
  src: url('/wp-content/themes/irc2025/fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham Italic */
@font-face {
  font-family: 'Gotham';
  src: url('/wp-content/themes/irc2025/fonts/Gotham-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: 'Gotham', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'SevenOneEight', sans-serif;
  color:#EC6593;
}

main {min-height:90vh;}

html {
  scroll-behavior: smooth;
}

.card h3, .card li, .card p {color:white;}
#infos h3, #infos li, #infos p {color:white;}

body {
  /* font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif; */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text); 
  /* background: linear-gradient(180deg, #0b1220 0%, #2D2668 50%, #0f172a 100%); */
} 
img { max-width: 100%; display: block; }

.programme-btn {
  margin-top: 2rem;
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: #E94D7A;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: #E94D7A;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }

/* Topbar */
.topbar { background: #EC6593; color: var(--muted); font-size: .9rem; border-bottom: 1px solid var(--border); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.topbar__cta { display: flex; gap: .5rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(1.8) blur(10px); background: var(--secondary); border-bottom: 1px solid var(--border);     border-bottom: 2px solid white;}
.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: .75rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: .2px; }
.brand__logo { width: 34px; height: 34px; border-radius: 50%; box-shadow: var(--shadow); }
.brand--footer .brand__logo { box-shadow: none; }
.brand img {max-height:70px;} 

.site-nav ul { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.site-nav a { color: white; text-decoration: none; padding: .6rem .8rem; border-radius: 999px; transition-duration:.3s;font-family: 'SevenOneEight', sans-serif;}
.site-nav a.twitch-button {background-color:#EC6593;}
.site-nav a:hover, .site-nav a:focus { color: black; background: rgb(255, 255, 255); }

/* Mobile nav (CSS only) */
.nav-toggle { display: none; }
.nav-toggle-btn { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle-btn span { display: block; width: 22px; height: 2px; background: white; margin: 4px auto; transition: .3s; }

@media (max-width: 1024px) {
  .site-nav { display: none; position: absolute; inset: calc(100% + 8px) 1rem auto 1rem; background: var(--secondary); border: 0px; border-radius: var(--radius); padding: .5rem; padding-bottom:20px;}
  .site-nav ul { flex-direction: column; }
  .nav-toggle-btn { display:flex;flex-direction:column;justify-content:space-around;border:0px;padding: 8px 0 8px 0;}
    .nav-toggle:checked ~ .nav-toggle-btn span {background-color:white;}
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .swiper-button-next:after, .swiper-button-prev:after {display:none;}
}

/* Buttons */
.btn { --btn-bg: var(--surface); --btn-fg: var(--text); display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.1rem; border-radius: 999px; background: var(--btn-bg); text-decoration: none; font-weight: 600; box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 8px 24px rgba(0,0,0,.25); transition: transform .05s ease, background .2s ease, border-color .2s; }
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.2); }
/* .btn--primary {  border: none; background-color:white; } */
.btn--secondary {border: none;color:white;
  font-family: 'SevenOneEight', sans-serif;}
.btn--ghost { --btn-bg: transparent; }
.btn--sm { padding: .5rem .8rem; font-size: .9rem; }

/* Hero */
.hero { position: relative; isolation: isolate; min-height: 72vh; display: grid; align-items: center; }
.hero__bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1519444796-105a9cdd7f72?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat; filter: brightness(.6) saturate(1.1); z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 20%, rgba(34,211,238,.35), transparent 60%); z-index: -1; }
.hero__content { padding: 10vh 0; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin: 0 0 .5rem; }
.hero__lead { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.25rem); max-width: 60ch; }
.hero__cta { display: flex; gap: .8rem; margin-top: 1rem; }
.metrics { display: flex; gap: 1.2rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.metrics li { display: grid; gap: .2rem; text-align: center; background: rgba(2,6,23,.6); border: 1px solid var(--border); padding: .8rem 1rem; border-radius: var(--radius); min-width: 90px; }
.metrics strong { font-size: 1.4rem; }

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0;}
.section--alt { background: linear-gradient(180deg, #0f172a, #0b1220); }
.section__header { text-align: center; max-width: 70ch; margin: 0 auto 2rem; }
.section__header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 .5rem; }
.section__header p { color: var(--muted); }

/* Grids */
.grid { display: grid; gap: 1.2rem; }
.grid--cards { grid-template-columns: repeat(3, 1fr); }
.grid--tickets { grid-template-columns: repeat(3, 1fr); align-items: start; }
.grid--news { grid-template-columns: repeat(3, 1fr); }
.grid--info { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1000px) {
  .grid--cards, .grid--tickets, .grid--news, .grid--info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--cards, .grid--tickets, .grid--news, .grid--info { grid-template-columns: 1fr; }
}

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; }

/* Tickets */
.ticket { background: radial-gradient(80% 100% at 50% 0%, rgba(34,211,238,.08), transparent 50%), var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); text-align: center; }
.ticket .price { font-size: 2rem; font-weight: 700; margin: .2rem 0 1rem; }
.ticket .price span { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Lists */
.list { padding-left: 1rem; color: var(--muted); }
.list--check { list-style: none; padding: 0; }
.list--check li { position: relative; padding-left: 1.6rem; margin: .4rem 0; }
.list--check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); }
.list h4 {margin-bottom: 0;}

/* News */
.news { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.news__thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.news__body { padding: 1rem; }
.news__title { margin: 0 0 .4rem; font-size: 1.1rem; }
.news__meta { color: var(--muted); font-size: .9rem; }

/* Logos */
.logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; list-style: none; padding: 0; margin: 0; align-items: center; }
.logos img { width: 100%; height: auto; opacity: .9; transition: .2s; border-radius: 10px; padding: .8rem; }
.logos img:hover { filter: grayscale(0) brightness(1); opacity: 1; }
.logos li a {
  display: block;
  border-radius: 10px;
}

.logos li a:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logos { grid-template-columns: repeat(2, 1fr); } }

/* Info blocks */
.info { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }

/* CTA banner */
.cta-banner { background: linear-gradient(90deg, #0ea5e9, #22d3ee); color: #052336; }
.cta-banner__inner { display: grid; gap: .6rem; align-items: center; grid-template-columns: 1fr auto; padding: 2rem 0; }
.cta-banner h2 { margin: 0; }
.cta-banner p { margin: 0; color: #083344; }
@media (max-width: 640px) { .cta-banner__inner { grid-template-columns: 1fr; text-align: center; } }

/* Footer */
.site-footer { position: relative; background: var(--secondary); border-top: 1px solid var(--border);}
.site-footer h3, .site-footer p, .site-footer li {color:white;}
.footer__grid { display: grid; gap: 1.2rem; grid-template-columns: 2fr 2fr 1fr; padding: 2rem 0; }
.footer__nav ul { display: flex; gap: 0; list-style: none; padding: 0; margin: 0 0 0; }
.footer__nav ul li { display: flex;margin-right:20px;}
.footer__nav a { color: var(--muted); text-decoration: none; padding: .4rem .6rem; border-radius: 8px; width:60px;}
.footer__nav a svg {height:40px;max-width:100%;}
.footer__nav a svg path {fill:white;}
.newsletter { display: grid; gap: .6rem; }
.newsletter__row { display: flex; gap: .6rem; }
.newsletter input { flex: 1; padding: .7rem .9rem; border-radius: 10px; border: 1px solid var(--border); background: #0b1220; color: var(--text); }
.backtotop {    position: absolute;
    right: 1rem;
    bottom: 1rem;
    text-decoration: none;
    /* border: 1px solid var(--border); */
    padding: .5rem .7rem;
    border-radius: 10px;
    color: var(--muted);
    background-color: white;
    aspect-ratio: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;}

@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr; } .newsletter__row { flex-direction: column; } }

/* A11y & motion */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }


.live-hero {margin-top: 100px;}
.live-player {margin-bottom: 100px;}



/** album **/
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.album-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  text-align: center;
}
.album-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.album-card h2 {
  margin: .8rem 0;
  color: white;
  text-decoration:none;
}

.album-card a {
  text-decoration:none;
}

/* Galerie */
.album-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.album-gallery a {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* force le carré */
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.album-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* centre l’image et recadre */
  display: block;
}



.hero-carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px); /* plein écran */
}

.hero-carousel img {
  width: 100%;
  height: calc(100vh - 100px);
  object-fit: cover;
  /* object-position: top; */
  /* background-color: black; */
  /* opacity: 0.9; */
  /* filter: blur(5px); */
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  padding: 1rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-overlay p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #E94D7A; /* ta couleur secondaire */
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #77498A; /* ta couleur tertiaire */
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet-active {
  background: #E94D7A!important;
}


/* Live badges */
.live-badge {
  display: inline-block;
  padding: .4rem .8rem;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 1rem;
  /* font-family: 'Roboto', sans-serif; */
}

.live-badge.live-now {
  background: #ff1744; /* rouge direct */
  color: #fff;
}

.live-badge.replay {
  background: #EC6593; /* bleu clair */
  color: #fff;
}

/* Player */
.player-wrapper {
  position: relative;
  text-align: center;
  display: grid;
  gap: 1rem;
}

#twitch-player iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
  #twitch-player iframe {
    height: 400px;
  }
}

.live-badge.offline {
  background: #666666;
  color: #fff;
}




/* Contact Section */
.contact-section {
  /* background: var(--card); */
  padding: 3rem 1rem;
  margin-top: 3rem;
  border-top: 0px solid var(--border);
  /* border-radius: var(--radius); */
  box-shadow: 0;
}

.contact-title {
  text-align: center;
  font-family: 'SevenOneEight', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary); /* bleu clair */
}

.wpcf7-form {
  display: grid;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--text);
}

.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  /* background: #0f172a; */
  color: var(--text);
  /* font-family: 'Roboto', sans-serif; */
  font-size: 1rem;
}

.wpcf7-form input.wpcf7-submit {
  background-color:#EC6593;
  color:white;
  border: 2px solid #EC6593;  
}

.wpcf7-form input.wpcf7-submit:hover {
  background-color:white;
  color:#EC6593;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}

.wpcf7-submit {
  /* background: var(--primary); */
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s, transform .2s;
}

.wpcf7-submit:hover {
  background: #FFFFFF;
  color: #2D2668;
  transform: scale(1.05);
}



/* Logos toutes sections */
.logos, .logos--premium, .logos--transport {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.logos li, .logos--premium li, .logos--transport li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.logos img, .logos--premium img, .logos--transport img {
    max-width: 100%;
    max-height: 120px; /* limite la hauteur pour uniformiser */
    object-fit: contain; /* respecte le ratio original */
}

/* Sections alternées */
.section--alt {
    background: var(--bg-alt);
}

/* Responsive */
@media (max-width: 640px) {
    .logos, .logos--premium, .logos--transport {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 400px) {
    .logos, .logos--premium, .logos--transport {
        grid-template-columns: 1fr;
    }
}
/* Player flottant */
.twitch-floating-player {
  position: fixed;
  right: 1rem;
  width: 320px;
  height: 220px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: bottom 0.3s ease; /* pour l’animation */
}


.twitch-floating-header {
  background: #17255F;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.twitch-floating-header button.twitch-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.twitch-player-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
}

.twitch-player-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.twitch-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: all; /* bloque tous les clics */
}

.twitch-more {
  text-align: center;
  background: #00AAFF;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.4rem;
  font-weight: bold;
}
.twitch-more:hover {
  background: #0088cc;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .twitch-floating-player {
    width: 90%;
    height: auto;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .twitch-floating-header {
    font-size: 0.8rem;
  }

  .twitch-more {
    font-size: 0.75rem;
    padding: 0.3rem;
  }
}


.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* Bouton scroll souris */
.scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
}

.scroll-down span {
  display: block;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(24px); }
}

/* responsive */
@media (max-width: 768px) {
  .scroll-down {
    width: 20px;
    height: 36px;
    bottom: 1.5rem;
    display: none;
  }
}



.site-footer p a {
  color: white; /* couleur secondaire du site */
  /* text-decoration: none; */
  font-size: 0.9rem;
  transition: color 0.3s;
}

.site-footer p a:hover {
  color: white; /* couleur tertiaire */
}



/* === Page Mention Légales === */
.legal-page {
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  max-width: var(--container);
  margin-inline: auto;
  color: var(--text);
  /* font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif; */
  line-height: 1.7;
}

.legal-page h1 {
  font-family: 'SevenOneEight', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.legal-page p {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.legal-page h2, 
.legal-page h3 {
  font-family: 'SevenOneEight', sans-serif;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--accent);
}

/* Listes */
.legal-page ul, .legal-page ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 2rem 1rem;
  }
  
  .legal-page h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}


/* Bandeau infos home */
.home-info-banner {
  background-color: #EC6593;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  /* border-radius: var(--radius); */
  /* margin: 2rem 0; */
  box-shadow: var(--shadow);
}

.home-info-banner .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.home-info-banner .info-title {
  font-family: 'SevenOneEight', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
}

.home-info-banner .info-dates,
.home-info-banner .info-entry {
  /* font-family: 'Roboto', sans-serif; */
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0;
}



.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #EC6593;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  font-family: 'Gotham', sans-serif;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner button {
  cursor: pointer;
}

.programme-page {
  text-align: center;
}

.programme-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.programme-pdf {
  margin-top: 2rem;
}

.programme-pdf .btn {
  display: inline-block;
  background-color: #00AAFF;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.programme-pdf .btn:hover {
  background-color: #17255F;
}