/* ── POLICES ── */
@font-face {
  font-family: 'Boulder';
  src: url('Boulder Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Glacial';
  src: url('GlacialIndifference-Bold.otf') format('opentype');
  font-weight: bold;
}
@font-face {
  font-family: 'Glacial';
  src: url('GlacialIndifference-Regular.otf') format('opentype');
  font-weight: normal;
}

/* ── VARIABLES ── */
:root {
  --purple: #6B2DC8;
  --pink: #FF4D8D;
  --lime: #C6F135;
  --dark-purple: #1A0A3C;
  --white: #FFFFFF;
}

/* ── BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Glacial', sans-serif;
  background: var(--purple);
  color: var(--white);
  overflow-x: hidden;
  padding-top: 80px;
}

/* ── NAVBAR ── */
.nav-wrapper {
  position: fixed;
  top: 12px;
  left: 20px;
  right: 20px;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(40, 10, 80, 0.45);
  backdrop-filter: blur(16px);
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.nav-logo img { height: 45px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: bold;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--lime); }

.nav-links .btn-contact {
  background: var(--lime);
  color: #1A1A1A;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
}

.nav-links .btn-contact:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* ── FOND PARALLAX ── */
.bg-base {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: #7b2fbe;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
}

.bg-rose { background-image: url('rosecalque.png'); z-index: -2; }
.bg-vert  { background-image: url('vertcalque.png'); z-index: -1; }

/* ── HERO ── */
#accueil {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 40px 60px;
  text-align: center;
}

.hero-title {
  font-family: 'Boulder', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
}

.video-wrapper {
  width: 100%;
  max-width: 900px;
  background: var(--dark-purple);
  border-radius: 16px;
  border: 2px solid var(--lime);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  animation: fadeUp 0.8s ease 0.2s both;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.play-btn svg { margin-left: 4px; }

.video-progress {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  overflow: hidden;
}

.video-progress-fill {
  width: 30%;
  height: 100%;
  background: var(--purple);
  border-radius: 100px;
}

/* ── VISUELS / AFFICHES ── */
#visuels {
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}

.visuels-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  height: 650px;
}

.visuel-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

.visuel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  background: rgba(26, 10, 60, 0.85);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.visuel-card.pos-center {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  opacity: 1;
  border: 2px solid var(--lime);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.visuel-card.pos-left {
  transform: translate(calc(-50% - 360px), -50%) scale(0.85);
  z-index: 2;
  opacity: 0.4;
  border: 2px solid rgba(255, 255, 255, 0.08);
  filter: brightness(0.5) blur(1px);
}

.visuel-card.pos-right {
  transform: translate(calc(-50% + 360px), -50%) scale(0.85);
  z-index: 2;
  opacity: 0.4;
  border: 2px solid rgba(255, 255, 255, 0.08);
  filter: brightness(0.5) blur(1px);
}

.visuel-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.visuel-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  padding: 14px 0;
  text-align: center;
}

.visuels-prev,
.visuels-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.visuels-prev { left: -10px; }
.visuels-next { right: -10px; }

.visuels-prev:hover,
.visuels-next:hover {
  background: var(--lime);
  color: #1a1a1a;
  transform: scale(1.08);
}

/* Le fond du panneau ne capte pas la souris -> évite la boucle hover/mouseleave
   sur #stats quand le panneau s'ouvre. Seuls la carte interne et le bouton
   close restent interactifs. */
.stat-expand { pointer-events: none; }
.stat-expand-card,
.stat-expand-close { pointer-events: auto; }

/* ── PANNEAU PLEIN ÉCRAN AU CLIC SUR STAT ── */
.stat-expand {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  padding: 60px 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.stat-expand.visible {
  opacity: 1;
  visibility: visible;
}

.stat-expand-close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 9001;
}

.stat-expand-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.stat-expand-card {
  width: 360px;
  flex-shrink: 0;
  background: rgba(26, 10, 60, 0.9);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: rotateY(-90deg) translateX(-60px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.stat-expand.visible .stat-expand-card {
  transform: rotateY(0deg) translateX(0);
}

.stat-expand-card .stat-illustration {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.stat-expand-card .stat-illustration img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.stat-expand-card .stat-number {
  font-family: 'Boulder', sans-serif;
  font-size: 52px;
  color: var(--white);
  margin-bottom: 12px;
}

.stat-expand-card .stat-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.5;
}

.stat-expand-text {
  flex: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.stat-expand.visible .stat-expand-text {
  opacity: 1;
  transform: translateX(0);
}

.stat-expand-text p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

/* ── CONTEXTE ── */
#contexte {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: 'Boulder', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
  animation: fadeUp 0.6s ease both;
}

.contexte-box {
  width: 100%;
  max-width: 800px;
  background: rgba(26, 10, 60, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.6s ease 0.2s both;
}

.contexte-box p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.contexte-box p:last-child { margin-bottom: 0; }
.contexte-box strong { color: var(--lime); }

/* ── STATS ── */
#stats {
  padding: 100px 40px;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 60px auto 0;
}

.stat-card {
  background: rgba(26, 10, 60, 0.85);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  width: 300px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--lime);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.stat-illustration {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-illustration img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* ── CAMPAGNE ── */
#campagne {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.campagne-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.campagne-text--solo {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.campagne-text--solo p {
  text-align: left;
}

.campagne-text h2 {
  font-family: 'Boulder', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.campagne-text p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.campagne-slogan {
  background: var(--pink);
  border-radius: 12px;
  border: 4px solid #7b2fbe;
  padding: 24px 28px;
  margin-top: 32px;
}

.campagne-slogan p {
  font-family: 'Boulder', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}

.campagne-visual {
  background: rgba(26, 10, 60, 0.6);
  border-radius: 20px;
  border: 2px solid var(--pink);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.axe-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.axe-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.axe-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.axe-item h4 {
  font-family: 'Boulder', sans-serif;
  font-size: 15px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.axe-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ── CONTACT ── */
#contact {
  padding: 100px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  font-style: italic;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  background: rgba(26, 10, 60, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Glacial', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--lime);
}

.btn-submit {
  background: var(--lime);
  color: #1A1A1A;
  border: none;
  border-radius: 100px;
  padding: 16px 40px;
  font-family: 'Glacial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* ── FOOTER ── */
footer {
  background: #220853;
  margin-top: 120px;
  padding-top: 70px;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-top-line {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-logo {
  height: 80px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

.footer-logo:hover { transform: translateY(-3px); }

.partners-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.partners-logos img {
  height: 60px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

.partners-logos img:hover { transform: translateY(-3px); }

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 400px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #B8E000;
  transform: translateY(-3px);
}

.social-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.footer-socials a:hover .social-icon { filter: brightness(0) invert(0); }

.footer-column { display: flex; flex-direction: column; }

.footer-column h4 {
  font-family: 'Boulder', sans-serif;
  color: var(--lime);
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-column a:hover { color: #B8E000; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ── HAPPENING POPUP ── */
.happening-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 4, 28, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.happening-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.happening-card {
  position: relative;
  background: var(--dark-purple);
  border: 2px solid var(--lime);
  border-radius: 24px;
  padding: 48px 40px 32px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.happening-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.happening-close:hover { color: var(--white); }

.happening-emoji {
  font-size: 56px;
  display: block;
  margin-bottom: 16px;
}

.happening-label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 4px;
}

.happening-headline {
  font-family: 'Boulder', sans-serif;
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.happening-event {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.happening-warning {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  font-style: italic;
}

.happening-btn {
  background: var(--lime);
  color: #1A1A1A;
  border: none;
  border-radius: 100px;
  padding: 14px 36px;
  font-family: 'Glacial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: block;
  margin: 0 auto 20px;
}

.happening-btn:hover {
  background: var(--white);
  transform: scale(1.05);
}

.happening-timer-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  overflow: hidden;
}

.happening-timer-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 100px;
  width: 100%;
}

/* ── TOAST ── */
.happening-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(26, 10, 60, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  color: var(--white);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
}

.happening-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(26, 10, 60, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Glacial', sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-btn::after {
  content: '+';
  font-size: 22px;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-btn::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}


/* ── SECTION FAQ ── */
#faq {
padding: 80px 40px;
text-align: center;
max-width: 900px;
margin: 0 auto;
}

.faq-toggle-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: transparent;
border: 2px solid var(--lime);
color: var(--lime);
font-family: 'Glacial', sans-serif;
font-size: 16px;
font-weight: bold;
padding: 14px 36px;
border-radius: 100px;
cursor: pointer;
transition: background 0.25s, color 0.25s, transform 0.2s;
margin-bottom: 0;
}

.faq-toggle-btn:hover {
background: var(--lime);
color: #1A1A1A;
transform: scale(1.04);
}

.faq-toggle-arrow {
display: inline-block;
transition: transform 0.35s ease;
font-size: 18px;
}

.faq-toggle-btn.open .faq-toggle-arrow {
transform: rotate(180deg);
}

.faq-drawer {
max-width: 800px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 12px;
overflow: hidden;
max-height: 0;
opacity: 0;
transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-drawer.open {
max-height: 1000px;
opacity: 1;
margin-top: 40px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }

  .campagne-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .visuels-carousel { height: 500px; }
  .visuel-card { width: 260px; }
  .visuel-card img { height: 360px; }

  .visuel-card.pos-left  { transform: translate(calc(-50% - 280px), -50%) scale(0.85); }
  .visuel-card.pos-right { transform: translate(calc(-50% + 280px), -50%) scale(0.85); }

  .stat-expand {
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 32px;
  }

  .stat-expand-card { width: 100%; max-width: 360px; }
}

@media (max-width: 600px) {
  body { padding-top: 70px; }

  .nav-links .btn-contact { display: none; }

  #accueil { padding: 90px 20px 40px; }

  .stats-grid { gap: 24px; }
  .stat-card { width: 100%; max-width: 320px; }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .happening-card { padding: 40px 24px 28px; }
}
