/* ============================================
   MTD WAKE PARK — Styles
   ============================================ */

/* --- Fonts auto-hébergées (RGPD) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/montserrat-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/montserrat-900.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Utilitaire global */
.hidden { display: none !important; }

/* --- Carte statique RGPD --- */
.map-static-link { text-decoration: none; display: block; }
.map-static {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--color-cream);
  transition: var(--transition);
  cursor: pointer;
}
.map-static:hover { background: rgba(255,255,255,0.14); }
.map-static svg { flex-shrink: 0; color: var(--color-coral); }
.map-static-text { display: flex; flex-direction: column; gap: 0.25rem; }
.map-static-text strong { font-weight: 600; font-size: 0.95rem; }
.map-static-text span { font-size: 0.85rem; color: var(--color-coral); font-weight: 600; }

/* --- Info RGPD formulaire --- */
.form-rgpd {
  font-size: 0.8rem;
  color: rgba(245,230,208,0.6);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form-rgpd a { color: var(--color-coral); text-decoration: underline; }

/* --- CSS Variables --- */
:root {
  /* Couleurs principales */
  --color-forest: #2D4A3E;
  --color-coral: #E8734A;
  --color-mustard: #E8B44A;
  --color-brick: #C45C3C;
  --color-cream: #F5E6D0;
  --color-dark: #1A1A1A;
  --color-white: #FFFFFF;

  /* Couleurs utilitaires */
  --color-forest-light: #3A5F50;
  --color-coral-dark: #D4623C;
  --color-coral-light: #F0956F;
  --color-overlay: rgba(45, 74, 62, 0.7);
  --color-card-glass: rgba(255, 255, 255, 0.08);
  --color-border-glass: rgba(255, 255, 255, 0.15);

  /* Typographie */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espacements & rayons */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-coral: 0 4px 20px rgba(232, 115, 74, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

h3 {
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

/* --- Section Header (reusable) --- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-coral);
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-dark);
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============================================
   1. HEADER — TOP BAR + NAVIGATION
   ============================================ */

/* Top info bar */
.top-bar {
  background: var(--color-dark);
  color: var(--color-cream);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001;
}

.top-bar.hidden {
  transform: translateY(-100%);
}

.top-bar-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--color-cream);
}

.top-bar a:hover {
  color: var(--color-coral);
}

/* Main navigation */
.main-header {
  background: var(--color-forest);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.main-header.header--scrolled {
  box-shadow: var(--shadow-lg);
}

.main-header.header--scrolled .nav-container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-cream);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-coral);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-coral);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.btn-reserve {
  display: inline-block;
  background: var(--color-coral);
  color: var(--color-white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-reserve:hover {
  background: var(--color-coral-dark);
  box-shadow: var(--shadow-coral);
}

.btn-reserve::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: var(--transition);
}

body.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-forest);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--color-cream);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.mobile-menu a:hover {
  color: var(--color-coral);
}

.mobile-menu .btn-reserve {
  margin-top: 1rem;
  font-size: 1.2rem;
  padding: 14px 32px;
}

.mobile-menu .mobile-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mobile-menu .mobile-socials a {
  font-size: 1rem;
}

.mobile-menu .mobile-socials svg {
  width: 28px;
  height: 28px;
  color: var(--color-cream);
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--color-forest) 0%,
    rgba(45, 74, 62, 0.6) 40%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.hero-logo {
  max-width: 180px;
  border-radius: 50%;
  animation: fadeIn 1s ease, scaleUp 1s ease;
}

@keyframes scaleUp {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

.hero-content h1 {
  color: var(--color-cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
  animation: slideUp 0.8s ease 0.3s both;
}

.hero-subtitle {
  color: var(--color-cream);
  opacity: 0.9;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
  animation: slideUp 0.8s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: slideUp 0.8s ease 0.7s both;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.btn-outline {
  border: 2px solid var(--color-cream);
  background: transparent;
  color: var(--color-cream);
}

.btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-forest);
}

.btn-primary {
  background: var(--color-coral);
  color: var(--color-white);
  border: 2px solid var(--color-coral);
}

.btn-primary:hover {
  background: var(--color-coral-dark);
  border-color: var(--color-coral-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  color: var(--color-cream);
  opacity: 0.7;
}

/* ============================================
   3. ACTIVITÉS
   ============================================ */
.activites {
  background: var(--color-cream);
  padding: 6rem 2rem;
}

.activites .section-header h2 {
  color: var(--color-forest);
}

.activites-container {
  max-width: 1200px;
  margin: 0 auto;
}

.activites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.activity-card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-mustard);
  color: var(--color-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--color-dark);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-link {
  color: var(--color-coral);
  font-weight: 600;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--color-coral-dark);
  letter-spacing: 0.02em;
}

/* ============================================
   4. TARIFS
   ============================================ */
.tarifs {
  background: var(--color-forest);
  padding: 6rem 2rem;
}

.tarifs .section-header h2 {
  color: var(--color-cream);
}

.tarifs .section-subtitle {
  color: var(--color-cream);
  opacity: 0.7;
}

.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--color-card-glass);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--color-cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.pricing-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.pricing-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-coral);
}

/* Icône PNG recolorée en corail #E8734A */
.icon-png-coral {
  width: 48px;
  height: 48px;
  filter: invert(55%) sepia(60%) saturate(600%) hue-rotate(330deg) brightness(100%);
}

.pricing-card h3 {
  color: var(--color-cream);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-coral);
}

.price-duration {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  opacity: 0.85;
  position: relative;
  padding-left: 1.2rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-mustard);
  font-weight: 700;
}

.btn-pricing {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 10px 28px;
  background: var(--color-coral);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}

.btn-pricing:hover {
  background: var(--color-coral-dark);
  box-shadow: var(--shadow-coral);
}

.tarifs-note {
  text-align: center;
  color: var(--color-cream);
  opacity: 0.7;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.tarifs-cta {
  text-align: center;
  margin-top: 2rem;
}

.tarifs-cta .btn-cta-large {
  display: inline-block;
  background: var(--color-coral);
  color: var(--color-white);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.tarifs-cta .btn-cta-large:hover {
  background: var(--color-coral-dark);
  box-shadow: var(--shadow-coral);
}

/* ============================================
   5. GALERIE
   ============================================ */
.galerie {
  background: var(--color-cream);
  padding: 6rem 2rem;
}

.galerie .section-header h2 {
  color: var(--color-forest);
}

.galerie-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: pointer;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--color-cream);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.galerie-instagram {
  text-align: center;
  margin-top: 3rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--color-forest);
  color: var(--color-forest);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}

.btn-instagram svg {
  width: 20px;
  height: 20px;
}

.btn-instagram:hover {
  background: var(--color-forest);
  color: var(--color-cream);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   6. ÉVÉNEMENTS
   ============================================ */
.evenements {
  background: linear-gradient(135deg, var(--color-coral), var(--color-brick));
  padding: 6rem 2rem;
  color: white;
}

.evenements .section-header h2 {
  color: white;
}

.evenements .section-divider {
  background: var(--color-mustard);
}

.evenements .section-subtitle {
  color: white;
  opacity: 0.9;
}

.evenements-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.events-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.events-carousel::-webkit-scrollbar {
  display: none;
}

.event-card {
  min-width: 300px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--color-dark);
  scroll-snap-align: start;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card-top {
  position: relative;
}

.event-card-top img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-mustard);
  color: var(--color-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1.2;
}

.event-day {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
}

.event-month {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-content {
  padding: 1.5rem;
}

.event-content h3 {
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.event-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.carousel-btn:hover {
  box-shadow: var(--shadow-lg);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-forest);
}

.carousel-btn-prev {
  left: -24px;
}

.carousel-btn-next {
  right: -24px;
}

.carousel-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.events-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  color: rgba(255,255,255,0.7);
  width: 100%;
}

.events-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--color-coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.events-empty {
  text-align: center;
  padding: 3rem;
  color: white;
}

.events-empty p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid white;
  color: white;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: white;
  color: var(--color-coral);
}

/* ============================================
   7. TÉMOIGNAGES
   ============================================ */
.temoignages {
  background: var(--color-white);
  padding: 6rem 2rem;
}

.temoignages .section-header h2 {
  color: var(--color-forest);
}

.temoignages-container {
  max-width: 1200px;
  margin: 0 auto;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: "«";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-coral);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5f6368;
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.author-avatar--initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--color-mustard);
  fill: var(--color-mustard);
}

.testimonial-card blockquote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-dark);
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  color: var(--color-forest);
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   8. CONTACT
   ============================================ */
.contact {
  background: var(--color-forest);
  padding: 6rem 2rem;
  color: var(--color-cream);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--color-cream);
  margin-bottom: 2rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.info-item p,
.info-item a {
  color: var(--color-cream);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--color-coral);
  opacity: 1;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-socials a svg {
  width: 20px;
  height: 20px;
  color: var(--color-cream);
}

.contact-socials a:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
}

.map-container iframe {
  border: 0;
  border-radius: var(--radius);
}

/* Contact form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--color-cream);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 230, 208, 0.4);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-coral);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--color-coral-dark);
  box-shadow: var(--shadow-coral);
}

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--color-mustard);
  font-weight: 500;
}

/* FAQ */
.faq-section {
  grid-column: 1 / -1;
  margin-top: 3rem;
}

.faq-section h2 {
  color: var(--color-cream);
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--color-coral);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--color-cream);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   9. FOOTER
   ============================================ */
footer {
  background: var(--color-dark);
  padding: 3rem 2rem 1.5rem;
  color: var(--color-cream);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-coral);
  margin-bottom: 0.5rem;
}

.footer-description {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-coral);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-contact a:hover {
  color: var(--color-coral);
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  color: var(--color-cream);
}

.social-icons a:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 2rem auto 1.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--color-coral);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .carousel-btn-prev {
    left: 0;
  }
  .carousel-btn-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    gap: 1rem;
  }

  .top-bar-content .top-bar-item:not(.top-bar-phone) {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .hero-logo {
    max-width: 130px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .temoignages-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    columns: 1;
  }

  .event-card {
    min-width: 260px;
  }
}
