:root {
  /* Premium Nature Palette */
  --color-primary: #3a431b; /* Original Logo Green */
  --color-accent: #6d141b;  /* Shutters Red */
  --color-accent-hover: #4a0d12;
  --color-bg: #f7f5f0;      /* Soft Beige */
  --color-bg-alt: #f7f5f0;  /* alias */
  --color-surface: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-display: 'Playfair Display', serif; /* alias for legacy usage */
  --font-sans: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(211, 95, 70, 0.3);
}

.btn:hover::before {
  transform: translateX(0);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background-color: var(--color-primary);
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}


.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo img {
  height: 40px;
  transition: all var(--transition-smooth);
}

.logo h1 {
  font-size: 1.5rem;
  color: white;
  transition: color var(--transition-smooth);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-surface);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

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

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  color: var(--color-text) !important;
  padding: 0.8rem 1.5rem;
  display: block;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  font-size: 0.9rem;
}

.dropdown-content a::after {
  display: none;
}

.dropdown-content a:hover {
  background-color: var(--color-bg);
  color: var(--color-accent) !important;
}

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

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('images/exterieur/gite-chalencon-ardeche-vue-exterieure.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: bgZoom 20s infinite alternate linear;
}

@keyframes bgZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(44, 62, 45, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards ease-out;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
  color: white;
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* Presentation Section */
.presentation {
  background-color: var(--color-surface);
  border-radius: 40px;
  margin: -60px 2rem 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  padding: 5rem 3rem;
  text-align: center;
}

.presentation h2 {
  font-size: 2.5rem;
}

.presentation-text {
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.feature-card {
  background: var(--color-bg);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: white;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Chambres Section */
.chambres {
  padding: 8rem 0;
}

.chambres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.chambre-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
}

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

.chambre-img-wrapper {
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.chambre-content {
  padding: 2.5rem;
}

.chambre-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.chambre-meta {
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--color-accent);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition-smooth);
}

footer a:hover {
  color: white;
  border-bottom-color: white;
}

/* Page Chambres Detail */
.chambres-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/chambre1/gite-chalencon-ardeche-chambre-1-vue-ensemble.webp');
  background-size: cover;
  background-position: center;
  color: white;
  margin-bottom: 4rem;
}
.chambres-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 45, 0.7);
}
.chambres-hero .hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s forwards ease-out;
}
.chambres-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.chambre-detail {
  margin-bottom: 8rem;
}

.chambre-detail .chambre-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chambre-detail:nth-child(even) .chambre-content-split {
  direction: rtl;
}

.chambre-detail:nth-child(even) .chambre-info {
  direction: ltr;
}

.chambre-info h3 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.chambre-info .specs {
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.chambre-info ul {
  list-style: none;
  margin-top: 1.5rem;
}

.chambre-info li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-light);
}

.chambre-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slideshow-slide.active {
  opacity: 1;
  z-index: 2;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.slideshow-btn:hover {
  background: white;
  color: var(--color-accent);
}

.slideshow-btn.prev {
  left: 15px;
}

.slideshow-btn.next {
  right: 15px;
}

/* Formulaire */
.booking-form-section {
  background: var(--color-surface);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-top: 4rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  flex: 100%;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--color-bg);
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(109, 20, 27, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.checkbox-group label,
.checkbox-accept {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

/* Modalités & Services */
.services-grid, .conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.service-card, .condition-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover, .condition-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(109, 20, 27, 0.2); /* Accent color touch */
}

.service-card h4, .condition-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card p, .condition-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.service-card p strong, .condition-card p strong {
  color: var(--color-text);
  font-weight: 600;
}

.note-inclusive {
  background: var(--color-primary);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  margin: 4rem 0;
}

.note-inclusive h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.note-inclusive ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  list-style: none;
}

.note-inclusive ul li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.note-inclusive ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-bg);
  font-weight: bold;
}

/* =============================================
   PAGES SECONDAIRES : Alentours & Randonnées
   ============================================= */

/* Hero des pages secondaires */
.activities-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/alentours/chalencon-village-caractere-ardeche.webp');
  background-size: cover;
  background-position: center;
  color: white;
  margin-bottom: 0;
  padding-top: 80px;
}

.randonnees-hero {
  background-image: url('images/vtt-randonnee-chalencon-ardeche.webp');
}

.activities-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 62, 45, 0.75) 0%, rgba(0,0,0,0.5) 100%);
}

.activities-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeUp 1s forwards ease-out;
}

.activities-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.activities-hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

/* Section principale des activités */
.activities-main {
  padding: 0 0 6rem;
}

.activities-main h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-top: 5rem;
}

.activities-main > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* Cartes d'activités alternées */
.activity-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

.activity-card.reverse {
  direction: rtl;
}

.activity-card.reverse .activity-content,
.activity-card.reverse .activity-image {
  direction: ltr;
}

.activity-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.activity-content .distance {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.activity-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.activity-content ul {
  list-style: none;
  padding: 0;
}

.activity-content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.activity-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.activity-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Galerie Rivière sauvage */
.river-gallery {
  max-width: 1200px;
  margin: -2.5rem auto 6rem;
  padding: 0 2rem;
}

.river-gallery-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.river-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.river-gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
}

/* Section Nos ânes */
.anes-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.anes-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8rem;
}

.anes-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: block;
}

.anes-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.anes-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  color: var(--color-text-light);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.anes-list svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 3px;
}

.anes-affiche {
  max-width: 520px;
  margin: 3rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.anes-affiche img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bloc intro ânes : texte + flyer carré côte à côte (page Extérieurs) */
.anes-intro {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.anes-intro-flyer {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.anes-intro-flyer img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .anes-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .anes-intro-flyer {
    max-width: 420px;
    margin: 0 auto;
  }
}

.zoomable {
  cursor: zoom-in;
}

/* Grille photos ânes (page Extérieurs) */
.anes-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}

.anes-gallery figure {
  border-radius: 8px;
}

.anes-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.anes-gallery figure {
  margin: 0;
  overflow: hidden;
}

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

@media (max-width: 600px) {
  .anes-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .anes-gallery img {
    height: 150px;
  }
}

@media (max-width: 900px) {
  .anes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Section Avis Google */
.avis-section {
  background: var(--color-bg);
  padding: 5rem 2rem;
}

.avis-sous {
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin: 0 auto 2.8rem;
}

.avg {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.avg-tete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.avg-etoiles {
  display: inline-flex;
  line-height: 0;
}

.avg-etoile {
  width: 20px;
  height: 20px;
  color: #f5b301;
}

.avg-etoile--vide {
  color: rgba(0, 0, 0, 0.15);
}

.avg-tete .avg-etoile {
  width: 26px;
  height: 26px;
}

.avg-note {
  font-size: 1.1rem;
  color: var(--color-primary);
}

.avg-note b {
  font-size: 1.6rem;
  font-family: var(--font-display);
}

.avg-compte {
  color: var(--color-text-light);
  font-weight: 600;
}

.avg-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.avg-avis {
  margin: 0;
  background: var(--color-surface);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.avg-avis .avg-etoile {
  width: 18px;
  height: 18px;
}

.avg-texte {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.avg-auteur {
  background: none;
  padding: 0;
  text-align: left;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: auto;
}

.avg-auteur b {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.avg-quand {
  color: var(--color-text-light);
}

.avg-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.2rem;
  color: #fff;
  background-color: var(--color-accent);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.avg-lien:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.avg-attribution {
  color: var(--color-text-light);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Section Conseils pratiques */
.practical-tips {
  background: var(--color-primary);
  color: white;
  padding: 5rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.practical-tips h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.tip {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.tip h4 {
  color: var(--color-bg);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.tip ul {
  list-style: none;
  padding: 0;
}

.tip ul li {
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tip ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-bg);
  font-weight: bold;
}

/* Section Saisons */
.seasons-info {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
}

.seasons-info h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.season {
  background: var(--color-surface);
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-accent);
  transition: all var(--transition-smooth);
}

.season:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.season h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.season p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  margin: 4rem 0 0;
}

.cta-section h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .btn {
  background: white;
  color: var(--color-primary);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.cta-section .btn:hover {
  background: var(--color-bg);
}

/* Badge difficulté randonnée */
.difficulty-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.difficulty-badge.facile { background: #e8f5e9; color: #2e7d32; }
.difficulty-badge.intermediaire { background: #fff3e0; color: #e65100; }
.difficulty-badge.difficile { background: #ffebee; color: #c62828; }
.difficulty-badge.familiale { background: #e3f2fd; color: #1565c0; }

/* Tarifs Grids */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tarif-card {
  background: var(--color-surface);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.tarif-card.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent), var(--shadow-md);
}

.tarif-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.tarif-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 0;
}

.tarif-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.tarif-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tarif-prix {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.tarif-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tarif-ligne-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.tarif-ligne-prix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
    pointer-events: none;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  
  .nav-links li {
    margin: 0.8rem 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font-display);
    letter-spacing: 2px;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    width: 100%;
    margin-top: 1rem;
    padding: 0;
  }
  
  .dropdown.open .dropdown-content {
    display: block;
  }
  
  .dropdown-content li {
    margin: 0.5rem 0;
  }
  
  .dropdown-content a {
    font-size: 1.2rem;
    color: white !important;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    font-weight: 300;
    padding: 0.5rem;
    text-transform: none;
  }
  
  .dropdown-content a:hover,
  .dropdown-content a:active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 4px;
  }

  
  .presentation { margin: -40px 1rem 0; padding: 3rem 1.5rem; }
  .chambres-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  
  .chambre-detail .chambre-content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .chambre-detail:nth-child(even) .chambre-content-split {
    direction: ltr;
  }
  
  .activity-card {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 0;
  }
  
  .activity-card.reverse {
    display: flex;
    flex-direction: column;
    direction: ltr;
  }
  
  .activity-card.reverse .activity-content,
  .activity-card.reverse .activity-image {
    direction: ltr;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}


/* CTA Buttons pour Contact */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background-color: var(--color-surface);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  margin-bottom: 1rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background-color: var(--color-accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cta-button-icon {
  font-size: 1.8rem;
}

/* Contact Layout Redesign */
.contact-main {
  padding: 0 0 5rem 0;
  background-color: var(--color-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: -10rem;
  position: relative;
  z-index: 10;
}

.contact-left, .contact-right {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-left h2, .contact-right h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form .form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: var(--color-bg-alt);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(109, 20, 27, 0.1);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-left, .contact-right {
    padding: 1.5rem;
  }
}

/* Section title — utilisé sur tarifs et autres pages */
.section-title {
  text-align: center;
  padding-top: 5rem;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--color-primary);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* Contact form — espacement entre champs */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

/* Placeholder page — "bientôt disponible" */
.placeholder-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.placeholder-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.placeholder-page p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.placeholder-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}
