@import "tailwindcss";

/* === Language Switcher === */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
  z-index: 100;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d4c9b0;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5C4033;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #b8a98a;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-code {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.lang-chevron {
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.lang-chevron-open {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: auto;
  background: white;
  border: 1px solid #d4c9b0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 80px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  text-decoration: none;
  color: #5C4033;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: #F0EAD2;
}

:root {
  --background: #ffffff;
  --foreground: #171717;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
  --font-lora: var(--font-lora);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  /* 3️⃣ BACKGROUND GÉNÉRAL DU SITE - À MODIFIER ICI */
  background: #F6F1E9; /* Beige très clair pour plus de luminosité - changez cette couleur si nécessaire */
  color: var(--foreground);
  font-family: var(--font-geist-sans), "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Styles pour le container de navigation */
.navigation-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 1️⃣ ZONE DES BOUTONS DE NAVIGATION - FOND UNIFORME */
.header {
  padding: 1.6rem 2rem;
  /* COULEUR DE FOND NAVIGATION - À MODIFIER ICI */
  background: #F0EAD2; /* Beige/ocre clair - vous pouvez changer cette couleur */
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.logo-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex: 1;
}

.nav-bubble {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #F0EAD2;
  color: #5C4033;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.nav-bubble:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.nav-bubble-active {
  background-color: #5C4033 !important;
  color: #F0EAD2 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Styles responsive pour mobile */
@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-list {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .nav-bubble {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}

/* Styles pour la section de contenu */
.content-section {
  flex: 1;
  padding: 1.25rem 2rem 2rem 2rem; /* Ajustement fin du padding-top pour un espacement plus serré avec la navigation */
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.content-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Styles pour le formulaire de contact */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #5C4033;
  font-size: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #A3B18A;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background-color: #5C4033;
  color: #F0EAD2;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 2rem auto 0;
}

.form-submit:hover {
  background-color: #A3B18A;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.form-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.submit-message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 500;
}

.submit-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.submit-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Numéro de téléphone en dessous du formulaire */
.contact-phone-section {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-phone-text {
  font-size: 1.5rem;
  color: #5C4033;
  margin: 0;
}

.phone-number {
  font-weight: 700;
  color: #5C4033;
}

/* Responsive design pour mobile */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }
  
  .contact-phone-text {
    font-size: 1.25rem;
  }
  
  .nav-list {
    gap: 0.5rem;
    justify-content: center;
  }
  
  .nav-bubble {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .content-section h1 {
    font-size: 2rem;
    margin: 1.5rem 0;
  }
  
  .content-text {
    font-size: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .nav-list {
    gap: 0.4rem;
  }
  
  .nav-bubble {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
  
  .content-section {
    padding: 1rem;
  }
  
  .content-section h1 {
    font-size: 1.75rem;
    margin: 1rem 0;
  }
  
  .content-text {
    font-size: 0.95rem;
  }
  
  .content-text p {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 0 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  
  .form-submit {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* 2️⃣ ZONE DES TITRES ET DESCRIPTIONS - AVEC IMAGES DE FOND */
.activities-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem 2rem 2rem; /* Ajustement fin du padding-top pour un espacement plus serré avec la navigation */
}

/* 🎨 STYLES POUR LES EN-TÊTES DE PAGES AVEC IMAGES DE FOND */

/* 🎨 SECTION HERO - Taille uniforme sur toutes les pages principales (Accueil, Chambres d'hôtes, Gîte, Jardin, Environs, Contact)
   Largeur : 90% (desktop), 100% (tablette/mobile)
   Hauteur : 320px (desktop), 220px (tablette), 160px (mobile)
   Ces valeurs assurent une cohérence visuelle sur tout le site.
*/
.hero-section {
  width: 90%;
  min-height: 400px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-section {
    width: 100%;
    min-height: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    width: 100%;
    min-height: 200px;
    height: 200px;
  }
}

/* Garder la police identique */
.hero-section h1,
.hero-section p {
  font-size: inherit;
  line-height: inherit;
}

/* 📱 Responsive pour la section hero */
@media (max-width: 768px) {
  .hero-section {
    width: 100%; /* Pleine largeur sur tablette */
    height: 85%; /* Légèrement plus haut sur tablette */
  }
}

@media (max-width: 480px) {
  .hero-section {
    width: 100%; /* Pleine largeur sur mobile */
    height: 90%; /* Presque pleine hauteur sur mobile */
  }
}

/* 🏨 ESPACEMENT SPÉCIFIQUE POUR LA PAGE CHAMBRES D'HÔTES */
.chambre-hotes-header.hero-section {
  margin-top: 2rem; /* Espace en haut pour éviter le contact avec la navigation */
}

/* 📱 Responsive pour l'espacement des chambres d'hôtes */
@media (max-width: 768px) {
  .chambre-hotes-header.hero-section {
    margin-top: 1.5rem; /* Espace réduit sur tablette */
  }
}

@media (max-width: 480px) {
  .chambre-hotes-header.hero-section {
    margin-top: 1rem; /* Espace minimal sur mobile */
  }
}

/* 🏠 ESPACEMENT SPÉCIFIQUE POUR LA PAGE D'ACCUEIL */
.accueil-header.hero-section {
  margin-top: 2rem; /* Espace en haut pour éviter le contact avec la navigation */
}

/* 📱 Responsive pour l'espacement de la page d'accueil */
@media (max-width: 768px) {
  .accueil-header.hero-section {
    margin-top: 1.5rem; /* Espace réduit sur tablette */
  }
}

@media (max-width: 480px) {
  .accueil-header.hero-section {
    margin-top: 1rem; /* Espace minimal sur mobile */
  }
}

/* 🌿 ESPACEMENT SPÉCIFIQUE POUR LA PAGE JARDIN */
.jardin-header.hero-section {
  margin-top: 2rem; /* Espace en haut pour éviter le contact avec la navigation */
}

/* 📞 ESPACEMENT SPÉCIFIQUE POUR LA PAGE CONTACT */
.contacts-header.hero-section {
  margin-top: 2rem; /* Espace en haut pour éviter le contact avec la navigation */
}

/* 🎯 ESPACEMENT SPÉCIFIQUE POUR LA PAGE ACTIVITÉS */
.activites-header.hero-section {
  margin-top: 2rem; /* Espace en haut pour éviter le contact avec la navigation */
}

/* 🗺️ ESPACEMENT SPÉCIFIQUE POUR LA PAGE ENVIRONS */
.environs-header.hero-section {
  margin-top: 2rem; /* Espace en haut pour éviter le contact avec la navigation */
}

/* 📱 Responsive pour tous les espacements */
@media (max-width: 768px) {
  .jardin-header.hero-section,
  .contacts-header.hero-section,
  .activites-header.hero-section,
  .environs-header.hero-section {
    margin-top: 1.5rem; /* Espace réduit sur tablette */
  }
}

@media (max-width: 480px) {
  .jardin-header.hero-section,
  .contacts-header.hero-section,
  .activites-header.hero-section,
  .environs-header.hero-section {
    margin-top: 1rem; /* Espace minimal sur mobile */
  }
}

/* Style de base pour tous les en-têtes de page */
.page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

/* Overlay pour améliorer la lisibilité du texte sur toutes les images */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Overlay sombre - ajustez l'opacité si nécessaire */
  border-radius: 15px;
}

.page-header * {
  position: relative;
  z-index: 1;
  color: white; /* Texte blanc pour contraster avec l'image */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem 0;
  font-family: var(--font-lora), serif;
}

.page-header .intro-text {
  padding: 2rem;
  margin-bottom: 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-header .intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 📸 IMAGES DE FOND SPÉCIFIQUES POUR CHAQUE PAGE - À MODIFIER ICI */

/* Page Accueil */
.accueil-header {
  background-image: url('https://pub-ad2f7e4aa0604ffcbfb24f59c89d840a.r2.dev/orval/jardin/banniere-gite-jardin-de-margny-vue-orval-coucher-soleil.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5e7eb; /* fallback */
}

/* Espacement spécifique du titre pour la page Accueil */
.accueil-header h1 {
  margin: 2rem 0 0.75rem 0; /* Espacement harmonieux inspiré de la page chambre d'hôtes */
}

/* Page Gîte - SUPPRIMÉ : utilisation de structure personnalisée */

/* Page Chambres d'hôtes */
.chambre-hotes-header {
  background-image: url('https://pub-ad2f7e4aa0604ffcbfb24f59c89d840a.r2.dev/orval/chambres_d_hotes/cuisine-chambres-hotes-jardin-de-margny.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5e7eb; /* fallback */
}

/* Page Jardin - Image gérée par PageHeader.tsx avec next/image */
.jardin-header {
  /* background-image supprimé - géré par PageHeader.tsx */
}

/* Page Environs */
.environs-header {
  background-image: url('https://pub-ad2f7e4aa0604ffcbfb24f59c89d840a.r2.dev/orval/jardin/campagne-gaumaise-vue-champs-jardin-de-margny.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5e7eb; /* fallback */
}

/* Page Contacts */
.contacts-header {
  background-image: url('https://pub-ad2f7e4aa0604ffcbfb24f59c89d840a.r2.dev/orval/logo/logo_original.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5e7eb; /* fallback */
}

/* Espace pour le contenu spécifique de chaque page sous l'en-tête */
.page-content {
  padding: 2rem 0;
  /* Styles pour le contenu spécifique de chaque page à développer ultérieurement */
}

/* 🏨 STYLES POUR LES CARTES DES CHAMBRES D'HÔTES */

.chambres-hotes-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem 2rem;
}

.chambres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.chambre-card {
  position: relative;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.chambre-card:active {
  transform: translateY(-3px);
}

.chambre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chambre-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.chambre-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.chambre-card:hover .chambre-image {
  transform: scale(1.08);
  filter: blur(5px) brightness(0.92);
}

.chambre-card:hover .chambre-overlay {
  opacity: 1;
}

.chambre-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;          /* plus de carré noir */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;                       /* masqué par défaut, révélé au survol */
  transition: opacity 0.35s ease;
}

/* Encart lisible par-dessus l'image floutée */
.chambre-overlay .chambre-description {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 15px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

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

.chambre-description {
  color: white;
  text-align: center;
  padding: 1rem;
}

.chambre-description h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #7C9B71;
  font-family: var(--font-lora), serif;
}

.chambre-description p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chambre-prix {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: #A3B18A !important;
  margin-top: 1rem !important;
}

.chambre-nom {
  padding: 1rem;
  text-align: center;
  color: #5C4033;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-lora), serif;
}

/* Responsive pour les cartes */
@media (max-width: 768px) {
  .chambres-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .chambre-image-container {
    height: 200px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .chambres-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* 📸 STYLES POUR LA PAGE DE DÉTAIL DES CHAMBRES */

.chambre-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.chambre-detail-back-button {
  background: #A3B18A;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.chambre-detail-back-button:hover {
  background: #5C4033;
  transform: translateX(-2px);
}

.chambre-detail-title {
  font-size: 2.5rem;
  color: #5C4033;
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-lora), serif;
  font-weight: 700;
}

/* Styles du carrousel */
.chambre-carousel {
  margin-bottom: 3rem;
}

.carousel-container {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.carousel-image-container {
  width: 100%;
  height: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(92, 64, 51, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:hover {
  background: rgba(92, 64, 51, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-button-prev {
  left: 20px;
}

.carousel-button-next {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #5C4033;
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background: #A3B18A;
}

/* Styles des informations */
.chambre-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.chambre-description,
.chambre-equipements {
  background: #fafafa;
  padding: 2rem;
  border-radius: 15px;
}

.chambre-description h2,
.chambre-equipements h2 {
  color: #5C4033;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: var(--font-lora), serif;
  border-bottom: 2px solid #A3B18A;
  padding-bottom: 0.5rem;
}

.chambre-description p {
  line-height: 1.7;
  color: #333;
  font-size: 1rem;
  text-align: justify;
}

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

.chambre-equipements li {
  padding: 0.5rem 0;
  color: #333;
  position: relative;
  padding-left: 1.5rem;
}

.chambre-equipements li:before {
  content: "✓";
  color: #A3B18A;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.chambre-details {
  grid-column: 1 / -1;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.detail-item {
  font-size: 1.1rem;
  color: #333;
}

.detail-item strong {
  color: #5C4033;
}

/* Styles du prix */
.chambre-prix-section {
  background: linear-gradient(135deg, #5C4033, #A3B18A);
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.prix-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.prix-montant {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-lora), serif;
}

.prix-info {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* Styles du bouton de réservation */
.chambre-reservation {
  text-align: center;
}

.reservation-button {
  background: linear-gradient(135deg, #A3B18A, #5C4033);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reservation-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive pour la page de détail */
@media (max-width: 768px) {
  .chambre-detail {
    padding: 1rem;
  }
  
  .chambre-detail-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .carousel-container {
    height: 250px;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-button-prev {
    left: 10px;
  }
  
  .carousel-button-next {
    right: 10px;
  }
  
  .chambre-info-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .chambre-description,
  .chambre-equipements {
    padding: 1.5rem;
  }
  
  .chambre-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .prix-montant {
    font-size: 2.5rem;
  }
  
  .reservation-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 200px;
  }
  
  .prix-montant {
    font-size: 2rem;
  }
}

/* 📅 STYLES POUR LE CALENDRIER CHAMBRE AUBERGINE */

.chambre-aubergine-calendar {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #A3B18A;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.calendar-header h3 {
  color: #5C4033;
  font-size: 1.3rem;
  margin: 0;
  font-family: var(--font-lora), serif;
}

.refresh-button {
  background: #A3B18A;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.refresh-button:hover:not(:disabled) {
  background: #5C4033;
  transform: translateY(-1px);
}

.refresh-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.events-container {
  min-height: 100px;
}

.loading-state,
.error-state,
.empty-state {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.loading-state {
  background: #f8f9fa;
  color: #666;
}

.error-state {
  background: #ffeaa7;
  color: #d63031;
}

.empty-state {
  background: #d1f2a5;
  color: #27ae60;
}

.retry-button {
  background: #d63031;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.retry-button:hover {
  background: #c0392b;
}

.events-list {
  margin-top: 1rem;
}

.events-count {
  font-weight: 600;
  color: #5C4033;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.event-item {
  background: #fafafa;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid #A3B18A;
  transition: all 0.3s ease;
}

.event-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.event-title {
  font-weight: 600;
  color: #5C4033;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.event-date {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.calendar-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.calendar-info {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin: 0;
}

/* Responsive pour le calendrier */
@media (max-width: 768px) {
  .calendar-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .calendar-header h3 {
    text-align: center;
  }
  
  .refresh-button {
    align-self: center;
  }
}

/* 🏡 STYLES POUR LE CARROUSEL DU GÎTE */

.gite-carousel {
  margin: 2rem 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-left: 4px solid #4CAF50;
}

.gite-carousel-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8f9fa;
}

.gite-carousel-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gite-carousel-image {
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gite-carousel-image-container:hover .gite-carousel-image {
  opacity: 0.9;
}

/* Icône de zoom sur l'image */
.gite-carousel-zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(76, 175, 80, 0.8);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.gite-carousel-image-container:hover .gite-carousel-zoom-icon {
  opacity: 1;
}

/* Flèches de navigation */
.gite-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(76, 175, 80, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gite-carousel-button:hover {
  background: rgba(46, 125, 50, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gite-carousel-button-prev {
  left: 15px;
}

.gite-carousel-button-next {
  right: 15px;
}

/* Indicateurs de pagination */
.gite-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
}

.gite-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #4CAF50;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gite-carousel-indicator:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: scale(1.2);
}

.gite-carousel-indicator.active {
  background: #4CAF50;
  transform: scale(1.3);
}

/* Légende et compteur */
.gite-carousel-caption {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: white;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gite-carousel-caption p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
}

.gite-carousel-counter {
  font-size: 0.9rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  margin-left: 1rem;
}

/* Responsive pour le carrousel du gîte */
@media (max-width: 768px) {
  .gite-carousel {
    margin: 1rem 0;
  }
  
  .gite-carousel-container {
    aspect-ratio: 4/3;
  }
  
  .gite-carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .gite-carousel-button-prev {
    left: 10px;
  }
  
  .gite-carousel-button-next {
    right: 10px;
  }
  
  .gite-carousel-caption {
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .gite-carousel-caption p {
    font-size: 0.9rem;
  }
  
  .gite-carousel-counter {
    margin-left: 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gite-carousel-container {
    aspect-ratio: 1/1;
  }
  
  .gite-carousel-button {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .gite-carousel-indicators {
    padding: 0.75rem;
    gap: 0.3rem;
  }
  
  .gite-carousel-indicator {
    width: 10px;
    height: 10px;
  }
  
  .gite-carousel-zoom-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    top: 10px;
    right: 10px;
  }
}

/* 🖼️ STYLES POUR LA LIGHTBOX DU GÎTE */

.gite-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  animation: lightboxFadeIn 0.3s ease forwards;
}

@keyframes lightboxFadeIn {
  to { opacity: 1; }
}

.gite-lightbox-container {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gite-lightbox-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gite-lightbox-image {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/* Bouton de fermeture */
.gite-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(76, 175, 80, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gite-lightbox-close:hover {
  background: rgba(46, 125, 50, 0.9);
  transform: scale(1.1);
}

/* Navigation dans la lightbox */
.gite-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(76, 175, 80, 0.8);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gite-lightbox-nav:hover {
  background: rgba(46, 125, 50, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gite-lightbox-nav-prev {
  left: -80px;
}

.gite-lightbox-nav-next {
  right: -80px;
}

/* Informations de l'image dans la lightbox */
.gite-lightbox-info {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  background: rgba(76, 175, 80, 0.9);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gite-lightbox-info p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
}

.gite-lightbox-counter {
  font-size: 0.9rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  margin-left: 1rem;
}

/* Responsive pour la lightbox */
@media (max-width: 768px) {
  .gite-lightbox-container {
    width: 95%;
    height: 85%;
  }
  
  .gite-lightbox-close {
    top: -40px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .gite-lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .gite-lightbox-nav-prev {
    left: -60px;
  }
  
  .gite-lightbox-nav-next {
    right: -60px;
  }
  
  .gite-lightbox-info {
    bottom: -50px;
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .gite-lightbox-info p {
    font-size: 0.9rem;
  }
  
  .gite-lightbox-counter {
    margin-left: 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gite-lightbox-container {
    width: 100%;
    height: 80%;
  }
  
  .gite-lightbox-nav-prev {
    left: 10px;
  }
  
  .gite-lightbox-nav-next {
    right: 10px;
  }
  
  .gite-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .gite-lightbox-close {
    top: 10px;
    right: 10px;
  }
  
  .gite-lightbox-info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: rgba(76, 175, 80, 0.95);
  }
}

/* Responsive pour l'iframe calendrier */
@media (max-width: 768px) {
  .chambre-aubergine-calendar-iframe,
  .chambre-camomille-calendar-iframe,
  .chambre-mirabelle-calendar-iframe,
  .gite-calendar-iframe {
    margin: 1rem 0;
  }
  
  .calendar-iframe-header {
    padding: 1rem;
  }
  
  .calendar-iframe-header h3 {
    font-size: 1.2rem;
  }
  
  .calendar-iframe-subtitle {
    font-size: 0.9rem;
  }
  
  .calendar-iframe-container {
    padding-bottom: 75%; /* Ratio plus carré pour mobile */
  }
  
  .calendar-iframe-footer {
    padding: 1rem;
  }
  
  .calendar-legend ul {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .calendar-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .calendar-iframe-header h3 {
    font-size: 1.1rem;
  }
  
  .calendar-iframe-subtitle {
    font-size: 0.85rem;
  }
  
  .calendar-iframe-container {
    padding-bottom: 85%; /* Ratio encore plus carré pour très petit écran */
  }
  
  .calendar-legend h4 {
    font-size: 1rem;
  }
  
  .calendar-info p {
    font-size: 0.85rem;
  }
}

/* Optimisation pour tablette en mode paysage */
@media (min-width: 769px) and (max-width: 1024px) {
  .calendar-iframe-container {
    padding-bottom: 60%; /* Ratio intermédiaire pour tablette */
  }
}

/* Hauteur fixe pour grands écrans desktop */
@media (min-width: 1200px) {
  .calendar-iframe-container {
    position: static;
    padding-bottom: 0;
    height: 650px; /* Hauteur fixe plus importante sur grand écran */
  }
  
  .calendar-iframe {
    position: static;
    height: 100%;
  }
}

/* 🏠 STYLES POUR LE MENU VISUEL DE LA PAGE D'ACCUEIL */

.home-menu {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cartes par rangée */
  gap: 2rem;
  margin-bottom: 2rem;
}

.menu-card {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Les images de fond sont définies inline dans le composant pour faciliter la modification */
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Overlay pour améliorer la lisibilité du texte */
.menu-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  transition: background 0.3s ease;
}

.menu-card:hover .menu-card-overlay {
  background: rgba(0, 0, 0, 0.15); /* Opacité uniforme maintenue au survol */
}

/* Contenu par défaut (visible normalement) */
.menu-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Contenu au survol (description) */
.menu-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
  text-align: center;
}

.menu-card:hover .menu-card-content {
  opacity: 0;
}

.menu-card:hover .menu-card-hover {
  opacity: 1;
}

.menu-card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-lora), serif;
}

.menu-card-description {
  color: white;
  font-size: 1rem;
  line-height: 1.4;
  margin: 1rem 0 0 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 🌿 STYLES POUR LES SECTIONS JARDIN */

.garden-sections {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.25rem 2rem 2rem 2rem;
}

.garden-section {
  position: relative;
  padding: 3rem 2rem; /* Padding réduit légèrement */
  min-height: 400px; /* Hauteur réduite légèrement */
  border-radius: 15px;
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center; /* Centre le contenu verticalement */
  justify-content: center; /* Centre le contenu horizontalement */
  /* Les images de fond sont définies inline dans le composant pour faciliter la modification */
}

/* Overlay pour améliorer la lisibilité du texte sur toutes les images jardin */ 

.garden-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Overlay sombre - ajustez l'opacité si nécessaire */
  border-radius: 15px;
}

.garden-section-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 800px; /* Limite la largeur du contenu */
}

.garden-section-content * {
  color: white; /* Texte blanc pour contraster avec l'image */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.garden-section-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  font-family: var(--font-lora), serif;
}

.garden-section-text {
  max-width: 80%;
  margin: 0 auto;
}

.garden-section-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* 🗺️ STYLES POUR LA CARTE GOOGLE MAPS */
.google-map {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  background: #fafafa;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
  color: #5C4033;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-lora), serif;
}

.map-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.map-info strong {
  color: #5C4033;
  font-weight: 600;
}

.map-description {
  font-style: italic;
  color: #555;
  margin-top: 1.5rem;
}

/* 📅 STYLES POUR LE CALENDRIER GOOGLE */
.google-calendar {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.calendar-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.calendar-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.calendar-info {
  background: #fafafa;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-info h3 {
  color: #5C4033;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-lora), serif;
}

.calendar-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.calendar-note {
  background: #f0f8f0;
  border-left: 4px solid #A3B18A;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 0 10px 10px 0;
  text-align: left;
}

.calendar-note strong {
  color: #5C4033;
  font-weight: 600;
}

/* TITRE DE LA SECTION ACTIVITÉS AVEC FOND FLEUR (garde son style spécifique) */
/* =============================
   🧹 HARMONISATION FORCÉE DU HEADER ACTIVITÉS
   =============================
   On supprime TOUTES les règles de taille et on force l'application
   des dimensions fixes identiques à la page Contact.
   ============================= */

/* 🎯 FORÇAGE DES DIMENSIONS IDENTIQUES À LA PAGE CONTACT */
.activities-section-header {
  /* DIMENSIONS FIXES IDENTIQUES À LA PAGE CONTACT */
  width: 90% !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  
  /* Suppression de tout padding qui pourrait affecter la hauteur */
  padding: 0 !important;
  
  /* IMAGE RESET – activités background placeholder for future integration */
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Style visuel */
  border-radius: 15px;
  margin: 0 auto 1rem auto; /* Centrage horizontal + espace vers les cartes */
  position: relative;
  overflow: hidden;
  
  /* Layout flex identique à .hero-section */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Overlay pour améliorer la lisibilité du texte sur l'image */
.activities-section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.activities-section-header * {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Titre avec style identique à la page Contact */
.activities-section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem 0;
  font-family: var(--font-lora), serif;
}

/* Texte d'introduction avec style identique à la page Contact */
.activities-section-header .intro-text {
  padding: 2rem;
  margin-bottom: 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.activities-section-header .intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 📱 RESPONSIVE IDENTIQUE À LA PAGE CONTACT */
@media (max-width: 768px) {
  .activities-section-header {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  
  .activities-section-header h1 {
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
  }
  
  .activities-section-header .intro-text {
    padding: 1.5rem;
  }
  
  .activities-section-header .intro-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .activities-section-header {
    width: 100% !important;
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
  }
  
  .activities-section-header h1 {
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
  }
  
  .activities-section-header .intro-text {
    padding: 1rem;
  }
  
  .activities-section-header .intro-text p {
    font-size: 0.9rem;
  }
}

/* =============================
   🧹 FIN HARMONISATION FORCÉE ACTIVITÉS
   ============================= */

.intro-text {
  margin-bottom: 0;
  text-align: center;
}

.intro-text p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* BULLES D'ACTIVITÉS AVEC FOND SPÉCIFIQUE */
.activity-bubble {
  background: #F0EAD2;
  border-radius: 20px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* IMAGES DE FOND SPÉCIFIQUES POUR CHAQUE BULLE D'ACTIVITÉ */
/* Atelier Potager */
.activity-bubble:nth-child(1) {
  /* IMAGE RESET – atelier potager placeholder for future integration */
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
}

/* Découverte Plante */
.activity-bubble:nth-child(2) {
  /* IMAGE RESET – découverte plante placeholder for future integration */
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
}

/* Atelier Cuisine */
.activity-bubble:nth-child(3) {
  /* IMAGE RESET – atelier cuisine placeholder for future integration */
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
}

/* Overlay pour améliorer la lisibilité sur les bulles */
.activity-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(240, 234, 210, 0.85); /* Overlay beige semi-transparent */
  border-radius: 20px;
  z-index: 1;
}

.activity-bubble > * {
  position: relative;
  z-index: 2;
}

.activity-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
}

.activity-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: opacity 0.3s ease;
}

.activity-image-default {
  background: linear-gradient(135deg, #A3B18A, #8fa570);
  color: white;
  opacity: 1;
}

.activity-image-hover {
  background: linear-gradient(135deg, #5C4033, #7a5545);
  color: #F0EAD2;
  opacity: 0;
  position: relative;
}

.activity-bubble:hover .activity-image-default {
  opacity: 0;
}

.activity-bubble:hover .activity-image-hover {
  opacity: 1;
}

.image-placeholder {
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}

.activity-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Recadrage spécifique pour montrer les visages */
.activity-image-atelier-cuisine {
  object-position: center 30%;
}

.activity-image-decouverte-plante {
  object-position: center 35%;
}

/* Responsive - ajustement pour mobile */
@media (max-width: 768px) {
  .activity-image-atelier-cuisine {
    object-position: center 25%;
  }
  
  .activity-image-decouverte-plante {
    object-position: center 30%;
  }
  
  .description-text {
    font-size: 0.8rem;
    padding: 0.8rem;
    line-height: 1.3;
  }
}

.description-text {
  font-weight: 400;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow-y: auto;
}

.activity-info {
  width: 100%;
}

.activity-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5C4033;
  margin: 0 0 0.5rem 0;
  font-family: var(--font-lora), serif;
}

.activity-organizer {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* Styles pour le détail d'activité */
.activity-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.back-button {
  background: #A3B18A;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #5C4033;
}

.activity-detail-content {
  background: #fafafa;
  border-radius: 15px;
  padding: 2rem;
}

.activity-detail-title {
  font-size: 2rem;
  color: #5C4033;
  margin: 0 0 0.5rem 0;
  text-align: center;
  font-family: var(--font-lora), serif;
}

.activity-detail-organizer {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.activity-gallery,
.activity-description,
.activity-practical-info,
.activity-contact {
  margin-bottom: 2.5rem;
}

.activity-gallery h3,
.activity-description h3,
.activity-practical-info h3,
.activity-contact h3 {
  color: #5C4033;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #A3B18A;
  padding-bottom: 0.5rem;
  font-family: var(--font-lora), serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-placeholder {
  height: 150px;
  background: #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
}

.practical-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #A3B18A;
}

.info-card h4 {
  color: #5C4033;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-family: var(--font-lora), serif;
}

.info-card p {
  margin: 0;
  color: #666;
}

/* 📱 RESPONSIVE DESIGN POUR LES TROIS ZONES */
@media (max-width: 768px) {
  /* 1️⃣ Zone navigation responsive */
  .header {
    padding: 0.5rem 1rem;
  }
  
  /* 2️⃣ Zone titres/descriptions responsive */
  .page-header {
    padding: 2rem 1rem;
  }

  .page-header h1 {
    font-size: 2rem; /* Titre plus petit sur tablette */
  }

  .page-header .intro-text {
    max-width: 95%;
    padding: 1.5rem;
  }

  .page-header .intro-text p {
    font-size: 1rem;
  }

  .activities-section {
    padding: 1rem 1rem 1rem 1rem; /* Ajustement fin de l'espace en haut sur tablette */
    margin: 0.5rem 1rem 1rem 1rem;
  }
  
  /* 🧹 SUPPRESSION - Les dimensions sont forcées dans la section principale */
  
  .content-section {
    padding: 1rem 1.5rem 1.5rem 1.5rem; /* Ajustement fin de l'espacement en haut sur tablette */
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  /* 3️⃣ Bulles d'activités responsive */
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .activity-image-container {
    height: 150px;
  }
  
  .activity-title {
    font-size: 1.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .practical-info-grid {
    grid-template-columns: 1fr;
  }
  
  .activity-detail-content {
    padding: 1.5rem;
  }

  /* Carte Google Maps responsive sur tablette */
  .map-container {
    height: 350px;
  }

  .map-info {
    padding: 1.5rem;
  }

  .map-info h3 {
    font-size: 1.3rem;
  }

  /* Calendrier Google responsive sur tablette */
  .calendar-container {
    height: 500px;
  }

  .calendar-info {
    padding: 1.5rem;
  }

  .calendar-info h3 {
    font-size: 1.3rem;
  }

  /* Sections Jardin responsive sur tablette */
  .garden-sections {
    padding: 1rem 1rem 2rem 1rem;
  }

  .garden-section {
    padding: 2.5rem 1rem; /* Padding réduit légèrement sur tablette */
    min-height: 350px; /* Hauteur réduite sur tablette */
  }

  .garden-section-content h1 {
    font-size: 2rem;
  }

  .garden-section-text {
    max-width: 95%;
  }

  .garden-section-text p {
    font-size: 1rem;
  }

  /* Menu visuel responsive sur tablette */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cartes par rangée sur tablette */
    gap: 1.5rem;
  }

  .menu-card {
    height: 220px;
  }

  .menu-card-title {
    font-size: 1.3rem;
  }

  .menu-card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* 1️⃣ Zone navigation mobile */
  .header {
    padding: 0.5rem;
  }
  
  /* 2️⃣ Zone titres/descriptions mobile */
  .page-header {
    padding: 1.5rem 0.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem; /* Titre encore plus petit sur mobile */
  }

  .page-header .intro-text {
    padding: 1rem;
  }

  .page-header .intro-text p {
    font-size: 0.9rem;
  }

  .activities-section {
    padding: 0.75rem 0.5rem 0.5rem 0.5rem; /* Ajustement fin de l'espace en haut sur mobile */
    margin: 0.25rem 0.5rem 0.5rem 0.5rem;
  }
  
  /* 🧹 SUPPRESSION - Les dimensions sont forcées dans la section principale */
  
  .content-section {
    padding: 0.75rem 1rem 1rem 1rem; /* Ajustement fin de l'espacement en haut sur mobile */
  }
  
  .intro-text p {
    font-size: 0.9rem;
  }
  
  /* 3️⃣ Bulles d'activités mobile */
  .activity-bubble {
    padding: 1rem;
  }
  
  .activity-image-container {
    height: 120px;
  }
  
  .activity-detail-content {
    padding: 1rem;
  }
  
  .activity-detail-title {
    font-size: 1.5rem;
  }

  /* Carte Google Maps responsive sur mobile */
  .google-map {
    padding: 0 0.5rem;
  }

  .map-container {
    height: 300px;
  }

  .map-info {
    padding: 1rem;
  }

  .map-info h3 {
    font-size: 1.2rem;
  }

  .map-info p {
    font-size: 0.9rem;
  }

  /* Calendrier Google responsive sur mobile */
  .google-calendar {
    padding: 0 0.5rem;
  }

  .calendar-container {
    height: 450px;
  }

  .calendar-info {
    padding: 1rem;
  }

  .calendar-info h3 {
    font-size: 1.2rem;
  }

  .calendar-info p {
    font-size: 0.9rem;
  }

  .calendar-note {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  /* Sections Jardin responsive sur mobile */
  .garden-sections {
    padding: 0.75rem 0.5rem 1rem 0.5rem;
  }

  .garden-section {
    padding: 2rem 0.5rem; /* Padding réduit légèrement sur mobile */
    min-height: 300px; /* Hauteur réduite sur mobile */
    margin-bottom: 1.5rem;
  }

  .garden-section-content h1 {
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
  }

  .garden-section-text p {
    font-size: 0.9rem;
  }

  /* Menu visuel responsive sur mobile */
  .home-menu {
    padding: 0 0.5rem;
  }

  .menu-grid {
    grid-template-columns: 1fr; /* 1 seule carte par rangée sur mobile */
    gap: 1rem;
  }

  .menu-card {
    height: 200px;
  }

  .menu-card-hover {
    padding: 1rem;
  }

  .menu-card-title {
    font-size: 1.2rem;
  }

  .menu-card-description {
    font-size: 0.85rem;
  }
}

/* 🎨 GUIDE DE CUSTOMISATION - RÉSUMÉ DES ZONES À MODIFIER */
/*
  1️⃣ ZONE NAVIGATION (boutons menu) :
     - Couleur de fond : .header { background: #F0EAD2; }
     - Ligne 32 : changez la couleur de fond de la navigation
  
  2️⃣ ZONE TITRES/DESCRIPTIONS (avec images de fond) :
     - IMAGE RESET – toutes les URLs images ont été supprimées
     - Les images seront réintégrées ultérieurement
     - Opacité overlay : ajustez rgba(0,0,0,0.4) et rgba(240,234,210,0.85)
  
     3️⃣ MENU VISUEL (page Accueil) :
      - IMAGE RESET – images supprimées, à réintégrer
      - Descriptions courtes : propriété 'shortDescription' de chaque section
      - Hauteur cartes : .menu-card { height: 250px; }
   
   4️⃣ SECTIONS JARDIN (page Jardin) :
      - IMAGE RESET – images supprimées, clés data-image conservées
      - Textes : dans GardenSections.tsx, propriété 'content' de chaque section
      - Overlay : .garden-section-overlay { background: rgba(0,0,0,0.4); }
   
   5️⃣ CALENDRIER GOOGLE GÎTE (page Gîte) :
      - URL calendrier : dans GoogleCalendarGite.tsx, ligne 19
      - Hauteur : .calendar-container { height: 600px; }
      - Couleurs : .calendar-info h3 { color: #5C4033; }
      - Note d'info : .calendar-note avec bordure verte
   
   6️⃣ CALENDRIER GOOGLE CHAMBRES D'HÔTES (page Chambres d'hôtes) :
      - URL calendrier : dans GoogleCalendar.tsx, ligne 19
      - Hauteur : .calendar-container { height: 600px; }
      - Couleurs : .calendar-info h3 { color: #5C4033; }
      - Note d'info : .calendar-note avec bordure verte
   
   7️⃣ CARTE GOOGLE MAPS (page Environs) :
      - API Key : dans GoogleMap.tsx, ligne 17
      - Adresse : dans GoogleMap.tsx, ligne 25
      - Hauteur carte : .map-container { height: 400px; }
      - Couleurs : .map-info h3 { color: #5C4033; }
   
   8️⃣ BACKGROUND GÉNÉRAL :
     - Couleur de fond : body { background: #F6F1E9; }
     - Ligne 28 : changez la couleur de fond générale du site (beige très clair actuel)
  
     📁 IMAGES DISPONIBLES dans /public/ :
      groseilles-rouges-jardin-de-margny-fruits-du-verger.jpg, campagne-gaumaise-vue-champs-jardin-de-margny.jpg, mauve-fleur-violette-jardin-de-margny-coucher-soleil.jpg, fleurs-de-myrtillier-jardin-de-margny-printemps-nature.jpg
      fleurs_1.jpg, fleurs_2.jpg, fleurs_3.jpg
      jardin_1.jpg, jardin_2.jpg, jardin_3.jpg, jardin_4.jpeg
      mures-coucher-soleil-jardin-de-margny-verger-gite.jpg
      gites_1.jpeg, Gite_4.JPG, gite_2.jpeg
      legume-carottes-betteraves-jardin-de-margny.jpg, legume-tomate-courgette-jardin-de-margny.jpg
*/

/* Application de la police Lora aux titres */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-lora), serif;
}

/* Style pour les titres des sections */
.content-section > h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5C4033;
  margin: 2rem 0;
  font-family: var(--font-lora), serif;
}

/* Le titre dans activities-section-header garde son propre style défini plus haut */

.footer {
  margin-top: auto;
  padding: 2rem 1rem;
  border-top: 1px solid #e0e0e0;
  color: #666;
  background: #2d3a2d;
  color: #e8e4dc;
}

.footer-seo-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-col {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-col {
    text-align: left;
  }
}

.footer-heading {
  font-family: var(--font-lora), serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #c5d4a0;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #d4cfc5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d4cfc5;
}

.footer-address a {
  color: #c5d4a0;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

.footer-tagline {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* =============================
   SEO HOME SECTION
   ============================= */
.seo-home-section {
  padding: 3rem 1rem 4rem;
  background: linear-gradient(to bottom, #f5f0e6, #ede8da);
}

.seo-home-container {
  max-width: 800px;
  margin: 0 auto;
}

.seo-home-title {
  font-family: var(--font-lora), serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d5016;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.seo-home-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3d3d3d;
}

.seo-home-text p {
  margin-bottom: 1rem;
}

.seo-link,
.seo-home-text a {
  color: #2d6b1a;
  text-decoration: underline;
  text-decoration-color: #a3c585;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.seo-link:hover,
.seo-home-text a:hover {
  color: #1a4f0e;
  text-decoration-color: #2d6b1a;
}

/* Intro & liens éditables de la page Gîte (équiv. text-green-600 / mb-4) */
.gite-intro p {
  margin-bottom: 1rem;
}
.gite-intro p:last-child {
  margin-bottom: 0;
}
.gite-intro a,
.gite-links a {
  color: #16a34a;
}
.gite-intro a:hover,
.gite-links a:hover {
  text-decoration: underline;
}

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

.seo-cta-button {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #3a6b24;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.seo-cta-button:hover {
  background: #2d5016;
  transform: translateY(-1px);
}

/* =============================
   BLOG STYLES
   ============================= */
.blog-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.blog-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-intro h1 {
  font-family: var(--font-lora), serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 0.75rem;
}

.blog-intro p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0.4rem;
}

.blog-card-title {
  font-family: var(--font-lora), serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  flex: 1;
}

.blog-card-readmore {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #3a6b24;
  font-weight: 600;
}

/* Blog article page */
.blog-article {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.blog-article-header {
  margin-bottom: 2rem;
  padding-top: 5rem;
}

.blog-article-date {
  font-size: 0.9rem;
  color: #888;
}

.blog-article h1 {
  font-family: var(--font-lora), serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d5016;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.blog-article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}

.blog-article-content h2 {
  font-family: var(--font-lora), serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #2d5016;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-article-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a6b24;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-article-content p {
  margin-bottom: 1rem;
}

.blog-article-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-article-content li {
  margin-bottom: 0.4rem;
}

.blog-article-content a {
  color: #2d6b1a;
  text-decoration: underline;
}

.blog-article-back {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.6rem 1.5rem;
  background: #f0ead2;
  color: #2d5016;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.blog-article-back:hover {
  background: #e0d9c0;
}

/* =============================
   🧹 SUPPRESSION DES RÈGLES EN DOUBLE
   =============================
   Les dimensions sont maintenant forcées dans la section ci-dessus
   ============================= */

/* =============================
   🧹 FORÇAGE ABSOLU DU HEADER ACTIVITÉS
   =============================
   On neutralise toute règle parasite (object-fit, aspect-ratio, height auto, etc.)
   et on force la même dimension fixe que le header Contact.
   ============================= */
.activities-section-header {
  /* Neutralisation de tout filtre ou contrainte parasite */
  object-fit: unset !important;
  aspect-ratio: unset !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  width: 90% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 auto 1rem auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  /* Image de fond et overlay conservés */
}

@media (max-width: 768px) {
  .activities-section-header {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .activities-section-header {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    width: 100% !important;
  }
}
/* =============================
   🧹 FIN FORÇAGE ABSOLU ACTIVITÉS
   ============================= */
   .environs-header {
    /* background-image supprimé - géré par PageHeader.tsx avec next/image */
    /* background-size, background-position, background-repeat supprimés */
  } 

/* =============================
   🌿 STYLE SECTION HEADER JARDIN
   ============================= */
.garden-section-header {
  /* DIMENSIONS ADAPTÉES POUR CONTENIR TOUT LE TEXTE */
  width: 90% !important;
  height: 500px !important;
  min-height: 500px !important;
  max-height: 500px !important;
  
  /* Suppression de tout padding qui pourrait affecter la hauteur */
  padding: 0 !important;
  
  /* IMAGE RESET – jardin background placeholder for future integration */
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Style visuel */
  border-radius: 15px;
  margin: 0 auto 1rem auto; /* Centrage horizontal + espace vers le contenu */
  position: relative;
  overflow: hidden;
  
  /* Layout flex identique aux autres sections */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Overlay pour améliorer la lisibilité du texte sur l'image */
.garden-section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.garden-section-header * {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Titre avec style identique aux autres pages */
.garden-section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem 0;
  font-family: var(--font-lora), serif;
}

/* Texte d'introduction avec style identique aux autres pages */
.garden-section-header .intro-text {
  padding: 2rem;
  margin-bottom: 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.garden-section-header .intro-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

/* Responsive design pour les petits écrans */
@media (max-width: 768px) {
  .garden-section-header {
    width: 95% !important;
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
  }
  
  .garden-section-header h1 {
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
  }
  
  .garden-section-header .intro-text {
    padding: 1.5rem;
    max-width: 90%;
  }
  
  .garden-section-header .intro-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .garden-section-header {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
  }
  
  .garden-section-header h1 {
    font-size: 1.8rem;
  }
  
  .garden-section-header .intro-text {
    padding: 1rem;
  }
  
  .garden-section-header .intro-text p {
    font-size: 0.9rem;
  }
}

/* 🎨 HERO SLIDESHOW STYLES */
.text-shadow-lg {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Animation pour les boutons de navigation du slideshow */
.hero-nav-button {
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-nav-button:hover {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.7);
}

/* Styles pour les indicateurs du slideshow */
.slideshow-indicator {
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slideshow-indicator:hover {
  transform: scale(1.2);
}

.slideshow-indicator.active {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Amélioration de la lisibilité du texte sur le slideshow */
.slideshow-overlay-text {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Animation douce pour le changement d'images */
.slideshow-image-container {
  will-change: opacity;
}

/* Responsive pour les boutons de navigation */
@media (max-width: 768px) {
  .hero-nav-button {
    padding: 0.5rem;
  }
  
  .hero-nav-button svg {
    width: 1rem;
    height: 1rem;
  }
}

/* Animation pour la barre de progression */
.slideshow-progress-bar {
  transition: width 0.3s ease-out;
}

/* Préférences d'animation réduites */
@media (prefers-reduced-motion: reduce) {
  .slideshow-image-container,
  .hero-nav-button,
  .slideshow-indicator,
  .slideshow-progress-bar {
    transition: none !important;
    animation: none !important;
  }
}

/* =============================
   🎨 FALLBACKS EMOJIS - UNIFORMISATION CROSS-PLATFORM
   =============================
   Classe de fallback pour garantir l'affichage uniforme 
   des emojis sur tous les systèmes
*/

/* Fallback pour les emojis - uniformisation cross-platform */
.emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
