/* ===========================================
   LES CANOËS DU BOURNAT - Styles v2
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #1e3a5f;
  --navy-light: #2d4a6f;
  --sky: #5eb3d1;
  --sky-light: #e8f4f8;
  --sky-dark: #3a9bbf;
  --yellow: #f5c242;
  --orange: #e8863a;
  --orange-hover: #d4752f;
  --sand: #fef9f3;
  --sand-dark: #fdf3e7;
  --mint: #e8f5f0;
  --peach: #fef3eb;
  --gray-600: #6b7280;
  --gray-800: #374151;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Alert Banner --- */
.alert-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 50px 12px 20px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.alert-banner-content {
  flex: 1;
}

.alert-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.alert-banner-close:hover {
  opacity: 1;
}

/* Ajuster la navbar quand le bandeau est visible */
body:has(.alert-banner[style*="display: flex"]) .nav {
  top: 44px;
}

body:has(.alert-banner[style*="display: flex"]) .hero {
  margin-top: calc(var(--nav-height, 72px) + 44px);
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

/* --- Navbar --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  transition: all 0.3s;
}

.nav.scrolled {
  height: 90px;
  box-shadow: 0 4px 30px rgba(30,58,95,0.1);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}


.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--sky-light);
  color: var(--navy);
}

.nav-link.active {
  color: var(--orange);
  background: none;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '';
  border: solid var(--navy);
  border-width: 0 1.5px 1.5px 0;
  padding: 2.5px;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(30,58,95,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  padding: 8px 0;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-dropdown-item:hover {
  background: var(--sky-light);
  color: var(--navy);
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  z-index: 1002;
  position: relative;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  pointer-events: none;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(232,134,58,0.3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,134,58,0.35);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1.5px solid #e5e7eb;
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

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

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

.btn-glass {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.3);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}

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

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 100px 24px 60px;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
}

.hero-accent {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  opacity: 0.85;
}

.hero-stat-divider {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.2);
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 120px 24px 60px;
  text-align: center;
  margin-top: 72px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: white;
  margin-bottom: 12px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
}

/* Events Page Hero */
.page-hero--events {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5a7a 100%);
  position: relative;
  padding: 140px 24px 80px;
}

.page-hero--events .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://res.cloudinary.com/dxtqtvzlt/image/upload/f_auto,q_auto,w_1920,c_limit,dpr_auto/hero-dordogne_ijqc3z.jpg') center/cover; center/cover;
  opacity: 0.15;
}

.page-hero--events .page-hero-content {
  position: relative;
  z-index: 1;
}

/* Events Intro */
.events-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.events-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
}

.events-intro-text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.events-intro-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.events-info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  background: var(--sand);
  padding: 16px 12px;
  border-radius: 12px;
}

.events-info-icon {
  font-size: 28px;
}

.events-info-card strong {
  color: var(--navy);
  font-size: 13px;
}

.events-info-card div {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.event-card-large {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.event-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.event-card-large-img {
  height: 180px;
  overflow: hidden;
}

.event-card-large-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card-large:hover .event-card-large-img img {
  transform: scale(1.05);
}

.event-card-large-body {
  display: flex;
  gap: 20px;
  padding: 24px;
}

.event-card-large-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: 12px;
  background: var(--sky-light);
  border-radius: 10px;
  text-align: center;
}

.event-card-large-date .event-day {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.event-card-large-date .event-month {
  font-size: 14px;
  font-weight: 600;
  color: var(--sky-dark);
  text-transform: uppercase;
}

.event-card-large-date .event-weekday {
  font-size: 12px;
  color: #6b7280;
  text-transform: capitalize;
}

.event-card-large-info {
  flex: 1;
}

.event-card-large-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.event-card-large-info .event-time {
  font-size: 14px;
  color: var(--sky-dark);
  margin-bottom: 8px;
}

.event-card-large-info .event-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 12px;
}

.event-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s ease;
}

.event-card-large:hover .event-card-link {
  color: var(--sky-dark);
}

/* Events Empty State */
.events-empty {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 16px;
}

.events-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.events-empty p {
  color: #6b7280;
}

/* CTA Box */
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
}

.cta-box-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-box-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: white;
  margin-bottom: 16px;
}

.cta-box-content p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-box-img {
  height: 100%;
  min-height: 280px;
}

.cta-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Loading spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sand);
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

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

@media (max-width: 900px) {
  .events-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .events-intro-info {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    grid-template-columns: 1fr;
  }
  
  .cta-box-content {
    padding: 32px;
  }
  
  .cta-box-img {
    height: 200px;
    order: -1;
  }
}

@media (max-width: 600px) {
  .events-intro-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .event-card-large-body {
    flex-direction: column;
    gap: 16px;
  }
  
  .event-card-large-date {
    flex-direction: row;
    gap: 12px;
    width: fit-content;
  }
}

/* --- Sections --- */
.section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

.section-sand {
  background: var(--sand);
}

.section-sky {
  background: var(--sky-light);
}

.section-navy {
  background: var(--navy);
  color: white;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-label-light {
  color: var(--yellow);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--navy);
}

.section-title-light {
  color: white;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- Intro --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro-text {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.8;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--navy);
}

.intro-feature-icon {
  width: 26px;
  height: 26px;
  background: var(--mint);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.intro-visual {
  position: relative;
  height: 480px;
}

.intro-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 75%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,58,95,0.15);
}

.intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 12px 40px rgba(30,58,95,0.12);
}

.intro-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  top: 55%;
  left: 30%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(30,58,95,0.12);
}

.intro-badge-icon {
  font-size: 28px;
}

.intro-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* --- Two Bases Section --- */
.bases-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.base-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.35s;
  position: relative;
}

.base-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30,58,95,0.12);
  border-color: var(--sky);
}

.base-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.base-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.base-card-map {
  height: 140px;
  overflow: hidden;
  background: var(--sand);
}

.base-card-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.base-card-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.base-card-content {
  padding: 28px;
}

.base-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.base-card-title-icon {
  font-size: 24px;
}

.base-card-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.base-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.base-card-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.base-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s;
}

.base-card-link:hover {
  gap: 10px;
}

/* --- Parcours Grid --- */
.parcours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.parcours-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.35s;
}

.parcours-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30,58,95,0.12);
}

.parcours-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.parcours-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.parcours-card:hover .parcours-card-img img {
  transform: scale(1.06);
}

.parcours-card-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: white;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.parcours-card-content {
  padding: 22px;
}

.parcours-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}

.parcours-card-meta {
  display: flex;
  gap: 14px;
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.parcours-card-actions {
  display: flex;
  gap: 10px;
}

.parcours-card-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  justify-content: center;
}

/* --- Highlights --- */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: var(--sky);
  box-shadow: 0 8px 30px rgba(30,58,95,0.08);
  transform: translateY(-4px);
}

.highlight-card-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  border: none;
}

.highlight-card-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.highlight-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--navy);
}

.highlight-card-featured .highlight-card-title {
  color: white;
}

.highlight-card-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.highlight-card-featured .highlight-card-text {
  color: rgba(255,255,255,0.85);
}

/* --- Formules Grid --- */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.formule-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.35s;
}

.formule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(30,58,95,0.12);
  border-color: var(--sky);
}

.formule-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.formule-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.formule-card:hover .formule-card-image img {
  transform: scale(1.08);
}

.formule-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30,58,95,0.1) 100%);
}

.formule-card-content {
  padding: 28px;
}

.formule-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.formule-card-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.formule-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--sand);
  border-radius: 14px;
}

.formule-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

.formule-card-check {
  color: var(--sky);
  font-weight: 700;
}

.formule-card-cta {
  width: 100%;
  justify-content: center;
}

/* --- Guinguette --- */
.guinguette {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.guinguette-images {
  position: relative;
  height: 420px;
}

.guinguette-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
}

.guinguette-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guinguette-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--navy);
  box-shadow: 0 16px 50px rgba(0,0,0,0.2);
}

.guinguette-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guinguette-text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.8;
}

.guinguette-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* --- Events --- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: 18px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #f3f4f6;
  align-items: center;
  transition: all 0.3s;
}

.event-card:hover {
  border-color: var(--sky);
  box-shadow: 0 6px 24px rgba(30,58,95,0.08);
}

.event-date {
  text-align: center;
  padding: 14px 18px;
  background: var(--navy);
  border-radius: 12px;
  min-width: 75px;
  color: white;
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
}

.event-time {
  color: var(--gray-600);
  font-size: 14px;
}

/* --- Reviews --- */
.reviews-header {
  text-align: center;
  margin-bottom: 45px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.reviews-stars {
  color: var(--yellow);
  font-size: 26px;
  letter-spacing: 2px;
}

.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
}

.reviews-count {
  color: var(--gray-600);
  font-size: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 6px 24px rgba(30,58,95,0.08);
}

.review-text {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--navy);
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--sky-light);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 24px;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: white;
  margin-bottom: 14px;
}

.cta-text {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 28px;
}

/* --- Footer --- */
.footer {
  background: #0f2030;
  color: white;
  padding: 70px 24px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 70px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img,
img.footer-logo {
  height: 36px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-bottom: 18px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* --- Loading State --- */
.loading {
  display: flex;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sky-light);
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .intro,
  .guinguette {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .intro-visual,
  .guinguette-images {
    height: 380px;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .formules-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .bases-section {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav { 
    z-index: 9000 !important; 
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: white !important;
  }
  .nav-links { z-index: 9998 !important; }
  .nav-toggle { z-index: 9999 !important; position: relative; }
  
  .nav-inner {
    padding: 0 20px;
  }
  
  .logo img {
    width: 140px;
  }
  
  .nav-links {
    display: none;
    position: fixed !important;
    top: 90px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    background: white !important;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(30,58,95,0.12);
    overflow-y: auto;
    gap: 0;
    align-items: stretch;
  }
  
  .nav-links.active {
    display: flex !important;
  }
  
  .nav-toggle {
    display: flex !important;
  }
  
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: left;
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    display: none;
    margin-top: 0;
    width: 100%;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }
  
  .hero-stat-divider {
    width: 50px;
    height: 1px;
  }
  
  .highlights {
    grid-template-columns: 1fr;
  }
  
  .parcours-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

/* ===========================================
   PAGE HEADER (for subpages)
   =========================================== */
.page-header {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

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

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,58,95,0.5) 0%, rgba(30,58,95,0.7) 100%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 60px 24px;
}

.page-header-label {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.page-header-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

/* ===========================================
   EMBARCATIONS
   =========================================== */
.embarcations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.embarcation-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(30,58,95,0.08);
}

.embarcation-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.embarcation-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.embarcation-desc {
  font-size: 15px;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .embarcations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .embarcation-card {
    padding: 24px 20px;
  }
}

/* ===========================================
   FILTERS
   =========================================== */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--sky);
  background: var(--sky-light);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

/* ===========================================
   PARCOURS CARDS
   =========================================== */
.parcours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.parcours-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,58,95,0.08);
  transition: all 0.3s;
}

.parcours-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30,58,95,0.15);
}

.parcours-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.parcours-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.parcours-card-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(232,134,58,0.3);
}

.parcours-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.parcours-card-content {
  padding: 24px;
}

.parcours-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.parcours-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 20px;
}

.parcours-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.parcours-card-actions {
  display: flex;
  gap: 12px;
}

.parcours-card-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  justify-content: center;
}

/* ===========================================
   INFO CARDS
   =========================================== */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(30,58,95,0.06);
}

.info-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.info-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.info-card-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .parcours-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================
   CTA BLOCK
   =========================================== */
.cta-block {
  text-align: center;
  padding: 20px 0;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  color: white;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ===========================================
   LOADING & ERROR STATES
   =========================================== */
.loading {
  display: flex;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ===========================================
   DROPDOWN FILTERS
   =========================================== */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.filter-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231e3a5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.filter-select:hover {
  border-color: var(--sky);
}

.filter-select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(94, 179, 209, 0.15);
}

.filter-reset {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-reset:hover {
  background: var(--navy);
  color: white;
}

/* Mobile responsive filters */
@media (max-width: 768px) {
  .filters-bar {
    padding: 16px;
    gap: 12px;
  }
  
  .filter-select-wrapper {
    min-width: calc(50% - 6px);
    flex: none;
  }
  
  .filter-reset {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .filter-select-wrapper {
    min-width: 100%;
  }
}

/* ===========================================
   INFO SPLIT SECTION (Parcours page)
   =========================================== */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 28px;
}

/* Info list styles */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 10px;
}

.info-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}

.info-item p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Visual side */
.info-split-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.info-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.info-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-badge-icon {
  font-size: 24px;
}

.info-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .info-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .info-split-visual {
    order: -1;
    max-height: 300px;
  }
  
  .info-split-visual img {
    aspect-ratio: 16/9;
  }
}

/* ===========================================
   PARCOURS CARD - Badges & Differentiation
   =========================================== */

/* Type badge (Paddle / Canoë) */
.parcours-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-canoe {
  background: var(--navy);
  color: white;
}

.badge-paddle {
  background: var(--sky);
  color: var(--navy);
}

/* Card header with title + base */
.parcours-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.parcours-card-header .parcours-card-title {
  margin-bottom: 0;
}

/* Base badge (Limeuil / Le Bugue) */
.parcours-card-base {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.base-limeuil {
  background: #fef3c7;
  color: #92400e;
}

.base-bugue {
  background: #dbeafe;
  color: #1e40af;
}

/* ===========================================
   MODAL
   =========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.1);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(0,0,0,0.2);
}

.modal-content {
  padding: 0;
}

/* Parcours Modal specific */
.modal-parcours-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.modal-parcours-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-parcours-info {
  padding: 28px;
}

.modal-parcours-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.modal-parcours-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #6b7280;
}

.modal-parcours-desc {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--sand);
  border-radius: 12px;
}

.modal-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-detail-label {
  font-size: 13px;
  color: #6b7280;
}

.modal-detail span:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* Mobile responsive */
@media (max-width: 600px) {
  .modal-container {
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .modal-parcours-img {
    height: 180px;
    border-radius: 16px 16px 0 0;
  }
  
  .modal-parcours-info {
    padding: 20px;
  }
  
  .modal-parcours-title {
    font-size: 24px;
  }
  
  .modal-details-grid {
    grid-template-columns: 1fr;
  }
}

/* Modal type badge */
.modal-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.modal-type-badge.badge-canoe {
  background: var(--navy);
  color: white;
}

.modal-type-badge.badge-paddle {
  background: var(--sky);
  color: var(--navy);
}

.modal-type-badge.badge-velo {
  background: #10b981;
  color: white;
}

.modal-parcours-img {
  position: relative;
}

/* Modal actions */
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.modal-actions .btn {
  flex: 1;
  text-align: center;
}

/* Modal Event */
.modal-event {
  max-width: 500px;
}

.modal-event-img {
  height: 200px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: var(--sand);
}

.modal-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-event-info {
  padding: 28px;
}

.modal-event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-light);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.modal-event-date-icon {
  font-size: 16px;
}

.modal-event-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.modal-event-desc {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Event card hover */
.event-card {
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateX(4px);
  background: var(--sand);
}

/* ===========================================
   GUINGUETTE PAGE
   =========================================== */

/* Hero */
.guinguette-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

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

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

.guinguette-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.guinguette-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 80px);
  color: var(--navy);
  margin-bottom: 12px;
  text-shadow: 2px 2px 20px rgba(255,255,255,0.8);
}

.guinguette-hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--navy);
  text-shadow: 1px 1px 10px rgba(255,255,255,0.8);
}

/* Intro */
.guinguette-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.guinguette-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: 20px;
}

.guinguette-intro-text p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.guinguette-intro-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.guinguette-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Menu grid */
.guinguette-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.guinguette-menu-item {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.guinguette-menu-item:hover {
  transform: translateY(-4px);
}

.guinguette-menu-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.guinguette-menu-item h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}

.guinguette-menu-item p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Menu feature */
.guinguette-menu-feature {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.guinguette-menu-feature img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.guinguette-menu-feature-text {
  padding: 30px 40px 30px 0;
}

.guinguette-menu-feature-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.guinguette-menu-feature-text p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Ambiance */
.guinguette-ambiance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.guinguette-ambiance-item {
  text-align: center;
  padding: 30px 20px;
}

.guinguette-ambiance-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.guinguette-ambiance-item h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.guinguette-ambiance-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Gallery */
.guinguette-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.guinguette-gallery-item {
  border-radius: 16px;
  overflow: hidden;
}

.guinguette-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.guinguette-gallery-large {
  grid-row: span 2;
}

/* Horaires */
.guinguette-horaires {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.guinguette-horaires-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 30px;
}

.guinguette-horaires-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.guinguette-horaire-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.guinguette-horaire-card h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 12px;
}

.guinguette-horaire-time {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.guinguette-horaire-note {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.guinguette-horaire-card-highlight {
  background: var(--sky);
}

.guinguette-horaire-card-highlight h4,
.guinguette-horaire-card-highlight .guinguette-horaire-time,
.guinguette-horaire-card-highlight .guinguette-horaire-note {
  color: var(--navy);
}

.guinguette-horaires-note {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

.guinguette-horaires-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.guinguette-horaires-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* Bonnes adresses */
.bonnes-adresses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonne-adresse-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.bonne-adresse-card:hover {
  transform: translateY(-4px);
}

.bonne-adresse-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.bonne-adresse-type {
  display: inline-block;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 12px;
}

.bonne-adresse-card h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.bonne-adresse-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.bonne-adresse-partenaire {
  border: 2px solid var(--yellow);
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .guinguette-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .guinguette-ambiance {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guinguette-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .guinguette-gallery-large {
    grid-row: span 1;
    grid-column: span 2;
  }
  
  .bonnes-adresses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .guinguette-hero {
    min-height: 50vh;
  }
  
  .guinguette-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .guinguette-intro-img {
    order: -1;
  }
  
  .guinguette-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guinguette-menu-feature {
    grid-template-columns: 1fr;
  }
  
  .guinguette-menu-feature-text {
    padding: 24px;
  }
  
  .guinguette-ambiance {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .guinguette-gallery {
    grid-template-columns: 1fr;
  }
  
  .guinguette-gallery-large {
    grid-column: span 1;
  }
  
  .guinguette-horaires {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .guinguette-horaires-img {
    order: -1;
  }
  
  .guinguette-horaires-img img {
    aspect-ratio: 16/9;
  }
  
  .guinguette-horaires-grid {
    grid-template-columns: 1fr;
  }
  
  .bonnes-adresses-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   GUINGUETTE - EVENT CARDS LARGER
   =========================================== */

[data-page="guinguette"] .event-card {
  padding: 24px 28px;
  gap: 24px;
}

[data-page="guinguette"] .event-date {
  width: 80px;
  height: 80px;
  min-width: 80px;
}

[data-page="guinguette"] .event-day {
  font-size: 32px;
}

[data-page="guinguette"] .event-month {
  font-size: 14px;
}

[data-page="guinguette"] .event-title {
  font-size: 20px;
  margin-bottom: 6px;
}

[data-page="guinguette"] .event-time {
  font-size: 15px;
}

[data-page="guinguette"] .events-list {
  max-width: 700px;
  gap: 20px;
}

/* ===========================================
   HOMEPAGE - PARTENAIRES CTA
   =========================================== */

.partenaires-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
}

.partenaires-header {
  text-align: center;
  margin-bottom: 50px;
}

.partenaires-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: 12px;
}

.partenaires-header p {
  color: #6b7280;
  font-size: 17px;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.partenaire-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.partenaire-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.partenaire-card-img {
  height: 180px;
  overflow: hidden;
}

.partenaire-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.partenaire-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partenaire-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  align-self: flex-start;
}

.partenaire-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.partenaire-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.partenaire-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.partenaire-card:hover .partenaire-card-link {
  gap: 10px;
}

@media (max-width: 900px) {
  .partenaires-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ===========================================
   PARCOURS PAGE - Bottom Sections
   =========================================== */

/* --- Reassurance Strip --- */
.reassurance-strip {
  background: var(--sky-light);
  padding: 24px;
  border-bottom: 1px solid rgba(94, 179, 209, 0.2);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reassurance-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.reassurance-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reassurance-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.reassurance-text span {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .reassurance-item {
    padding: 12px;
    background: white;
    border-radius: 12px;
  }
}

/* --- Steps Horizontal --- */
.steps-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  max-width: 300px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--sky) 100%);
  margin-top: 27px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .steps-horizontal {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  
  .step-item {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    padding: 0;
    gap: 20px;
  }
  
  .step-number {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .step-connector {
    display: none;
  }
}

/* --- FAQ + Contact Grid --- */
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.faq-compact {
  
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 24px;
}

.faq-item-compact {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item-compact:first-of-type {
  border-top: 1px solid #e5e7eb;
}

.faq-question-compact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question-compact span:first-child {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding-right: 16px;
}

.faq-toggle {
  font-size: 24px;
  color: var(--sky);
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item-compact.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item-compact.open .faq-answer-compact {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-answer-compact p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.faq-more-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-more-link:hover {
  color: var(--sky);
}

/* Contact Card */
.contact-card-parcours {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f6e 100%);
  border-radius: 20px;
  padding: 4px;
  position: sticky;
  top: 100px;
}

.contact-card-inner {
  background: white;
  border-radius: 17px;
  padding: 36px 28px;
  text-align: center;
}

.contact-card-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.contact-card-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card-inner > p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.contact-phone-btn:hover {
  background: var(--sky);
  transform: translateY(-2px);
}

.contact-alt {
  font-size: 13px;
  color: #9ca3af;
}

.contact-alt a {
  color: var(--navy);
  text-decoration: none;
}

.contact-alt a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .faq-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-card-parcours {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===========================================
   GUIDE PRATIQUE PAGE
   =========================================== */

/* --- Quick Nav --- */
.guide-quicknav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 72px;
  z-index: 90;
  padding: 12px 0;
}

.quicknav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.quicknav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--sand);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quicknav-link:hover {
  background: var(--sky-light);
  color: var(--navy);
}

/* --- Embarcations (Tabbed) --- */
.emb-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}

.emb-tab {
  padding: 12px 24px;
  border: 2px solid var(--sand-dark);
  background: white;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.emb-tab:hover {
  border-color: var(--sky);
  background: var(--sky-light);
}

.emb-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.emb-content {
  display: none;
}

.emb-content.active {
  display: block;
}

.emb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.emb-grid-single {
  grid-template-columns: 1fr;
  max-width: 450px;
  margin: 0 auto;
}

.emb-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.emb-item:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.08);
}

.emb-item-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 10px;
}

.emb-item-body {
  padding: 16px;
}

.emb-item-featured {
  background: var(--sky-light);
  border-color: var(--sky);
}

.emb-item-featured .emb-item-img {
  background: white;
}

.emb-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}

.emb-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}

.emb-item-capacity {
  font-size: 13px;
  font-weight: 500;
  color: var(--sky-dark);
  background: var(--sky-light);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.emb-item-featured .emb-item-capacity {
  background: white;
}

.emb-item-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.emb-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sand);
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 24px;
}

.emb-note span {
  font-size: 20px;
  flex-shrink: 0;
}

.emb-note p {
  margin: 0;
  font-size: 14px;
  color: var(--navy);
}

@media (max-width: 768px) {
  .emb-tabs {
    flex-wrap: wrap;
  }
  
  .emb-tab {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .emb-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .emb-item {
    flex-direction: row;
  }
  
  .emb-item-img {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .emb-item-body {
    padding: 12px;
    flex: 1;
  }
  
  .emb-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 4px;
  }
  
  .emb-item-name {
    font-size: 15px;
  }
  
  .emb-item-desc {
    font-size: 13px;
  }
  
  .emb-grid-single .emb-item {
    flex-direction: column;
  }
  
  .emb-grid-single .emb-item-img {
    width: 100%;
    height: 100px;
  }
}

/* --- Checklist --- */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.checklist-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.checklist-icon {
  font-size: 28px;
}

.checklist-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin: 0;
}

.checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
}

.checklist-list .check {
  color: #10b981;
  font-weight: 600;
  flex-shrink: 0;
}

.checklist-list em {
  color: #9ca3af;
  font-style: normal;
}

.checklist-essential {
  border-top: 4px solid var(--navy);
}

.checklist-recommended {
  border-top: 4px solid var(--sky);
}

.checklist-kids {
  border-top: 4px solid var(--yellow);
}

.checklist-tip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 2px dashed #d1d5db;
  padding: 20px 24px;
  border-radius: 12px;
}

.checklist-tip span {
  font-size: 32px;
  flex-shrink: 0;
}

.checklist-tip p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Timeline Vertical --- */
.timeline-vertical {
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--sky) 100%);
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background: white;
  border: 3px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-item-highlight .timeline-marker {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.timeline-content {
  flex: 1;
  padding-top: 12px;
}

.timeline-time {
  display: inline-block;
  background: var(--sky-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.timeline-tip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--yellow);
  padding: 20px 24px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-tip span {
  font-size: 28px;
  flex-shrink: 0;
}

.timeline-tip p {
  margin: 0;
  font-size: 15px;
  color: var(--navy);
}

@media (max-width: 600px) {
  .timeline-vertical::before {
    left: 20px;
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .timeline-item {
    gap: 16px;
  }
}

/* --- Horaires --- */
.section-sky {
  background: var(--sky-light);
}

.horaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.horaire-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.horaire-card-peak {
  border: 2px solid var(--yellow);
  position: relative;
}

.horaire-card-peak::before {
  content: '⭐ Haute saison';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
}

.horaire-header {
  margin-bottom: 20px;
}

.horaire-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}

.horaire-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}

.horaire-label {
  font-size: 13px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.horaire-main {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.horaire-note {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.horaires-meteo {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--orange);
}

.meteo-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.meteo-content h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.meteo-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .horaires-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Sécurité --- */
.securite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.securite-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.securite-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.securite-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.securite-card li {
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
}

.securite-card li strong {
  color: var(--navy);
}

.securite-required {
  border-top: 4px solid #10b981;
}

.securite-forbidden {
  border-top: 4px solid #ef4444;
}

.securite-emergency {
  border-top: 4px solid var(--orange);
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sand);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.emergency-phone span {
  font-size: 28px;
}

.emergency-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 2px;
}

.emergency-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.emergency-tips p {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.emergency-tips ul {
  gap: 6px;
}

.emergency-tips li {
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .securite-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Bases --- */
.bases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.base-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.base-map {
  width: 100%;
  height: 160px;
  background: var(--sand);
}

.base-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.base-card-content {
  padding: 28px;
  position: relative;
}

.base-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
}

.base-badge-bugue {
  background: var(--sky);
  color: white;
}

.base-badge-limeuil {
  background: var(--yellow);
  color: var(--navy);
}

.base-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
}

.base-address {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.base-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.base-features li {
  font-size: 15px;
  color: #374151;
}

.base-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 700px) {
  .bases-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* --- FAQ Full --- */
.faq-full {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-full {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item-full:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-question-full {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question-full span:first-child {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  padding-right: 20px;
}

.faq-toggle-full {
  font-size: 28px;
  color: var(--sky);
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item-full.open .faq-toggle-full {
  transform: rotate(45deg);
}

.faq-answer-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-full.open .faq-answer-full {
  max-height: 300px;
}

.faq-answer-full p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  padding-bottom: 24px;
  margin: 0;
}

/* --- Contact CTA --- */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: white;
  margin-bottom: 8px;
}

.contact-cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin: 0;
}

.contact-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

@media (max-width: 700px) {
  .contact-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}