
/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Header Styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #DEB068;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  color: white;
}

.logo {
  width: 250px; /* Increased width for larger logo */
  height: auto;
  margin-left: 20px; /* Add margin to shift logo away from the edge */
  fill: white;
}

.logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle.open + nav ul {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  color: white;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

nav a:hover,
nav a:focus {
  color: #f7f4e9;
}

.social-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 20px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.social-icon {
  width: 25px;
  height: auto;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.emplacement {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: white;
}

.emplacement-icon {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

/* Styles pour le bouton fixe */
.fixed-button {
  position: absolute;
  bottom: 80px; /* Positionne le bouton plus haut dans la section */
  left: 50%;
  transform: translateX(-50%);
  background-color: #DEB068;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  z-index: 10; /* Assurez-vous qu'il est au-dessus des images */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Ajoute une ombre pour donner de la profondeur */
}

.fixed-button:hover {
  background-color: #c89d56;
  border-color: #fff; /* Ajoute un contraste avec un bord blanc au survol */
  transform: translate(-50%, -8px) scale(1.05); /* Léger agrandissement au survol */
}

/* Carousel Styles */

.carousel-container {
  position: relative;
  height: calc(100vh - 80px); /* Ajuste la hauteur pour s'adapter sous le header */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; /* Supprime la marge autour du carousel */
  width: 100vw;
  max-width: 100%;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.carousel-item {
  width: 100vw;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #333; /* Ajoute un arrière-plan pour éviter le vide */
}

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

.slogan {
  position: absolute;
  z-index: 1;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.carousel-item.active .slogan {
  opacity: 1;
}

.presentation {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; /* Supprime toute marge */
  padding-bottom: 0; /* Réduit le padding si nécessaire */
}

.main-container {
  padding: 0 20px; /* Ajuste le padding supérieur à zéro */
  margin-top: 0; /* Supprime toute marge */
  width: 100%;
}

/* About Section */
.presentation-entreprise {
  background-color: #fafafa;
  padding: 60px 20px;
  margin: 0;
}

.content-container {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  height: calc(100vh - 70px);
}

.content-container .image,
.content-container .texte {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.content-container .image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-container .texte {
  text-align: left;
}

.content-container .texte h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.content-container .texte p {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
}

/* Offers Section */
.locations {
  padding: 60px 20px;
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.offers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.offer-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.offer-header {
  position: relative;
  overflow: hidden;
}

.offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.offer-card:hover .offer-image {
  opacity: 0.9;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #DEB068;
  color: #fff;
  padding: 5px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.offer-details {
  padding: 20px;
  text-align: center;
}

.offer-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.offer-price {
  font-size: 1.5em;
  color: #DEB068;
  margin-bottom: 20px;
  font-weight: 700;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.offer-benefits li {
  font-size: 1em;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-benefits li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.btn-reserve {
  background-color: #DEB068;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.btn-reserve:hover {
  background-color: #c89d56;
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
  padding-top: 60px;
  backdrop-filter: blur(5px); /* Flou pour l'arrière-plan */
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border: none;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  transform: scale(1.2);
}

h2 {
  text-align: center;
  color: #DEB068;
  margin-bottom: 30px;
  font-size: 1.8em;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.input-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

input[type="date"],
input[type="time"],
input[type="email"],
input[type="tel"],
input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  font-size: 1em;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #DEB068;
  box-shadow: 0 0 5px rgba(222, 176, 104, 0.5);
}

.btn-submit {
  background-color: #DEB068;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
}

.btn-submit:hover {
  background-color: #c89d56;
  transform: scale(1.05);
}

.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  font-size: 1em;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical; /* Allow users to resize the textarea vertically */
}

.form-group textarea:focus {
  outline: none;
  border-color: #DEB068;
  box-shadow: 0 0 5px rgba(222, 176, 104, 0.5);
}

/* Styles pour la case de livraison */
.form-group label[for="delivery"] {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
}

input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Message du montant total */
#totalAmountMessage {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 20px 0;
}

#totalAmount {
  color: #DEB068;
  font-weight: bold;
  font-size: 1.2em;
}


/* Reserved Slots Section */
#reservedSlots {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0;
}

#reservationsList {
  list-style: none;
  padding: 0;
}

#reservationsList li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  color: #666;
  font-size: 1.1em;
}

/* Section Comment ça marche */
.comment-ca-marche {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  margin-top: 0; /* Suppression de la marge négative */
}

.section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  display: block;
  width: 550px; /* Largeur de la ligne */
  height: 6px;  /* Épaisseur de la ligne */
  background-color: #b9a05d;
  margin: 10px auto 0; /* Espacement et centrage */
}

.timeline {
  display: flex;
  justify-content: space-between; /* Distribution uniforme des étapes */
  align-items: flex-start;
  flex-wrap: wrap; /* Permet l'empilement sur petits écrans */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.timeline-step {
  width: 18%; /* Ajuster la largeur pour le design */
  text-align: center;
  position: relative;
  margin-bottom: 20px; /* Espacement entre les étapes sur mobile */
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.timeline-icon img {
  width: 30px;
  height: 30px;
}

.step-number {
  font-size: 1.5em;
  font-weight: bold;
  color: #b9a05d;
  margin-bottom: 10px;
}

.step-title {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.step-description {
  font-size: 0.9em;
  color: #555;
  line-height: 1.4;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -1;
}

.timeline-step:not(:last-child)::after {
  content: '\2192'; /* Flèche */
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #b9a05d;
}


/* Section Vidéo Démonstration */
.video-demo {
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-demo h3 {
  font-size: 2em; /* Augmentation de la taille du titre */
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.video-demo video {
  display: block;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: none; /* Suppression de toute ombre */
  opacity: 1 !important; /* Opacité toujours à 1 */
  transition: none !important; /* Suppression de toute transition */
}

.video-demo video:focus,
.video-demo video:active {
  opacity: 1 !important; /* Forcer l'opacité à 1 pendant l'interaction */
  box-shadow: none !important; /* Pas d'ombrage ni de transition */
}



/* Section Prestations à domicile */
#prestations {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

#prestations .content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px; /* Augmentation de l'espace entre le titre principal et le sous-titre */
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 550px;
  height: 3px;
  background-color: #b9a05d;
  margin: 10px auto 0;
  border-radius: 2px;
}

.sub-title {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 30px; /* Espace supplémentaire sous le sous-titre */
  text-align: center;
}

.prestation-text {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 40px; /* Plus d'espace pour un meilleur alignement */
  text-align: center;
}
/* Button for requesting a quote */
.btn-request-quote {
  background-color: #b9a05d;
  color: #fff;
  padding: 12px 25px; /* Réduction de la hauteur du bouton */
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: auto; /* Limiter la largeur */
  display: inline-block;
  margin-top: 40px; /* Espace au-dessus du bouton */
}

.btn-request-quote:hover {
  background-color: #a6884e;
  transform: scale(1.05); /* Effet de survol */
}

.btn-request-quote:focus {
  outline: none;
}

/* Modal formulaire */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
  padding-top: 60px;
  backdrop-filter: blur(5px); /* Effet de flou pour l'arrière-plan */
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border: none;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close:hover,
.close:focus {
  color: #000;
  transform: scale(1.2);
}

h2 {
  text-align: center;
  color: #b9a05d;
  margin-bottom: 30px;
  font-size: 1.8em;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.input-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  font-size: 1em;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #b9a05d;
  box-shadow: 0 0 5px rgba(185, 160, 93, 0.5);
}

textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  font-size: 1em;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

textarea:focus {
  outline: none;
  border-color: #b9a05d;
  box-shadow: 0 0 5px rgba(185, 160, 93, 0.5);
}

/* Submit button in the form */
.btn-submit {
  background-color: #b9a05d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
}

.btn-submit:hover {
  background-color: #a6884e;
  transform: scale(1.05);
}

/* Section Bienfaits */
.bienfaits {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.bienfaits .section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #333;
  margin: 0 auto 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 10px;
  display: block;
  width: 100%;
}

.bienfaits .section-title::after {
  content: '';
  display: block;
  width: 550px;
  height: 3px;
  background-color: #b9a05d; /* Couleur dorée */
  margin: 10px auto 0;
}

.bienfait-text {
  font-size: 1.2em;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto 40px;
  text-align: center;
}

/* Grid layout for the benefits */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.advantage-item {
  background-color: #f7f2e9; /* Couleur douce */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-8px); /* Mise en avant subtile */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.advantage-item h4 {
  font-size: 1.5em;
  color: #b9a05d; /* Accent doré */
  margin-bottom: 15px;
}

.advantage-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.8;
}

/* Icones dans les titres */
.advantage-item h4::before {
  margin-right: 8px;
  color: #b9a05d; /* Accent doré pour les icônes */
}


@media (max-width: 768px) {
  .timeline {
    flex-direction: column; /* Empilement des étapes en colonne */
    align-items: center;
  }

  .timeline-step {
    width: 100%; /* Pleine largeur pour chaque étape sur mobile */
    margin-bottom: 40px;
  }

  .timeline::after {
    display: none; /* Cacher la ligne horizontale sur mobile */
  }

  .timeline-step:not(:last-child)::after {
    display: none; /* Cacher les flèches entre les étapes */
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bienfaits .section-title {
    font-size: 1.8em;
  }

  .advantage-item h4 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}


/* Section Que Peut-On Nettoyer */
/* Section Que Peut-On Nettoyer */
.que-nettoyer {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.que-nettoyer .section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #333;
  margin: 0 auto 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 10px;
  display: block;
  width: 100%;
}

.que-nettoyer .section-title::after {
  content: '';
  display: block;
  width: 550px;
  height: 3px;
  background-color: #b9a05d; /* Accent doré */
  margin: 10px auto 0;
}

.que-nettoyer-text {
  font-size: 1.2em;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto 40px;
  text-align: center;
}

/* Grille des éléments à nettoyer */
.cleaning-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Trois colonnes */
  gap: 30px;
  margin-top: 40px;
  padding: 0;
}

.cleaning-item {
  background-color: #f7f2e9; /* Couleur douce */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Légère ombre pour ajouter de la profondeur */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* Centre tout le contenu */
}

.cleaning-item:hover {
  transform: translateY(-8px); /* Animation subtile au survol */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cleaning-item h4 {
  font-size: 1.5em;
  color: #b9a05d; /* Accent doré */
  margin-bottom: 15px;
  display: flex;
  justify-content: center; /* Centre l'icône et le titre */
  align-items: center;
}

.cleaning-item h4 img {
  margin-right: 10px; /* Espacement entre l'icône et le titre */
  width: 24px; /* Taille des icônes */
  height: 24px;
}

.cleaning-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cleaning-items {
    grid-template-columns: repeat(2, 1fr); /* Deux colonnes pour les tablettes */
    gap: 20px;
  }

  .que-nettoyer .section-title {
    font-size: 1.8em;
  }

  .cleaning-item h4 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .cleaning-items {
    grid-template-columns: 1fr; /* Une colonne pour mobile */
  }
}

/* Résultats Section */
.resultats {
  padding: 60px 20px;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content-container {
  max-width: 1500px;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 20px;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 20px; /* Space between elements */
  width: 100%;
}

.results-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 110%; /* Increase padding-top to zoom out the images */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.results-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%; /* Increase the image size for a larger effect */
  height: 120%;
  object-fit: cover;
  transition: opacity 1s ease, transform 1s ease;
}

.results-image.after {
  opacity: 0;
  z-index: 1;
}

.results-item:hover .results-image.after {
  opacity: 1;
}

.results-item:hover .results-image.before {
  opacity: 0;
}
.results-instruction {
  text-align: center;
  justify-content: center;
  font-size: 1em; /* Slightly reduced from 1.1em */
  color: #666;
  margin-bottom: 30px; /* Space between instruction and gallery */
  font-style: italic;
  max-width: 100%; /* Limit width for better readability on larger screens */
}

.testimonial {
  font-size: 1.1em; /* Slightly increase the font size */
  color: #555;
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 10px; /* Add space above the testimonial */
}

/* Présentation Entreprise Section */
.presentation-entreprise {
  background: linear-gradient(135deg, #fafafa 0%, #f3f3f3 100%);
  padding: 80px 20px; /* Espace agrandi */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligne vers le haut pour laisser de l'espace en bas */
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.presentation-entreprise .content-containerbis {
  width: 100%;
  max-width: 1400px; /* Agrandit la section globalement */
  justify-content: space-between;
}

.content-containerbis {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70%; /* Réduction de la taille maximale de l'image à 40% */
  z-index: 1;
}

.content-containerbis h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.team-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-image:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.texte {
  flex: 2;
  max-width: 55%; /* Augmente la largeur du texte pour étendre sa hauteur */
  text-align: left;
  color: #333;
  padding-left: 20px;
  z-index: 1;
}

.texte h2 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #DEB068;
  position: relative;
  text-align: left;
}

.texte h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: #DEB068;
  margin: 5px 0 0;
  border-radius: 2px;
}

.texte p {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #555;
  max-width: 95%; /* Limite la largeur des paragraphes pour éviter une ligne trop large */
}

/* Contact Section */
.contact {
  padding: 10px 20px;
  background-color: #DEB068;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.logo-and-description {
  max-width: 600px;
  flex: 1;
  text-align: left;
  margin-bottom: 20px;
}

.contact-logo {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.contact-description {
  font-size: 1.2em;
  margin-top: 10px;
  line-height: 1.6;
  color: #f1f1f1;
}


.social-links-contact {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  filter: invert(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  filter: invert(80%) sepia(60%) saturate(500%) hue-rotate(10deg) brightness(100%);
}

.contact-info {
  max-width: 400px;
  flex: 1;
  text-align: right;
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #f1f1f1;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(100%);
  transition: transform 0.3s ease;
}

.contact-info p:hover .contact-icon {
  transform: scale(1.1);
}

/* Mentions Légales Section */
/* Footer Section */
.footer {
  background-color: #DEB068;
  color: #f1f1f1;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em; /* Réduit la taille de la police */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Ombre subtile pour le bas */
}

.footer-content {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  flex: 1;
}

.legal-link {
  text-decoration: none;
  color: #f1f1f1;
  font-size: 0.9em;
  transition: color 0.3s ease;
  right: 0;
}

.legal-link:hover {
  color: #c89d56;
}

.copyright {
  flex: 1;
  text-align: center; /* Centrer le texte */
}


/* Reset default spacing */
section {
  padding: 0;
  margin: 0;
}

.confirmation-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10000; /* Assurez-vous qu'elle apparaît au-dessus de tout */
  text-align: center;
  width: 80%;
  max-width: 400px;
}

.confirmation-card h2 {
  color: #DEB068;
  margin-bottom: 20px;
}

.confirmation-card p {
  margin-bottom: 20px;
  color: #333;
}

.confirmation-card button {
  background-color: #DEB068;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.confirmation-card button:hover {
  background-color: #c89d56;
}

/* Pour les cookies */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--bg-color);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
  width: 400px;
  max-width: 90%;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.cookie-banner.show {
  transform: translateX(0);
}

.cookie-content {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.cookie-content h2 {
  color: var(--text-color);
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 10px;
}

.cookie-content p {
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 15px;
}

.cookie-preferences {
  width: 100%;
}

.preference-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.preference-header > span:first-child {
  font-weight: bold;
  font-size: 14px;
  flex: 1;
}

.always-active {
  color: green;
  font-size: 10px;
  margin-right: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
  margin-left: auto;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(16px);
}

.cookie-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.btn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s, transform 0.2s;
  flex: 1;
  margin: 0 3px;
}

.btn-primary {
  background-color: #DEB068;
  color: white;
}

.btn-secondary {
  background-color: #f1f1f1;
  color: var(--text-color);
}

.toggle-details {
  background: none;
  border: none;
  font-size: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 2px;
  color: #333;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-details:hover {
  transform: scale(1.1);
}

.toggle-details.open {
  transform: rotate(180deg);
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-color);
}


/* Header Styles pour Mobile */
@media (max-width: 768px) {
  body, html {
    font-size: 3vw;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Assurez-vous que le débordement horizontal est bien caché */
    box-sizing: border-box;
  }

  h1 {
    font-size: 2rem; /* Taille de police relative à la taille de base du document */
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribue l'espace entre les éléments */
    padding: 10px 20px;
    background-color: #DEB068;
    position: relative;
  }

  .logo {
    width: 150px; /* Ajustez selon la taille souhaitée */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    padding: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .menu-toggle .menu-line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
  }

  .social-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: -15px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .social-icons {
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;
  }

  .social-icon {
    width: 18px;
    height: auto;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .social-icon:hover {
    transform: scale(1.2);
  }

  .emplacement{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.5em;
    color: white;
    white-space: nowrap;
  }

  .emplacement-icon {
    width: 18px;
    height: auto;
    margin-right: 10px;
  }

  /* Menu déroulant */
  .menu-toggle.open + nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #DEB068;
    width: 110%; /* Pleine largeur */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
  }

  .menu-toggle .menu-line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
  }

  .menu-toggle.open .menu-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.open .menu-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open .menu-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; /* Ajustez selon la hauteur de votre header */
    left: 0;
    width: 110%;
    background-color: #DEB068;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease;
    opacity: 0;
    visibility: hidden;
  }

  nav ul.open {
    max-height: 500px; /* Ajustez selon le contenu de votre menu */
    opacity: 1;
    visibility: visible;
  }

  nav ul li {
    text-align: center;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    font-family: 'Lora', serif;
    color: white;
    font-size: 1.5em;
    display: block;
    padding: 10px;
  }

  nav ul li a:hover {
    color: #c89d56;
  }
}

/* Prestations Section for Mobile */
/*  Section location for Mobile */
@media (max-width: 768px) {
  .locations {
    padding: 30px 10px; /* Ajustement du padding pour plus d'espace */
    text-align: center;
    background-color: #f9f9f9; /* Optionnel : léger contraste pour faire ressortir la section */
  }

  .locations .section-title {
    margin: 0 auto 20px auto; /* Centre le titre et ajoute un espace en bas */
    padding: 0 20px; /* Ajoute un peu d'espace sur les côtés pour éviter que le texte ne touche les bords */
    color: #333;
    text-transform: uppercase;
    line-height: 1.2; /* Réduit l'espacement entre les lignes pour plus de compacité */
    font-weight: bold;
  }

  .offers {
    display: flex;
    align-items: center; /* Centre les cartes */
    width: 100%;
    padding: 0; /* Retire le padding horizontal */
  }

  .offer-card {
    width: 100%; /* Carte prend la totalité de la largeur disponible */
    max-width: 320px; /* Limite la largeur maximale pour un bon centrage */
    margin-bottom: 20px; /* Espace entre les cartes */
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  .offer-image {
    width: 100%;
    height: 180px; /* Ajustement de la hauteur de l'image */
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }

  .offer-details {
    padding: 15px; /* Réduction du padding pour mobile */
    text-align: center;
  }

  .offer-title {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
  }

  .offer-price {
    font-size: 1.2em;
    color: #DEB068;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }

  .offer-benefits li {
    font-size: 1em;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .offer-benefits li img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .btn-reserve {
    background-color: #DEB068;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%; /* Le bouton prend toute la largeur disponible */
  }

  .btn-reserve:hover {
    background-color: #c89d56;
    transform: scale(1.05);
  }
}



/* Section chnonologie for Mobile */
@media (max-width: 768px) {
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background-color: transparent;
    width: 100%; /* Assurez-vous que la timeline prend bien toute la largeur */
    box-sizing: border-box;
  }

  .timeline-step {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .step-number {
    font-size: 1.5em;
    color: #b9a05d;
    margin-bottom: 10px;
  }

  .step-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .step-description {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    padding: 0 10px;
  }
}

/* Results Section for Mobile */
/* Results Section for Mobile */
@media (max-width: 768px) {
  .results-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .results-item {
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Garde la card à pleine largeur */
  }

  .image-wrapper {
    position: relative;
    padding-top: 80%; /* Augmente la hauteur des images pour agrandir */
    border-radius: 10px;
    overflow: hidden;
  }

  .results-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit tout le conteneur avec l'image sans la déformer */
    border-radius: 10px;
  }
}


/* Section présentation entreprise for Mobile */
@media (max-width: 768px) {
  .presentation-entreprise {
    padding: 20px 15px; /* Réduire le padding pour diminuer l'écart */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .content-containerbis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .image {
    width: 80%; /* Augmenter la largeur de l'image */
    max-width: 400px; /* Augmenter la taille maximale de l'image */
    margin-bottom: 10px; /* Réduire l'écart sous l'image */
    align-items: center;

  }

  .image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .texte {
    width: 100%;
    text-align: center;
    margin-top: 5px; /* Réduire l'espace entre l'image et le texte */
    max-width: 800px;
  }

  .texte h2 {
    font-size: 2.4em;
    margin-bottom: 10px;
    color: #DEB068;
    font-weight: 700;
    text-align: center;
  }

  .texte h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #DEB068;
    margin: 8px auto;
  }

  .texte p {
    font-size: 1.4em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
  }
}





/* Contact Section for Mobile */
@media (max-width: 768px) {
  .contact {
    padding: 20px 20px;
    background-color: #DEB068;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-and-description {
    margin-bottom: 20px;
  }

  .social-links-contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  /* Contacts section */
  .contact-info {
    margin-top: 10px; /* Add space between description and contact info */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add spacing between email and phone */
    align-items: center;
    justify-content: center;
  }

  .contact-info h2 {
    margin-bottom: 10px; /* Reduce space for better balance */
  }

  .contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
  }

  .contact-info p img.contact-icon {
    margin-right: 8px; /* Add space between the icon and the text */
    width: 20px;
    height: 20px;
  }

  .contact-info p:first-child {
    margin-bottom: 5px; /* Reduce space between email and phone number */
  }

  .contact-info p:nth-child(2) {
    margin-top: 0; /* Make sure there's no extra margin */
  }
}

/* cookie banner */

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    border-radius: 8px;
    transform: translateY(120%);
    padding: 15px;
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-content {
    padding: 0 10px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .close-btn {
    top: 5px;
    right: 5px;
  }
}

/* Footer Section for Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
  }

  .footer-content {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    flex: 1;
  }

  .legal-link {
    margin-top: 10px;
  }

  .legal-link:hover {
    color: #c89d56;
  }
}

/* Styles pour tablettes (768px à 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* Ajustements globaux pour les tablettes */
  body, html {
    font-size: 1.5vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  header {
    padding: 15px 30px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 220px; /* Légèrement plus grand que sur mobile */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    padding: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .menu-toggle .menu-line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
  }

  .social-links-container {
    display: flex;
    align-items: center;
  }

  .social-icons {
    display: flex;
    margin-right: 20px;
  }

  .social-icon {
    width: 30px;
    height: auto;
    margin-left: 15px;
  }

  .emplacement {
    font-size: 1em; /* Légèrement plus grand que sur mobile */
  }

  .emplacement-icon {
    width: 20px;
    height: auto;
    margin-right: 8px;
  }

  /* Menu déroulant */
  .menu-toggle.open + nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px; /* Ajustez en fonction de la hauteur de votre header */
    left: 0;
    background-color: #DEB068;
    width: 110%; /* Pleine largeur */

    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  nav ul {
    display: none; /* Caché par défaut */
    position: absolute;
    top: 80px; /* Ajustez en fonction de la hauteur de votre header */
    left: 0;
    width: 110%; /* Pleine largeur */
    background-color: #DEB068;
    padding: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    flex-direction: column;
    align-items: center;
  }

  nav ul.menu-visible {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 15px 0;
    width: 100%;
  }

  nav ul li a {
    font-family: 'Lora', serif;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: #c89d56;
  }

  .menu-toggle .menu-line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
  }

  /* Section Prestations pour tablettes */
  .locations {
    padding: 40px 20px;
  }

  .offer-card {
    max-width: 250px; /* Cartes légèrement plus grandes que sur mobile */
  }

  .offer-title {
    font-size: 1.6em;
  }

  .offer-price {
    font-size: 1.3em;
  }

  /* Timeline pour tablettes */
  .timeline {
    flex-direction: row; /* Garde les étapes en ligne horizontale */
    justify-content: space-between; /* Espacement uniforme entre les étapes */
  }

  .timeline-step {
    width: 30%; /* Ajuste la largeur des étapes */
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
  }

  /* Résultats Section pour tablettes */
/* Résultats Section pour tablettes */
.resultats {
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.section-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #DEB068; /* Couleur de la ligne, ajustez selon votre charte graphique */
  margin-top: 10px;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

.results-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.results-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}


  /* Section Présentation pour tablettes */
  .presentation-entreprise {
    padding: 40px 30px; /* Un peu plus d'espace sur les côtés */
    max-width: 1000px;
  }

  .image {
    width: 60%; /* Taille ajustée de l'image pour tablette */
  }

  .texte h2 {
    font-size: 2.2em;
  }

  .texte p {
    font-size: 1.3em;
  }

  /* Section Contact pour tablettes */
  .contact {
    padding: 30px 20px;
  }

  .contact-container {
    max-width: 800px;
  }

  .contact-info p {
    font-size: 1.2em;
  }

  /* Footer pour tablettes */
  .footer {
    padding: 15px 30px;
  }

  .footer-content {
    font-size: 1em;
  }


  /* Ajustement des marges pour un espacement plus harmonieux */
  .timeline-step {
    margin-bottom: 40px;
  }

  /* Alignement vertical ajusté pour une meilleure présentation sur tablettes */
  .timeline-step h3 {
    margin-bottom: 10px;
  }

  /* Police de la section "Comment ça marche ?" légèrement ajustée pour tablettes */
  .timeline-step p {
    font-size: 1.1em;
    color: #666;
  }

  /* cookie banner */
  .cookie-banner {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    max-width: none;
    border-radius: 8px;
    transform: translateY(120%);
    padding: 15px;
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-content {
    padding: 0 10px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .close-btn {
    top: 5px;
    right: 5px;
  }
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.animated {
  animation: fadeInUp 0.5s ease forwards;
}
