/* ============================================
   ROCHEBONNE-VACANCES.FR — Global Stylesheet
   Ultra-fast, SEO-optimized, mobile-first
   Matching domainederochebonne.com style
   ============================================ */

/* --- CSS Variables --- */
:root {
  --coral: #ff3b59;
  --coral-dark: #bd333c;
  --teal: #28bcae;
  --teal-dark: #20968b;
  --green: #0d8052;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-warm: #fdf6f0;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
  --font-heading: 'Alegreya', Georgia, serif;
  --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--coral-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center { text-align: center; }
.section { padding: 5rem 0; }

/* =====================
   TOP BAR
   ===================== */
.top-bar {
  background: var(--coral);
  color: white;
  padding: 0.45rem 0;
  font-size: 0.85rem;
}
.top-bar a { color: white; font-weight: 600; }
.top-bar a:hover { opacity: 0.85; color: white; }
.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar-item .icon { font-size: 0.9rem; }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 0.6rem 0;
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a,
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}
.nav-links li a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links li a:hover::after,
.nav-links a:hover::after,
.nav-links li a.active::after,
.nav-links a.active::after { width: 100%; }
.nav-links li a:hover,
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral-dark); color: white !important; }

/* Hamburger / Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}
.btn-coral,
.btn-primary {
  background: var(--coral);
  color: white !important;
}
.btn-coral:hover,
.btn-primary:hover {
  background: var(--coral-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,59,89,0.35);
}
.btn-white {
  background: white;
  color: var(--text) !important;
  border: 2px solid white;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: white !important;
}
.btn-teal:hover {
  background: var(--teal-dark);
  color: white !important;
  transform: translateY(-2px);
}
.btn-reserve {
  display: inline-block;
  background: var(--coral);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-reserve:hover {
  background: var(--coral-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,59,89,0.3);
}
.btn-discover {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 0.75rem;
}
.btn-discover:hover { color: var(--coral-dark); }

/* =====================
   HERO (Homepage full)
   ===================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slideshow .slide,
.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slideshow .slide.active,
.slideshow img.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}
.hero-content h1 {
  color: white;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.badge {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slide Navigation */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  border-radius: 8px;
  transition: var(--transition);
}
.slide-nav:hover { background: rgba(255,255,255,0.35); }
.slide-nav.prev { left: 1.5rem; }
.slide-nav.next { right: 1.5rem; }
.slide-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.indicator {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.indicator.active { background: white; transform: scale(1.2); }

/* =====================
   PAGE HERO (Subpages - shorter)
   ===================== */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero h1 {
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Hero light variant (contact) */
.hero-light {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-light .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-light h1 { color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: var(--teal);
  padding: 2.5rem 0;
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about { padding: 5rem 0; }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* =====================
   ACCOMMODATIONS (Homepage preview)
   ===================== */
.accommodations {
  padding: 5rem 0;
  background: var(--bg-light);
}
.accommodations h2 { text-align: center; }
.section-subtitle,
.subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.accommodation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.accommodation-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.accommodation-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-content {
  padding: 1.5rem;
}
.card-content h3 { margin-bottom: 0.3rem; }
.capacity {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.description {
  color: var(--text-light);
  font-size: 0.95rem;
}
.view-all { text-align: center; }

/* =====================
   FEATURES SECTION
   ===================== */
.features {
  padding: 5rem 0;
}
.features h2 { text-align: center; margin-bottom: 2.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.feature-item {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-item:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-warm);
}
.testimonials h2 { text-align: center; margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial-author {
  font-weight: 700;
  color: var(--coral);
  font-size: 0.9rem;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { margin-bottom: 2rem; font-size: 1.1rem; opacity: 0.95; }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb-section { padding: 0.75rem 0; background: var(--bg-light); }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.75rem 0;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { color: var(--teal-dark); }

/* =====================
   INTRO SECTION
   ===================== */
.intro-section {
  padding: 3rem 0;
}
.intro-section p,
.intro-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* =====================
   GITES SECTION (hebergements.html)
   ===================== */
.gites-section { padding: 4rem 0; }
.gites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.gite-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gite-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.gite-image,
.gite-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gite-content {
  padding: 1.5rem;
}
.gite-content h3 { margin-bottom: 0.3rem; font-size: 1.3rem; }
.gite-capacity {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.gite-features {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}
.gite-features li {
  padding: 0.2rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.gite-features li::before {
  content: '✓ ';
  color: var(--teal);
  font-weight: 700;
}

/* =====================
   AMENITIES SECTION (hebergements.html)
   ===================== */
.amenities-section {
  padding: 4rem 0;
  background: var(--bg-light);
}
.amenities-section h2 { text-align: center; margin-bottom: 2.5rem; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.amenity-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.amenity-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.amenity-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.amenity-item h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.amenity-item p { font-size: 0.85rem; color: var(--text-light); }

/* =====================
   PRICING SECTION (hebergements.html)
   ===================== */
.pricing-section {
  padding: 4rem 0;
  text-align: center;
}
.pricing-section h2 { margin-bottom: 1.5rem; }
.pricing-content { max-width: 700px; margin: 0 auto; }
.pricing-list {
  text-align: left;
  margin: 1.5rem auto;
  max-width: 500px;
}
.pricing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.pricing-cta { margin-top: 2rem; }

/* =====================
   ACTIVITY SECTIONS (activites.html)
   ===================== */
.activity-section { padding: 4rem 0; }
.activity-section:nth-child(even) { background: var(--bg-light); }
.activity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.activity-section:nth-child(odd) .activity-content { direction: ltr; }
.activity-section:nth-child(even) .activity-content { direction: rtl; }
.activity-section:nth-child(even) .activity-content > * { direction: ltr; }
.activity-text h2 { margin-bottom: 1rem; }
.activity-text p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
}
.activity-text ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}
.activity-text li {
  color: var(--text-light);
  padding: 0.2rem 0;
  font-size: 0.95rem;
}
.activity-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =====================
   MAP SECTION
   ===================== */
.map-section {
  padding: 3rem 0;
}
.map-section h2 { text-align: center; margin-bottom: 1.5rem; }
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =====================
   CONTACT SECTION (contact.html)
   ===================== */
.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon { font-size: 1.5rem; min-width: 40px; text-align: center; }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-info-item p { color: var(--text-light); font-size: 0.95rem; }
.contact-info-item a { color: var(--coral); font-weight: 600; }

.contact-form-wrapper { }
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40,188,174,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* =====================
   PRACTICAL INFO (contact.html)
   ===================== */
.practical-info { padding: 4rem 0; background: var(--bg-light); }
.practical-info h2 { text-align: center; margin-bottom: 2rem; }
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.practical-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.practical-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}
.practical-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 1.5rem;
}
.footer-grid,
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-column h4,
.footer-section h4 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 0.3rem 0;
}
footer a:hover { color: var(--coral); }
.footer-address,
.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =====================
   ANIMATIONS
   ===================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: flex; }

  .hero { min-height: 70vh; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .about-image img { height: 280px; }
  .activity-content {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .activity-content > * { direction: ltr !important; }
  .activity-image img { height: 250px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section, .about, .features, .testimonials { padding: 3rem 0; }
  .top-bar-content { gap: 1rem; font-size: 0.8rem; }
  .slide-nav { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .hero-badges { gap: 0.5rem; }
  .badge { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
  .gites-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   Key Facts Section (boost GEO Health: Definitions, Fact Density,
   Summary Section - optimisé pour AI Overview / LLM crawlers)
   ================================================================= */
.key-facts-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #faf8f3 0%, #f0ebe0 100%);
}
.key-facts-container {
  max-width: 1200px;
  margin: 0 auto;
}
.key-facts-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2c3e2d;
  text-align: center;
  margin-bottom: 1.5rem;
}
.key-facts-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: center;
}
/* Definition list = <dl><dt>label</dt><dd>desc</dd></dl> */
dl.key-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
dl.key-facts-grid dt {
  background: #fff;
  padding: 1.25rem 1.5rem 0.25rem 1.5rem;
  border-left: 4px solid #8b6f47;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 1.1rem;
  color: #8b6f47;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
dl.key-facts-grid dd {
  background: #fff;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  border-left: 4px solid #8b6f47;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
/* Sur grille, chaque paire dt+dd compte comme 2 cellules — on les fusionne visuellement */
dl.key-facts-grid dt { margin-bottom: -1px; }
dl.key-facts-grid dd { margin-top: 0; }

/* Blockquote citable (boost Quotability Frase) */
blockquote.key-quote {
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  padding: 1.5rem 2rem;
  background: #fff;
  border-left: 5px solid #8b6f47;
  border-radius: 4px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
blockquote.key-quote::before {
  content: """;
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 4rem;
  color: #8b6f47;
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
blockquote.key-quote p {
  margin: 0 0 0.75rem 0;
}
blockquote.key-quote footer {
  font-style: normal;
  font-size: 0.9rem;
  color: #8b6f47;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 768px) {
  dl.key-facts-grid { grid-template-columns: 1fr; }
  .key-facts-section { padding: 3rem 1.25rem; }
  .key-facts-container h2 { font-size: 1.8rem; }
  blockquote.key-quote { padding: 1.25rem 1.5rem; font-size: 1rem; }
}

/* =================================================================
   Definitions Section (boost AI Visibility: weak_definitions Frase)
   ================================================================= */
.definitions-section {
  padding: 4rem 2rem;
  background: #fff;
}
.definitions-container {
  max-width: 900px;
  margin: 0 auto;
}
.definitions-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2c3e2d;
  text-align: center;
  margin-bottom: 1.25rem;
}
.definitions-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  margin-bottom: 2.5rem;
  font-style: italic;
}
dl.definitions-list {
  margin: 0;
  padding: 0;
}
dl.definitions-list dt {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #8b6f47;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid #8b6f47;
}
dl.definitions-list dt:first-of-type { margin-top: 0; }
dl.definitions-list dd {
  margin: 0 0 0 1rem;
  padding: 0.5rem 0 1.25rem 0;
  line-height: 1.7;
  color: #444;
  border-bottom: 1px solid #f0ebe0;
}
dl.definitions-list dd:last-of-type { border-bottom: none; }
@media (max-width: 768px) {
  .definitions-section { padding: 3rem 1.25rem; }
  .definitions-container h2 { font-size: 1.8rem; }
  dl.definitions-list dt { font-size: 1.05rem; }
}

/* =================================================================
   Facts Section (boost AI Visibility: low_fact_density Frase)
   ================================================================= */
.facts-section {
  padding: 4rem 2rem;
  background: #faf8f3;
}
.facts-container {
  max-width: 1100px;
  margin: 0 auto;
}
.facts-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2c3e2d;
  text-align: center;
  margin-bottom: 1.25rem;
}
.facts-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  margin-bottom: 2.5rem;
  font-style: italic;
}
ul.facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.facts-list li {
  background: #fff;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  border-left: 3px solid #8b6f47;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
ul.facts-list li strong { color: #2c3e2d; }
ul.facts-list li cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #888;
  font-style: normal;
}
ul.facts-list li cite a {
  color: #8b6f47;
  text-decoration: none;
  border-bottom: 1px dotted #8b6f47;
}
ul.facts-list li cite a:hover { color: #6b5535; }
@media (max-width: 768px) {
  .facts-section { padding: 3rem 1.25rem; }
  .facts-container h2 { font-size: 1.8rem; }
  ul.facts-list li { padding: 1rem 1.25rem; font-size: 0.95rem; }
}

/* =================================================================
   Explore Section (résout dead_end_page : liens internes sortants)
   ================================================================= */
.explore-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #faf8f3 0%, #f0ebe0 100%);
}
.explore-container {
  max-width: 1100px;
  margin: 0 auto;
}
.explore-container h2 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #2c3e2d;
  text-align: center;
  margin-bottom: 1rem;
}
.explore-intro {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-style: italic;
}
ul.explore-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
ul.explore-list li {
  list-style: none;
}
ul.explore-list a {
  display: block;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 8px;
  color: #8b6f47;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #e8e6e1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}
ul.explore-list a:hover {
  background: #8b6f47;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.25);
}
@media (max-width: 768px) {
  .explore-section { padding: 3rem 1.25rem; }
  .explore-container h2 { font-size: 1.8rem; }
  ul.explore-list { grid-template-columns: 1fr; }
}

/* =================================================================
   Cross-language sitemap (résout pages orphelines + boost AI Visibility)
   ================================================================= */
.cross-language-sitemap {
  background: #0a1628;
  color: #c0bfbd;
  padding: 2.5rem 2rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
}
.cross-language-sitemap .cls-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cross-language-sitemap .cls-block h4 {
  color: #e8e6e1;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
}
.cross-language-sitemap .cls-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cross-language-sitemap .cls-block li { margin-bottom: 0.4rem; }
.cross-language-sitemap .cls-block a {
  color: #9ca0a8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.cross-language-sitemap .cls-block a:hover { color: #fff; }
@media (max-width: 768px) {
  .cross-language-sitemap .cls-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .cross-language-sitemap { padding: 2rem 1.25rem; }
}

/* =================================================================
   Takeaways Section (boost GEO Health: Takeaways, Quotability)
   ================================================================= */
.takeaways-section {
  padding: 4rem 2rem;
  background: #fff;
}
.takeaways-container {
  max-width: 900px;
  margin: 0 auto;
}
.takeaways-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2c3e2d;
  text-align: center;
  margin-bottom: 2.5rem;
}
.takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: takeaway;
}
.takeaways-list li {
  position: relative;
  padding: 1.25rem 1.5rem 1.25rem 4rem;
  margin-bottom: 1rem;
  background: #faf8f3;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  counter-increment: takeaway;
}
.takeaways-list li::before {
  content: counter(takeaway);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #8b6f47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.takeaways-list li strong {
  color: #2c3e2d;
}
@media (max-width: 768px) {
  .takeaways-section { padding: 3rem 1.25rem; }
  .takeaways-container h2 { font-size: 1.8rem; }
  .takeaways-list li { padding: 1rem 1rem 1rem 3.5rem; }
  .takeaways-list li::before { width: 1.85rem; height: 1.85rem; font-size: 0.9rem; }
}
