/* =============================================
   FICHIER : style.css
   DESCRIPTION : Feuille de style principale
   AUTEUR : [Votre nom]
   DATE : [Date]
   ============================================ */

/* --------------------------------------------
   VARIABLES CSS (Custom Properties)
   ------------------------------------------ */
:root {
  /* --------------------------
     COULEURS
     ------------------------ */
  /* Couleurs de base */
  --white-color: #ffffff;
  --dark-color: #666;
  
  /* Couleurs thématiques */
  --primary-color: #2E8B57;        /* Vert profond de maraîcher */
  --secondary-color: #9ACD32;      /* Vert clair frais */
  --section-bg-color: #5D4B3E;     /* Taupe chaud */
  --custom-btn-bg-color: #FF6347;  /* Tomate appétissant */
  --custom-btn-bg-hover-color: #98FB98; /* Vert tendre */
  
  /* Couleurs de texte */
  --title-color: #C1C1C1;
  --p-color: #654321;             /* Brun terreux */
  --section-text-color: #333333;
  --button-text-color: #ffffff;
  --button-text-hover-color: #333333;
  
  /* Couleurs diverses */
  --border-color: #FFD700;        /* Jaune doré */
  --link-hover-color: #006400;     /* Vert foncé */
  
  /* Couleurs de section */
  --section-bg-orange: #FF6347;    /* Rouge tomate */
  --section-terracotta: #E2725B;   /* Terre cuite */
  --section-mint: #C1E1C1;        /* Vert doux */
  --section-bg-corn: #F8DE7E;      /* Jaune paille */
  
  /* --------------------------
     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);
}

/* --------------------------------------------
   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;
}

/* --------------------------------------------
   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 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;
  }
}