:root {
  --vert: #1b4d2e;
  --vert-clair: #2a6b40;
  --vert-pale: #e8f5ec;
  --rouge: #cc1a00;
  --rouge-vif: #e82000;
  --blanc: #ffffff;
  --creme: #fdf8f2;
  --or: #d4a017;
  --or-clair: #f5e6a3;
  --gris: #f4f4f0;
  --texte: #1a1a1a;
  --texte-doux: #4a4a4a;
  --transition-page: 0.35s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--creme);
  color: var(--texte);
  overflow-x: hidden;
}

/* ═══ LOADER ═══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0;
  background: var(--vert);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-img { width: 160px; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-sub { color: var(--or); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; margin-top: 14px; }
.loader-bar { width: 220px; height: 3px; background: rgba(255,255,255,0.15); margin-top: 22px; border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0; background: var(--or); animation: loadbar 1.5s ease forwards; border-radius: 2px; }
@keyframes loadbar { to { width: 100%; } }
@keyframes loaderPulse { 0%,100%{transform:scale(1);filter:brightness(1)} 50%{transform:scale(0.96);filter:brightness(1.1)} }

/* ═══ PAGE TRANSITIONS ══════════════════════════════════ */
.page {
  display: none;
  opacity: 0;
  animation: none;
}
.page.active {
  display: block;
  animation: pageIn var(--transition-page) forwards;
}

#page-galerie.page.active.ligthouvert {
  z-index: 999999;
  position: relative;
  height: 100vh;
}

.page.exit {
  display: block;
  animation: pageOut 0.2s forwards;
  pointer-events: none;
  position: absolute; width: 100%;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}

/* ═══ NAV ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(27,77,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(212,160,23,0.5);
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer; flex-shrink: 0;
}
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-badge {
  background: var(--or); color: var(--vert);
  font-weight: 900; font-size: 0.58rem;
  padding: 2px 7px; border-radius: 20px;
  font-family: 'Nunito', sans-serif; letter-spacing: 1px;
  text-transform: uppercase; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 2px; list-style: none; align-items: center; flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px;
  padding: 6px 9px; border-radius: 6px;
  transition: all 0.2s ease; text-transform: uppercase; white-space: nowrap;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255,255,255,0.13);
}
.nav-links a.btn-ticket {
  background: var(--rouge); color: #fff !important;
  padding: 8px 13px; border-radius: 8px; margin-left: 4px;
}
.nav-links a.btn-ticket:hover { background: var(--rouge-vif); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; z-index: 10;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
  z-index: 999; background: var(--vert);
  padding: 20px; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: pageIn 0.25s ease forwards; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1.05rem; font-weight: 700;
  padding: 13px 16px; border-radius: 10px;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: rgba(255,255,255,0.1); color: #fff;
}

/* ═══ UTILITAIRES ═══════════════════════════════════════ */
.section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-family: 'Nunito', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--rouge); margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.2; color: var(--vert); margin-bottom: 14px;
}
.section-title span { color: var(--rouge); }
.section-desc {
  font-size: 1rem; color: var(--texte-doux);
  max-width: 600px; line-height: 1.8;
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 800; font-size: 0.88rem;
  text-decoration: none; transition: all 0.22s ease;
  cursor: pointer; border: none;
  font-family: 'Nunito', sans-serif; letter-spacing: 0.4px;
}
.btn-primary { background: var(--rouge); color: #fff; box-shadow: 0 4px 18px rgba(204,26,0,0.35); }
.btn-primary:hover { background: var(--rouge-vif); transform: translateY(-2px); box-shadow: 0 7px 22px rgba(204,26,0,0.5); }
.btn-secondary { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-or { background: var(--or); color: var(--vert); font-weight: 900; box-shadow: 0 4px 18px rgba(212,160,23,0.35); }
.btn-or:hover { background: #e8b420; transform: translateY(-2px); box-shadow: 0 7px 22px rgba(212,160,23,0.5); }
.btn-outline-vert { background: transparent; border: 2px solid var(--vert); color: var(--vert); }
.btn-outline-vert:hover { background: var(--vert); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ═══ CONFETTI (CSS uniquement, léger) ═════════════════ */
.confetti-wrap {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.c {
  position: absolute; width: 7px; height: 7px;
  opacity: 0; animation: cFall linear infinite;
  border-radius: 1px;
}
@keyframes cFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

/* ═══ HERO ══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--vert);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 62px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(212,160,23,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(204,26,0,0.09) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 90%, rgba(42,107,64,0.4) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.13);
  border: 1px solid rgba(212,160,23,0.35);
  color: var(--or); padding: 7px 15px; border-radius: 30px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.93; color: #fff; margin-bottom: 6px;
  animation: fadeUp 0.8s 0.08s ease both;
}

#heroSlider .hero-title {
  font-size: clamp(3rem, 5vw, 4rem);
}

.hero-title .rouge { color: var(--rouge-vif); }
.hero-title .or { color: var(--or); }
.hero-subtitle {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.72); margin-bottom: 18px;
  animation: fadeUp 0.8s 0.16s ease both;
}
.hero-desc {
  font-size: 0.97rem; color: rgba(255,255,255,0.58);
  line-height: 1.75; max-width: 460px;
  animation: fadeUp 0.8s 0.24s ease both; margin-bottom: 32px;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.32s ease both;
}
.hero-stats {
  display: flex; gap: 28px; margin-top: 44px;
  animation: fadeUp 0.8s 0.4s ease both;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: var(--or); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 2px;
}
.hero-right { animation: fadeRight 1s 0.25s ease both; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 26px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  color: var(--or); font-size: 0.9rem; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 2px; font-style: italic;
}
.festival-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 10px; border-radius: 10px;
  cursor: pointer; transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.festival-row:last-of-type { border-bottom: none; }
.festival-row:hover { background: rgba(255,255,255,0.07); padding-left: 14px; }
.festival-row-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--rouge-vif);
  min-width: 36px; text-align: center;
}
.festival-row-ville { font-weight: 800; color: #fff; font-size: 0.95rem; }
.festival-row-date { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.festival-row-price {
  background: var(--rouge); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; flex-shrink: 0;
}
/* Countdown */
.countdown-wrap {
  margin-top: 18px;
  background: rgba(212,160,23,0.09);
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: 14px; padding: 18px; text-align: center;
}
.countdown-lbl {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.countdown-nums {
  display: flex; justify-content: center; align-items: flex-start; gap: 8px;
}
.cd-unit { text-align: center; }
.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem; color: var(--or); line-height: 1;
  min-width: 40px; display: block;
}
.cd-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-top: 1px; }
.cd-sep { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: rgba(255,255,255,0.2); line-height: 1; padding-top: 4px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(25px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeRight { from{opacity:0;transform:translateX(25px)} to{opacity:1;transform:translateX(0)} }

/* ═══ TICKER ════════════════════════════════════════════ */
.ticker { background: var(--rouge); padding: 80px 0 14px; overflow: hidden; position: relative; }
.ticker-track {
  display: flex; gap: 50px; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-track span { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,0.9); letter-spacing: 2px; flex-shrink: 0; }
.ticker-track .dot { color: var(--or); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══ SLIDER ════════════════════════════════════════════ */
.slider-section {
  position: relative;
  overflow: hidden;
  background: #0c1c11;
  user-select: none;
  min-height: 100vh;
  min-height: 100dvh; /* Pour mobile avec barre d'adresse dynamique */
}

.slider-track {
  display: flex;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Backgrounds des slides */
.slide-1 { background: linear-gradient(135deg, #0c2e1a 0%, #1b4d2e 45%, #0a3520 100%); }
.slide-2 { background: linear-gradient(135deg, #5a0a00 0%, #cc1a00 45%, #3a0500 100%); }
.slide-3 { background: linear-gradient(135deg, #4a3200 0%, #d4a017 50%, #2a1c00 100%); }
.slide-4 { background: linear-gradient(135deg, #0a1830 0%, #1a3a6c 45%, #050e1e 100%); }
.slide-5 { background: linear-gradient(135deg, #1b0a30 0%, #5a2080 45%, #0d0518 100%); }

/* Décor géométrique */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.slide-deco {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 60%;
  height: 60%;
  min-width: 320px;
  min-height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 0;
}

.slide-deco::before {
  content: '';
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.slide-deco::after {
  content: '';
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Contenu principal du slide */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: clamp(20px, 4vh, 60px) clamp(24px, 5vw, 100px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}

.slide-left {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vh, 16px);
}

/* Numéro décoratif */
.slide-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 15rem);
  line-height: 0.8;
  color: rgba(255,255,255,0.04);
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  letter-spacing: -4px;
}

/* Tag au-dessus du titre */
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: clamp(8px, 1.5vh, 16px);
}

.slide-tag::before {
  content: '';
  display: inline-block;
  width: clamp(20px, 3vw, 28px);
  height: 2px;
  background: var(--or);
}

/* Titre principal du slide */
.slide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: clamp(10px, 2vh, 20px);
  letter-spacing: 1px;
}

.slide-title em {
  font-style: normal;
  display: block;
  font-size: 0.85em;
}

/* Corps de texte */
.slide-body {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: clamp(380px, 50vw, 600px);
  margin-bottom: clamp(16px, 3vh, 28px);
}

/* Tags / Chips */
.slide-chips {
  display: flex;
  gap: clamp(6px, 1vw, 10px);
  flex-wrap: wrap;
}

.slide-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.65rem, 1.1vw, 0.78rem);
  font-weight: 700;
  padding: clamp(4px, 0.8vh, 6px) clamp(10px, 1.5vw, 14px);
  border-radius: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* Panneau visuel droit */
.slide-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vh, 20px);
  position: relative;
}

.slide-1 .slide-visual {
  align-items: flex-end;
}

/* Grande icône */
.slide-big-icon {
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Stats en pilules */
.slide-stat-pills {
  display: flex;
  gap: clamp(8px, 1.5vw, 14px);
  flex-wrap: wrap;
  justify-content: center;
}

.slide-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: clamp(12px, 2vw, 18px);
  padding: clamp(10px, 2vh, 16px) clamp(14px, 2.5vw, 24px);
  text-align: center;
  min-width: clamp(70px, 12vw, 100px);
  backdrop-filter: blur(6px);
}

.slide-pill-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  color: var(--or);
  line-height: 1;
  display: block;
}

.slide-pill-lbl {
  font-size: clamp(0.55rem, 0.9vw, 0.7rem);
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

/* Boutons dans le slider */
.slide-content .btn {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  padding: clamp(10px, 1.5vh, 14px) clamp(18px, 2.5vw, 28px);
}

/* Contrôles du slider */
.slider-controls {
  position: absolute;
  bottom: clamp(20px, 3vh, 32px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  z-index: 10;
}

.slider-dot {
  width: clamp(6px, 1vw, 8px);
  height: clamp(6px, 1vw, 8px);
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  width: clamp(24px, 4vw, 32px);
  border-radius: 3px;
  background: var(--or);
}

.slider-dot:hover:not(.active) {
  background: rgba(255,255,255,0.5);
}

/* Flèches de navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: clamp(40px, 6vw, 52px);
  height: clamp(40px, 6vw, 52px);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.3rem);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--vert);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: clamp(12px, 2vw, 28px);
}

.slider-next {
  right: clamp(12px, 2vw, 28px);
}

/* Barre de progression */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  width: 100%;
  z-index: 10;
}

.slider-progress-fill {
  height: 100%;
  background: var(--or);
  width: 0%;
  transition: width linear;
}

/* Animations d'entrée du contenu */
.slide-content .slide-left > * {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-content .slide-right-anim {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s 0.15s ease, transform 0.7s 0.15s ease;
}

.slider-track .slide.is-active .slide-content .slide-left > * {
  opacity: 1;
  transform: translateX(0);
}

.slider-track .slide.is-active .slide-content .slide-right-anim {
  opacity: 1;
  transform: translateX(0);
}

.slide-left > *:nth-child(1) { transition-delay: 0s !important; }
.slide-left > *:nth-child(2) { transition-delay: 0.1s !important; }
.slide-left > *:nth-child(3) { transition-delay: 0.18s !important; }
.slide-left > *:nth-child(4) { transition-delay: 0.26s !important; }

/* ═══ SLIDER RESPONSIVE ════════════════════════════════ */

/* Tablette et mobile */
@media (max-width: 1024px) {
  .slide-content {
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 40px);
    padding: clamp(16px, 3vh, 32px) clamp(16px, 3vw, 40px);
  }
  
  .slide-num {
    font-size: clamp(4rem, 10vw, 8rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .slider-section {
    min-height: auto;
  }
  
  .slider-track {
    min-height: auto;
  }
  
  .slide {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 0 100px;
    align-items: flex-start;
  }
  
  .slide-content {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vh, 40px);
    padding: 0 24px;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
  }
  
  .slide-left {
    order: 2;
    text-align: center;
    align-items: center;
  }
  
  .slide-visual {
    order: 1;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .slide-num {
    display: none;
  }
  
  .slide-tag {
    justify-content: center;
  }
  
  .slide-body {
    max-width: 100%;
    text-align: center;
  }
  
  .slide-chips {
    justify-content: center;
  }
  
  .slide-big-icon {
    font-size: clamp(3rem, 15vw, 6rem);
  }
  
  .slide-1 .slide-visual {
    align-items: center;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slider-prev {
    left: 8px;
  }
  
  .slider-next {
    right: 8px;
  }
}

@media (min-width: 1400px) {
  .slide-content {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

/* Très grands écrans */
@media (min-width: 1600px) {
  .slide-content {
    max-width: 1800px;
    padding: 0 100px;
  }
  
  .slide-title {
    font-size: clamp(3rem, 4vw, 7rem);
  }
  
  .slide-body {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    max-width: 700px;
  }
}

@media (min-width: 1600px) {
  .slide-content {
    gap: 120px;
  }

  .slide-big-icon {
    font-size: clamp(6rem, 10vw, 12rem);
  }

  .slide-stat-pills {
    gap: 20px;
  }
}

/* Écrans 4K et plus */
@media (min-width: 2000px) {
  .slide-content {
    max-width: 2000px;
    padding: 0 120px;
  }
  
  .slide-title {
    font-size: clamp(4rem, 5vw, 8rem);
  }
  
  .slide-body {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    max-width: 800px;
  }
}


/* ═══ ABOUT ═════════════════════════════════════════════ */
.about-section { background: var(--creme); padding: 100px 24px; }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-bignr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14rem; line-height: 0.9;
  color: var(--vert-pale); letter-spacing: -4px;
  position: absolute; top: -20px; left: -25px;
  z-index: 0; user-select: none; pointer-events: none;
}
.about-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-clair) 100%);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; z-index: 1;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(27,77,46,0.22);
}
.about-img-logo { width: 65%; object-fit: contain; }
.about-float {
  position: absolute; bottom: -18px; right: -18px; z-index: 2;
  background: var(--rouge); color: #fff;
  width: 105px; height: 105px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(204,26,0,0.38); text-align: center;
}
.about-float .fn { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; line-height: 1; }
.about-float .fl { font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.about-value {
  background: #fff; border-radius: 12px;
  padding: 15px; border-left: 3px solid var(--vert);
  transition: all 0.2s ease;
}
.about-value:hover { transform: translateY(-3px); box-shadow: 0 7px 18px rgba(0,0,0,0.07); }
.av-icon { font-size: 1.4rem; margin-bottom: 5px; }
.av-title { font-weight: 800; color: var(--vert); font-size: 0.82rem; margin-bottom: 3px; }
.av-desc { font-size: 0.78rem; color: var(--texte-doux); line-height: 1.45; }

/* ═══ VILLES ════════════════════════════════════════════ */
.villes-hero { background: var(--vert); padding: 140px 24px 60px; text-align: center; position: relative; overflow: hidden; }
.villes-grid {
  max-width: 1200px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ville-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 34px 26px;
  cursor: pointer; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.ville-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); box-shadow: 0 18px 45px rgba(0,0,0,0.28); }
.ville-card.next { border-color: var(--or); background: rgba(212,160,23,0.07); }
.next-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--or); color: var(--vert);
  font-size: 0.58rem; font-weight: 900;
  letter-spacing: 1.5px; padding: 3px 9px;
  border-radius: 20px; text-transform: uppercase;
}
.ville-icon { font-size: 2.8rem; margin-bottom: 14px; }
.ville-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; line-height: 1; margin-bottom: 3px; }
.ville-region { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.ville-info-row {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); border-radius: 9px;
  padding: 10px 14px; margin-bottom: 9px;
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
}
.ville-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.ville-prix { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--or); }
.diner-banner {
  max-width: 1200px; margin: 30px auto 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.04));
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: 18px; padding: 30px 36px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.diner-banner-icon { font-size: 3.5rem; flex-shrink: 0; }
.diner-banner-tag { color: var(--or); font-size: 0.7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.diner-banner-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; margin-bottom: 5px; }
.diner-banner-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-style: italic; }

/* ═══ PROGRAMME ═════════════════════════════════════════ */
.prog-grid { gap:20px; margin-top: 20px; }
.diner-card {
  background: linear-gradient(150deg, var(--vert) 0%, #0c2e1a 100%);
  border-radius: 20px; padding: 38px; color: #fff;
  position: relative; overflow: hidden;
}
.diner-card::after {
  content: ''; position: absolute;
  top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,160,23,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.dc-tag { color: var(--or); font-size: 0.7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.dc-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; line-height: 1.3; margin-bottom: 7px; }
.dc-theme { font-style: italic; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.6; }
.dc-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; }
.dc-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 18px; margin-bottom: 24px; }
.dc-chip {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75); font-size: 0.72rem; font-weight: 700;
  padding: 4px 11px; border-radius: 20px;
}
.jour-blocks { display: flex; flex-wrap: wrap; gap: 18px; }
.jour-block { background: var(--creme); border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06);width:100%; }
.jour-header {
  background: var(--vert); color: #fff;
  padding: 13px 22px; display: flex; align-items: center; justify-content: space-between;
}
.jour-header.rouge { background: var(--rouge); }
.jour-titre { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 1px; }
.jour-date { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.jour-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; }
.activite {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; background: #fff; border-radius: 9px;
}
.act-icon { font-size: 1.4rem; min-width: 32px; text-align: center; }
.act-title { font-weight: 800; color: var(--vert); font-size: 0.88rem; }
.act-desc { font-size: 0.78rem; color: var(--texte-doux); margin-top: 1px; }

/* ═══ EMISSIONS ═════════════════════════════════════════ */
.em-grid {
  max-width: 1200px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.em-card {
  background: #fff; border-radius: 15px;
  padding: 22px 18px;
  border-bottom: 3px solid var(--vert);
  transition: all 0.22s ease; cursor: pointer;
}
.em-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(0,0,0,0.09); border-bottom-color: var(--rouge); }
.em-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: var(--vert-pale);
  line-height: 1; margin-bottom: 6px;
  transition: color 0.22s ease;
}
.em-card:hover .em-num { color: rgba(204,26,0,0.2); }
.em-icon { font-size: 1.7rem; margin-bottom: 8px; }
.em-title { font-weight: 800; color: var(--vert); font-size: 0.9rem; line-height: 1.3; margin-bottom: 6px; }
.em-desc { font-size: 0.78rem; color: var(--texte-doux); line-height: 1.45; }

/* ═══ GALERIE ═══════════════════════════════════════════ */
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  /*grid-auto-rows: 200px;*/
  gap: 14px;
}
.g-item {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ccc;
}
.g-item:hover { transform: scale(1.02); box-shadow: 0 14px 35px rgba(0,0,0,0.22); }
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); font-weight: 700; font-size: 0.85rem;
  text-align: center; padding: 10px; gap: 8px;
}
.g-ph-icon { font-size: 2.2rem; }
/* Lightbox */
#lightbox {
  padding-top: 60px;
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  cursor: pointer;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 10px; object-fit: contain; cursor: default; }
#lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,0.1); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
#lightbox-close:hover { background: var(--rouge); }
/* Admin toggle */
.admin-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
  cursor: pointer; transition: color 0.2s ease;
  background: none; border: none; font-family: 'Nunito', sans-serif;
}
.admin-trigger:hover { color: rgba(255,255,255,0.65); }
/* Admin modal */
#adminModal {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); align-items: center; justify-content: center;
  padding: 20px;
}
#adminModal.open { display: flex; }
.admin-panel {
  background: #fff; border-radius: 20px;
  padding: 36px; max-width: 680px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--vert-pale);
}
.admin-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--vert); letter-spacing: 2px; }
.admin-close {
  cursor: pointer; font-size: 1.5rem;
  color: var(--texte-doux); background: none; border: none;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.admin-close:hover { background: #f0f0f0; }
/* Login form */
#adminLogin { display: block; }
#adminContent { display: none; }
.admin-pin-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding: 20px 0;
}
.admin-pin-wrap p { color: var(--texte-doux); font-size: 0.9rem; }
.admin-pin {
  border: 2px solid #e0e0d8; border-radius: 10px;
  padding: 12px 16px; font-family: 'Nunito', sans-serif;
  font-size: 1.2rem; text-align: center; width: 160px;
  letter-spacing: 6px; outline: none; transition: border-color 0.2s;
}
.admin-pin:focus { border-color: var(--vert); }
.admin-photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.admin-photo-thumb {
  position: relative; aspect-ratio: 1;
  border-radius: 10px; overflow: hidden; background: #f0f0f0;
}
.admin-photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.admin-photo-delete {
  position: absolute; top: 4px; right: 4px;
  background: var(--rouge); color: #fff;
  border: none; border-radius: 50%;
  width: 26px; height: 26px; cursor: pointer;
  font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.admin-photo-delete:hover { background: var(--rouge-vif); }
.admin-photo-thumb .thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 0.65rem; padding: 4px 6px; text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.admin-add-area {
  background: var(--vert-pale); border-radius: 14px;
  padding: 22px; border: 2px dashed rgba(27,77,46,0.3);
}
.admin-add-title { font-weight: 800; color: var(--vert); font-size: 0.9rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.add-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.add-tab {
  padding: 6px 14px; border-radius: 8px; font-weight: 700;
  font-size: 0.82rem; cursor: pointer; transition: all 0.2s;
  border: none; font-family: 'Nunito', sans-serif;
}
.add-tab.active { background: var(--vert); color: #fff; }
.add-tab:not(.active) { background: rgba(27,77,46,0.1); color: var(--vert); }
.upload-drop-zone {
  border: 2px dashed rgba(27,77,46,0.3); border-radius: 10px;
  padding: 30px; text-align: center; cursor: pointer;
  background: #fff; transition: all 0.2s ease;
  position: relative;
}
.upload-drop-zone:hover, .upload-drop-zone.drag { border-color: var(--vert); background: rgba(27,77,46,0.03); }
.upload-drop-zone input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.udz-icon { font-size: 2rem; margin-bottom: 8px; }
.udz-text { font-size: 0.85rem; color: var(--texte-doux); }
.udz-sub { font-size: 0.75rem; color: rgba(0,0,0,0.35); margin-top: 4px; }

/* ═══ IMPACT ════════════════════════════════════════════ */
.impact-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1200px; margin: 40px auto 0;
}
.stat-card {
  background: var(--creme); border-radius: 18px;
  padding: 32px 22px; text-align: center;
  border-top: 4px solid var(--vert);
  transition: all 0.3s ease;
}
.stat-card:nth-child(2) { border-top-color: var(--rouge); }
.stat-card:nth-child(3) { border-top-color: var(--or); }
.stat-card:nth-child(4) { border-top-color: var(--vert-clair); }
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(0,0,0,0.09); }
.stat-icon { font-size: 2.3rem; margin-bottom: 10px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--vert); line-height: 1; margin-bottom: 5px; }
.stat-card:nth-child(2) .stat-num { color: var(--rouge); }
.stat-card:nth-child(3) .stat-num { color: var(--or); }
.stat-lbl { font-size: 0.82rem; color: var(--texte-doux); font-weight: 600; line-height: 1.4; }
.axes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 1200px; margin: 40px auto 0;
}
.axe-card {
  background: var(--vert); color: #fff;
  border-radius: 15px; padding: 26px 22px;
  transition: all 0.22s ease;
}
.axe-card:hover { transform: translateY(-4px); filter: brightness(1.1); }
.axe-icon { font-size: 1.9rem; margin-bottom: 10px; }
.axe-title { font-weight: 800; font-size: 0.95rem; margin-bottom: 5px; }
.axe-desc { font-size: 0.82rem; color: rgba(255,255,255,0.68); line-height: 1.5; }

/* ═══ SPONSOR ═══════════════════════════════════════════ */
.sponsor-packs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 1200px; margin: 40px auto 0;
}
.pack {
  border-radius: 20px; padding: 38px 30px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.pack:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(0,0,0,0.2); }
.p-or { background: linear-gradient(140deg, #d4a017, #f5d060); }
.p-arg { background: linear-gradient(140deg, #8a9aac, #c8d5e0); }
.p-brz { background: linear-gradient(140deg, #b87333, #d4956a); }
.pack-icon { font-size: 2.8rem; margin-bottom: 14px; }
.pack-nom { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 2px; margin-bottom: 3px; }
.p-or .pack-nom,.p-or .pack-prix,.p-or li { color: #4a2e00; }
.p-arg .pack-nom,.p-arg .pack-prix,.p-arg li { color: #1e2d38; }
.p-brz .pack-nom,.p-brz .pack-prix,.p-brz li { color: #321000; }
.pack-prix { font-family: 'Bebas Neue', sans-serif; font-size: 2.3rem; line-height: 1; margin-bottom: 20px; }
.pack ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 26px; }
.pack ul li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.83rem; font-weight: 700; }
.pack ul li::before { content: '✓'; font-weight: 900; flex-shrink: 0; }
/* Formulaire sponsor */
.sponsor-form-wrap {
  max-width: 680px; margin: 60px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 46px;
}
.sf-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #fff; letter-spacing: 2px; margin-bottom: 5px; }
.sf-sub { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 28px; }

/* ═══ FORMULAIRES ═══════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-label { font-weight: 700; font-size: 0.82rem; color: var(--vert); text-transform: uppercase; letter-spacing: 0.5px; }
.form-label.white { color: rgba(255,255,255,0.65); }
.form-input, .form-select, .form-textarea {
  border: 2px solid #e0e0d8; border-radius: 10px;
  padding: 11px 14px; font-family: 'Nunito', sans-serif;
  font-size: 0.93rem; color: var(--texte);
  background: var(--creme); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--vert); background: #fff;
  box-shadow: 0 0 0 3px rgba(27,77,46,0.1);
}
.form-input.error, .form-select.error { border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(204,26,0,0.1); }
.field-error { font-size: 0.75rem; color: var(--rouge); font-weight: 700; margin-top: 3px; display: none; }
.field-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { cursor: pointer; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; background: var(--vert); color: #fff;
  border: none; border-radius: 10px; padding: 15px;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  font-weight: 800; cursor: pointer; transition: all 0.22s ease;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.form-submit:hover { background: var(--vert-clair); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(27,77,46,0.3); }
.form-submit.rouge { background: var(--rouge); }
.form-submit.rouge:hover { background: var(--rouge-vif); box-shadow: 0 8px 22px rgba(204,26,0,0.3); }
.form-alt-btn {
  width: 100%; background: transparent;
  border: 2px solid var(--vert); color: var(--vert);
  border-radius: 10px; padding: 13px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  font-weight: 800; cursor: pointer; transition: all 0.22s ease;
  margin-top: 10px;
}
.form-alt-btn:hover { background: var(--vert); color: #fff; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--texte-doux); margin-top: 10px; }

/* Billet info */
.billet-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 920px; margin: 0 auto; }
.billet-card {
  background: #fff; border-radius: 20px;
  padding: 38px; box-shadow: 0 10px 38px rgba(0,0,0,0.07);
}
.prix-table { display: flex; flex-direction: column; gap: 12px; }
.prix-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--creme); border-radius: 12px; padding: 14px 18px;
  border-left: 3px solid var(--vert); transition: all 0.2s ease;
}
.prix-row:hover { border-left-color: var(--rouge); transform: translateX(3px); }
.prix-ville { font-weight: 800; color: var(--vert); font-size: 1rem; }
.prix-date { font-size: 0.78rem; color: var(--texte-doux); margin-top: 2px; }
.prix-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--rouge); }
.info-box {
  background: var(--creme); border-radius: 14px;
  padding: 22px; border: 1px solid #e0dfd8; margin-top: 18px;
}
.info-box-title { font-weight: 800; color: var(--vert); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.info-item { display: flex; gap: 9px; align-items: flex-start; font-size: 0.83rem; color: var(--texte-doux); margin-bottom: 8px; }

/* ═══ CONTACT ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 50px auto 0; }
.contact-info-card {
  display: flex; flex-direction: column; gap: 16px;
}
.cic {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 14px; padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}
.cic:hover { transform: translateX(4px); box-shadow: 0 8px 22px rgba(0,0,0,0.1); }
.cic-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--vert); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.cic-label { font-weight: 800; color: var(--vert); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.cic-value { font-size: 0.93rem; color: var(--texte); font-weight: 600; }
.contact-form-card {
  background: #fff; border-radius: 20px;
  padding: 38px; box-shadow: 0 10px 38px rgba(0,0,0,0.07);
}
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px; border-radius: 10px; font-weight: 700;
  font-size: 0.82rem; text-decoration: none; transition: all 0.2s ease;
  border: 2px solid transparent; cursor: pointer; background: none; font-family: 'Nunito', sans-serif;
}
.s-wa { background: #25D366; color: #fff; }
.s-wa:hover { background: #1db954; transform: translateY(-2px); }
.s-email { background: var(--vert); color: #fff; }
.s-email:hover { background: var(--vert-clair); transform: translateY(-2px); }

/* ═══ FOOTER ════════════════════════════════════════════ */
footer { background: #0c1c11; color: rgba(255,255,255,0.65); padding: 56px 24px 26px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 44px; }
.footer-logo-img { height: 52px; width: auto; margin-bottom: 12px; }
.footer-desc { font-size: 0.83rem; line-height: 1.7; max-width: 270px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.fsb {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem; cursor: pointer;
  transition: all 0.2s ease; text-decoration: none; color: #fff;
}
.fsb:hover { background: var(--rouge); transform: translateY(-2px); }
.footer-col-h { font-weight: 800; color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.82rem; transition: color 0.2s ease; cursor: pointer;
}
.footer-col ul li a:hover { color: var(--or); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px; display: flex; align-items: center;
  justify-content: space-between; font-size: 0.78rem;
  color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}
.footer-admin-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.15); font-size: 0.72rem;
  font-family: 'Nunito', sans-serif; transition: color 0.2s;
}
.footer-admin-btn:hover { color: rgba(255,255,255,0.45); }

/* ═══ TOAST ═════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9500;
  background: var(--vert); color: #fff;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transform: translateY(80px); opacity: 0;
  transition: all 0.35s ease;
  display: flex; align-items: center; gap: 9px;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══ PAGE HEADERS ══════════════════════════════════════ */
.page-header {
  background: var(--vert); padding: 140px 24px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,160,23,0.08) 0%, transparent 65%);
}
.ph-tag { color: var(--or); font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; position: relative; z-index: 1; }
.ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff; line-height: 0.95;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.ph-title .rouge { color: var(--rouge-vif); }
.ph-sub { color: rgba(255,255,255,0.58); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; position: relative; z-index: 1; }

/* ═══ RESPONSIVE ════════════════════════════════════════ */
@media (min-width: 992px) {
    .jour-block {max-width: 49%;}
}
@media (max-width: 1024px) {
  .nav-links li:not(:last-child):not(:nth-last-child(2)) a { display: none; }
  .em-grid { grid-template-columns: repeat(3,1fr); }
  .impact-stats { grid-template-columns: repeat(2,1fr); }
  .axes-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 30px; }
  .about-grid, .prog-grid, .billet-layout, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .villes-grid { grid-template-columns: 1fr; }
  .em-grid { grid-template-columns: repeat(2,1fr); }
  .sponsor-packs { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .axes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .g-item.tall { grid-row: span 1; }
  .about-bignr { font-size: 8rem; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid2 { grid-template-columns: 1fr; }
  .admin-photos-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .em-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══ Animations et helpers inline (utilisés en style="") ════════ */
/* rsebeat utilisé inline sur la RSE slide : animation:rsebeat 1.4s ease-in-out infinite */
@keyframes rsebeat {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* artiste-tag utilisé dans le ticker */
.ticker-track .artiste-tag {
  color: var(--or);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}