/**
/* ============================================================================
 * LES JARDINS DE MARILY - Feuille de style
 * ============================================================================
 * 
 * Fichier      : styles.css
 * Emplacement  : /css/
 * 
 * Description  : Styles principaux du site
 * Auteur       : Stéphane PLASSON
 * Client       : Les Jardins de Marily
 * Date         : 28/08/2025
 * Modifié le   : 26/12/2025
 * Version      : 3.0
 * 
 * Structure    :
 * 1. Reset et variables CSS
 * 2. Layout principal (header, main, footer)
 * 3. Composants (boutons, cartes, formulaires)
 * 4. Pages spécifiques (accueil, contact)
 * 5. Responsive design
 * 
 * Media Queries:
 * - Mobile: < 768px
 * - Tablet: 768px - 1024px
 * - Desktop: > 1024px
 * 
 * @imports     : bootstrap.min.css, bootstrap-icons.css
 * Navigateurs  : Chrome 90+, Firefox 88+, Safari 14+, Edge 90+
 * Licence      : Propriétaire - Tous droits réservés
 * 
 * Changelog    :
 * v3.0 (26/12/2025) - Refonte complète, design responsive
 * v2.1 (15/10/2024) - Ajout composants Bootstrap
 * v2.0 (01/09/2024) - Structure initiale
 */

/* --------------------------------------------
   VARIABLES CSS (Custom Properties)
   ------------------------------------------ */
:root {
  /* --------------------------
     COULEURS
     ------------------------ */
  /* Couleurs de base */
  --white-color: #ffffff;
  --dark-color: #666;
  
  /* Couleurs thématiques - VERSION HARMONISÉE */
  --primary-color: #2E8B57;        /* Vert profond de maraîcher (inchangé) */
  --secondary-color: #4CAF50;      /* Vert frais harmonieux (remplace #9ACD32) */
  --section-bg-color: #8D6E63;     /* Terre cuite douce (remplace #5D4B3E) */
  --custom-btn-bg-color: #E2725B;  /* Terre cuite chaleureuse (remplace #FF6347) */
  --custom-btn-bg-hover-color: #2E8B57; /* Vert profond au survol (remplace #98FB98) */
  
  /* Couleurs de texte */
  --title-color: #2C3E50;          /* Gris-bleu foncé élégant (remplace #C1C1C1) */
  --p-color: #34495E;              /* Gris foncé lisible (remplace #654321) */
  --section-text-color: #333333;
  --button-text-color: #ffffff;
  --button-text-hover-color: #ffffff;
  
  /* Couleurs diverses */
  --border-color: #FFD700;        /* Jaune doré */
  --link-hover-color: #27AE60;     /* Vert vif harmonieux (remplace #006400) */
  
  /* Couleurs de section */
  --section-bg-orange: #E2725B;    /* Terre cuite (remplace #FF6347) */
  --section-terracotta: #A1887F;   /* Terre cuite claire (remplace #E2725B) */
  --section-mint: #C8E6C9;        /* Vert menthe doux (remplace #C1E1C1) */
  --section-bg-corn: #FFD54F;      /* Jaune moutarde chaleureux (remplace #F8DE7E) */
  
  /* --------------------------
     TYPOGRAPHIE
     ------------------------ */
  /* Familles de polices */
  --body-font-family: 'Plus Jakarta Sans', sans-serif;
  
  /* Tailles de police */
  --h1-font-size: 68px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --btn-font-size: 16px;
  --form-btn-font-size: 18px;
  --menu-font-size: 16px;
  
  /* Poids de police */
  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  
  /* --------------------------
     EFFETS VISUELS
     ------------------------ */
  /* Rayons de bordure */
  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;
}

/* --------------------------------------------
   RÈGLES DE BASE
   ------------------------------------------ */
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/* Correction pour le menu fixed */
body.status-page {
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------
   TYPOGRAPHIE
   ------------------------------------------ */
/* Styles de base pour les titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); color: var(--title-color); }
h3 { font-size: var(--h3-font-size); color: var(--title-color); }
h4 { font-size: var(--h4-font-size); color: var(--title-color); }
h5 { font-size: var(--h5-font-size); color: var(--title-color); }
h6 { font-size: var(--h6-font-size); color: var(--title-color); }

/* Styles pour les paragraphes et listes */
p, ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

/* Styles pour les liens */
a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--link-hover-color);
}

a:focus-visible {
  outline: 2px solid var(--secondary-color);
}

/* Styles pour le texte en gras */
b, strong {
  font-weight: var(--font-weight-bold);
}

/* Chargement de la police personnalisée */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans.woff2') format('woff2');
  font-display: swap;
}

/* Message de fermeture de saison */
.alert-warning {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
}

.alert-season-closure {
    position: fixed;
    top: 80px; /* Ajustez selon la hauteur de votre menu */
    left: 0;
    right: 0;
    z-index: 1500; /* Juste en dessous du menu qui a z-index: 1000 */
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease-out;
}

/* Animation d'apparition */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --------------------------------------------
   COMPOSANTS RÉUTILISABLES
   ------------------------------------------ */
/* ---------- Boutons personnalisés ---------- */
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

/* Variantes de boutons */
.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}

/* ---------- Valeurs communes ---------- */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-orange);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}

/* ==========================================================================
   BANDEAU DE FERMETURE DE SAISON - FRONTOFFICE
   ========================================================================== */

.season-closure-banner {
    /* Positionnement */
    position: fixed;
    top: 80px; /* Ajustez selon la hauteur de votre menu */
    left: 0;
    right: 0;
    z-index: 9999;
    
    /* Apparence */
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-bottom: 3px solid #dc3545;
    padding: 15px 20px;
    text-align: center;
    
    /* Effets visuels */
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
    animation: slideDownBanner 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typographie */
    color: #721c24;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* Animation d'apparition */
@keyframes slideDownBanner {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Bouton de fermeture */
.season-banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #721c24;
    font-size: 22px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.season-banner-close:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #491217;
}

/* Icône d'alerte */
.season-banner-icon {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

/* Conteneur du message */
.season-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Pour les écrans mobiles */
@media screen and (max-width: 991px) {
    .season-closure-banner {
        top: 60px; /* Hauteur réduite pour mobile */
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .season-banner-content {
        padding: 0 30px;
    }
    
    .season-banner-close {
        right: 10px;
        font-size: 20px;
        padding: 3px 8px;
    }
}

@media screen and (max-width: 576px) {
    .season-closure-banner {
        padding: 10px 40px 10px 15px; /* Plus d'espace à droite pour le bouton */
        text-align: left;
    }
    
    .season-banner-content {
        padding: 0;
    }
    
    .season-banner-icon {
        display: block;
        margin: 0 0 5px 0;
        text-align: center;
    }
}

/* Pour les écrans très larges */
@media screen and (min-width: 1400px) {
    .season-banner-content {
        max-width: 1400px;
    }
}

/* Effet de pulse pour attirer l'attention */
@keyframes pulseWarning {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.25);
    }
}

.season-closure-banner.pulse {
    animation: slideDownBanner 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
               pulseWarning 2s infinite;
}

/* Pour le mode sombre (optionnel) */
@media (prefers-color-scheme: dark) {
    .season-closure-banner {
        background: linear-gradient(135deg, #2c0b0e 0%, #3a1014 100%);
        border-bottom-color: #842029;
        color: #f8d7da;
    }
    
    .season-banner-close {
        color: #f8d7da;
    }
    
    .season-banner-close:hover {
        background: rgba(220, 53, 69, 0.2);
        color: #ffffff;
    }
}

/* --------------------------------------------
   LAYOUT PRINCIPAL
   ------------------------------------------ */
/* ---------- Barre de navigation ---------- */
.sticky-wrapper {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.0);
}

.navbar .container {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
}

/* Logo et marque */
.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  width: 48px;
  height: auto;
  margin-right: 10px;
}

/* Liens de navigation */
.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

/* Menu déroulant */
.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.dropdown__item--hover {
  background: transparent;
  color: var(--link-hover-color);
}

/* Toggle pour mobile */
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Animation du toggle */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* --------------------------------------------
   SECTIONS SPÉCIFIQUES
   ------------------------------------------ */
/* ---------- Section Hero ---------- */
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
}

.hero-section::after {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(45deg);
  width: 250px;
  height: 350px;
  pointer-events: none;
}

.hero-section h1 {
  color: var(--white-color);
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .custom-border-btn {
  border-color: transparent;
}

.hero-section .container {
  position: relative;
  z-index: 9;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

/* Horaires d'ouverture - Version fusionnée */
.opening-hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opening-hours-list li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
}

.opening-hours-list li .day {
  flex: 0 0 auto;
  min-width: 120px; /* Largeur fixe pour les jours */
}

.opening-hours-list li .underline {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.75);
  height: 1px;
  margin: 0 15px;
  position: relative;
  top: 1px; /* Ajustement visuel */
}

.opening-hours-list li .hours {
  flex: 0 0 auto;
  min-width: 100px; /* Largeur fixe pour les heures */
  text-align: right;
  font-weight: bold;
  color: white; /* Pour que les heures ressortent plus */
}

/* ---------- Section À propos ---------- */
.about-section {
  color: var(--white-color);
  padding: 60px 0;
  position: relative;
  /* Dégradé de deux couleurs */
  background: linear-gradient(to bottom, var(--dark-color), var(--section-terracotta));
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-video-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(208, 175, 122, 1));
  border-radius: var(--border-radius-medium);
  bottom: 0;
  height: auto;
  padding: 40px;
}

.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

/* ---------- Section valeurs ---------- */
.valeur-section {
  background: 
    url('../images/background-valeurs.jpg') center/cover no-repeat,
    linear-gradient(to bottom, var(--dark-color), var(--section-terracotta));
  background-blend-mode: overlay; /* ou 'multiply' selon l'effet souhaité */
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
  padding: 60px 0;
}

.valeur-block-wrap {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  max-height: 450px;
  cursor: pointer;
}

.valeur-block-wrap:hover .valeur-block-image {
  transform: scale(1.2);
}

.valeur-block-image-wrap {
  width: 100%;
}

.valeur-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.valeur-block-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(208, 175, 122, 1));
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.valeur-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;
}

.valeur-block-info-auto-width {
  width: auto !important;
}

/* ---------- Section Production ---------- */
.menu-section {
  background-image: url('../images/vente-ferme.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-block-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  margin-top: 20px;
  height: 100%;
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

/* Badge */
.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}

/* ---------- Section Avis ---------- */
.reviews-section {
  /* Dégradé de deux couleurs */
  background: linear-gradient(to bottom, var(--section-mint), var(--dark-color));
  color: var(--section-text-color);
}

.row.g-4 {
  margin-top: 30px;
}

.review-card {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-card .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.review-card-header {
  background-image: url('../images/header-avis.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px;
  display: flex;
  align-items: center;
  position: relative; /* Ajout pour le pseudo-élément */
  z-index: 1; /* Ajout pour le pseudo-élément */
}

/* Optionnel: Ajouter un overlay pour améliorer la lisibilité */
.review-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.review-card-header img {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.review-card-body {
  padding: 20px 25px;
}

.review-card-body p {
  font-size: var(--btn-font-size);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.review-card-footer {
  padding: 0 25px 25px;
}

.reviews-group i {
  color: var(--white-color);
}

/* Styles pour les étoiles et texte */
.reviews-group {
  color: #FFD700;
}

.text-white {
  color: var(--white-color) !important;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  animation: fadeInUp 0.6s ease forwards;
}

.row.g-4 > div:nth-child(2) .review-card {
  animation-delay: 0.2s;
}

.row.g-4 > div:nth-child(3) .review-card {
  animation-delay: 0.4s;
}

/* ---------- Section Location ---------- */
.location-section {
  background: linear-gradient(to bottom, var(--dark-color), var(--section-bg-corn));
  color: var(--white-color);
  padding: 60px 0;
}

.location-section p {
  margin-bottom: 20px;
}

.location-section h2,
.location-section h6 {
  color: var(--white-color);
}

.location-section a {
  color: var(--white-color);
  text-decoration: underline;
}

.location-section .btn {
  background-color: var(--custom-btn-bg-color);
  color: var(--button-text-color);
  border: 2px solid var(--custom-btn-bg-color);
}

.location-section .btn:hover {
  background-color: var(--custom-btn-bg-hover-color);
  color: var(--button-text-hover-color);
}

/* ---------- Section Réservation ---------- */
.booking-section {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), var(--primary-color)), url('../images/foot-banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  height: 100%;
  min-height: 300px;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-medium);
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}

/* ---------- Section Contact ---------- */
.contact-section {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), var(--primary-color)), url('../images/foot-banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex: 1;
  padding: 100px 0 80px;
}

.contact-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.contact-form {
  padding: 55px 65px;
}

.contact-form-image-wrap {
  position: relative;
  height: 100%;
}

.contact-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-block {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-medium);
  padding: 30px;
  margin-bottom: 30px;
}

.google-map {
  border-radius: var(--border-radius-medium);
  height: 100%;
  min-height: 300px;
}

/* Styles pour le status-page */
.status-page .contact-section {
  padding-top: 100px;
}

.status-page .menu-block-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 55px 65px;
  height: 100%;
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

/* --------------------------------------------
   FORMULAIRES
   ------------------------------------------ */
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
  color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}

/* --------------------------------------------
   PIED DE PAGE
   ------------------------------------------ */
.site-footer {
  background-color: var(--primary-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.site-footer strong {
  color: var(--white-color);
}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
}

.copyright-text a {
  color: rgba(255, 200, 160, 0.75);
}

/* --------------------------------------------
   RÉSEAUX SOCIAUX
   ------------------------------------------ */
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}

/* ===== STYLES POUR LA PAGE 404 ===== */

/* Animation pour les icônes */
.display-1 {
    animation: float 3s ease-in-out infinite;
}

.display-1:nth-child(2) {
    animation-delay: 0.5s;
}

.display-1:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Style pour la carte de suggestions */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-title {
    color: #fff;
    font-weight: 600;
}

/* Liens dans la carte */
.list-unstyled a {
    color: #e9ecef;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
}

.list-unstyled a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateX(5px);
}

/* Boutons */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-success:hover {
    background: rgba(40, 167, 69, 0.1);
}

/* Formulaire de recherche */
.input-group .form-control {
    border-right: 0;
}

.input-group .btn {
    border-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .display-1 {
        font-size: 4rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-md-flex .btn-lg {
        width: auto;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container.py-5.my-5 > .row {
    animation: fadeInUp 0.8s ease-out;
}
/* --------------------------------------------
   Maintenance
   ------------------------------------------ */
.maintenance-container {
	max-width: 800px;
	padding: 40px;
	background-color: var(--white-color);
	border-radius: var(--border-radius-large);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border: 3px solid var(--border-color);
	margin: 20px;
}

.logo {
	max-width: 200px;
	margin-bottom: 30px;
	filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.contact-info {
	background-color: var(--section-bg-color);
	color: var(--white-color);
	padding: 20px;
	border-radius: var(--border-radius-medium);
	margin-top: 30px;
}

.social-links {
	margin-top: 30px;
}

.social-links a {
	display: inline-block;
	margin: 0 10px;
	color: var(--primary-color);
	font-size: 24px;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--link-hover-color);
}

.countdown {
	font-size: var(--h2-font-size);
	color: var(--section-bg-orange);
	margin: 20px 0;
	font-weight: bold;
}
/* ===== STYLES POUR LA PAGE 404 ===== */

/* Animation pour les icônes */
.display-1 {
    animation: float 3s ease-in-out infinite;
}

.display-1:nth-child(2) {
    animation-delay: 0.5s;
}

.display-1:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Style pour la carte de suggestions */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-title {
    color: #fff;
    font-weight: 600;
}

/* Liens dans la carte */
.list-unstyled a {
    color: #e9ecef;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
}

.list-unstyled a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateX(5px);
}

/* Boutons */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-success:hover {
    background: rgba(40, 167, 69, 0.1);
}

/* Formulaire de recherche */
.input-group .form-control {
    border-right: 0;
}

.input-group .btn {
    border-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .display-1 {
        font-size: 4rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-md-flex .btn-lg {
        width: auto;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container.py-5.my-5 > .row {
    animation: fadeInUp 0.8s ease-out;
}
/* Privacy */
.privacy-content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 40px;
	margin: 40px 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-section {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.privacy-section:last-child {
	border-bottom: none;
}

.privacy-section h3 {
	color: #2c3e50;
	margin-bottom: 15px;
	padding-left: 15px;
	border-left: 4px solid #4CAF50;
}

.privacy-section p {
	line-height: 1.8;
	color: #555;
}

.privacy-section ul {
	padding-left: 20px;
	margin-bottom: 15px;
}

.privacy-section li {
	margin-bottom: 8px;
	color: #555;
}

.back-button {
	margin-top: 30px;
	padding: 12px 30px;
	background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
	color: white;
	border: none;
	border-radius: 30px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.back-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	color: white;
}

.privacy-header {
	background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
	padding: 80px 0 40px;
	margin-bottom: -20px;
}

.privacy-header h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.privacy-header .lead {
	font-size: 1.2rem;
	opacity: 0.9;
}
/* --------------------------------------------
   STYLES RESPONSIVE
   ------------------------------------------ */
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /* Correction pour le menu fixed */
  body.status-page {
    padding-top: 60px;
  }
  
  .contact-section {
    margin-top: 60px;
    padding: 60px 0;
  }
  
  .menu-block-wrap {
    margin-top: 0;
    padding: 30px 20px;
  }
  
  .booking-form-image-wrap {
    min-height: 200px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
  
  .review-card-header {
    padding: 20px;
  }
  
  .review-card-body,
  .review-card-footer {
    padding: 15px 20px;
  }
}

.maintenance-container {
	padding: 20px;
}

@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
}