html,

body {
  overflow-x: hidden;

  /* Cache le débordement horizontal */
  max-width: 100%;
  /* Évite l'extension au-delà de l'écran */
}

/* Assurer que le menu burger a un z-index élevé pour être au-dessus de tout */
#menu-button {
  z-index: 999;
  /* Très haut pour qu'il soit au-dessus des autres éléments */
  position: relative;
  /* Important si ce n'est pas déjà défini */
}


header {
  width: 100% !important;
  /* Prend toute la largeur */
  max-width: 1200px !important;
  /* Limite la largeur max */
  margin: 0 auto;
  /* Centre si nécessaire */
  padding: 10px 20px;
  /* Ajuste l'espacement */
  box-sizing: border-box;
  /* Évite que le padding augmente la largeur */
  z-index: 999;
  /* Très haut pour qu'il soit au-dessus des autres éléments */
}

/* Hero section */
.hero-section {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto;
  padding-top: 40px !important;
  padding-bottom: 100px !important;
  position: relative;
  z-index: 1;
  /* Réduit le z-index pour le mettre sous le menu */
  padding-top: 100px !important;
  /* Augmenter la marge en haut pour éviter l'empiètement */
}

.hero-section img {
  width: 600px;
  /* Garde la taille de l’image */
  height: auto;
}

.hero-section h2,
.hero-section p {
  color: black !important;
  /* Force la couleur du texte */
}

.services-section {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 48px 16px !important;
  /* Padding haut et bas */
  background-color: #f3f4f6;
  /* Gris clair */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.services-card {
  background: #f9fafb;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.services-card img {
  transition: transform 0.2s ease-in-out;
}

.services-card img:hover {
  transform: scale(1.05);
}

.container {
  overflow: visible !important;
}


@media (max-width: 768px) {
  .mobile-slider {
    display: block !important;
    /* Affiche le slider */
  }
}



#googleReviews {
  padding: 3rem 0;
  background-color: #f7fafc;
  /* Couleur de fond similaire à bg-gray-100 */
}

#googleReviews .container {
  max-width: 1200px;
  margin: 0 auto;
}

#googleReviews h2 {
  font-size: 1.875rem;
  /* Taille de texte pour 3xl */
  font-weight: 700;
  /* font-bold */
  padding: 0.5rem 1.5rem;
}

#googleReviews .text-center {
  text-align: center;
  margin-bottom: 2rem;
}

footer {
  width: 100% !important;
  /* Prend toute la largeur */
  max-width: 1200px !important;
  /* Limite la largeur max */
  margin: 0 auto;
  /* Centre si nécessaire */
  padding: 10px 20px;
  /* Ajuste l'espacement */
  box-sizing: border-box;
  /* Évite que le padding augmente la largeur */
}


.footer>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer img {
  width: auto;
  height: 48px;
  /* Ajuste la taille de l'image */
  max-width: 100%;
  margin-bottom: 16px;
}

.footer p {
  text-align: center;
  color: #a0aec0;
  /* Gris clair */
  margin-bottom: 16px;
  flex: 1;
}

.footer>div>div {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.visit-counter {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3182ce;
  /* Bleu clair */
}

@media (min-width: 768px) {
  .footer>div {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer img {
    margin-bottom: 0;
  }

  .footer p {
    margin-bottom: 0;
  }

  .footer>div>div {
    margin-bottom: 0;
  }
}

/* Style par défaut (Desktop) */
#scroll-indicator-wrapper {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 120px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 2147483647;
  transition: transform 0.3s ease;
}

/* Cache le menu par défaut sur mobile */
#scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  padding: 10px;
  pointer-events: auto;
}

/* Chaque item du menu */
.scroll-item {
  color: #cbd5e0;
  font-size: 1rem;
  padding: 8px 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.scroll-item:hover {
  color: #3182ce;
  /* Bleu clair au survol */
}


.scroll-item.active {
  color: #3182ce;
  /* Bleu clair */
}

@media (max-width: 768px) {
  #scroll-indicator-wrapper {
    width: 50px;
    height: 50px;
    left: 10px;
    padding: 5px;
    margin-top: 50px;
    overflow: visible !important;
  }

  #scroll-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #e98121;
    color: white;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    font-size: 30px;
    /* Ajuste la taille des tirets si nécessaire */
  }


  #scroll-indicator {
    display: none;
    /* Caché par défaut sur mobile */
    position: absolute;
    top: 0;
    left: 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  /* Affiche le menu quand "open" est actif */
  #scroll-indicator.open {
    display: block !important;
    z-index: 9999;
    /* Assure que le menu est au-dessus de tout */
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 150px;
  }
}



body {
  background-image: url('/content/images/Designer.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  max-width: 100%;
  margin: 0;
  /* Assure qu'il n'y ait pas de marge par défaut */
  padding: 0;
  /* Assure qu'il n'y ait pas de padding par défaut */
  font-family: Arial, sans-serif;
  /* Ou toute autre police souhaitée */
  color: #2d3748;
  /* Gris foncé pour le texte */
}

.bg-gray-100 {
  background-color: #f7fafc;
  /* Gris clair */
}

.text-gray-800 {
  color: #2d3748;
  /* Gris foncé */
}


/* Styles généraux pour la lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Fond semi-transparent */
  display: none;
  /* Masqué par défaut */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Assurer qu'elle est au-dessus de tout */
  overflow: hidden;
}

/* Contenu de la lightbox (l'image) */
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  padding: 10px;
  text-align: center;
}

/* L'image à l'intérieur de la lightbox */
#lightbox-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Garde les proportions de l'image */
  border-radius: 8px;
}

/* Bouton de fermeture de la lightbox */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: #3182ce;
  /* Couleur bleue au survol */
}

/* Effet d'animation lors de l'ouverture et la fermeture */
@keyframes lightbox-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightbox-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Application de l'animation de fade-in lorsque la lightbox s'affiche */
.lightbox.show {
  display: flex;
  animation: lightbox-fade-in 0.5s ease-in-out;
}