* {
  font-family: 'Inconsolata', 'Lucida Console', monospace;
  margin-top: 0px;
  margin: 0;
  line-height: 1.2;
}

/*nav*/
.navHaut {
  background-color: #f4f4f4;
}

.navHaut a {
  text-decoration: none;
  padding: 12px;
  font-size: 22px;
  position: relative;
}

.navHaut ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.navHaut li {
  margin-top: 12px;
}

#ZenovaTech {
  color: hsl(135, 45%, 47%);
  font-weight: bold;
  font-size: 25px;
}

.link a {
  color: #2d2d2d;
}

.separatorNav {
  border: none;
  height: 1px;
  background-color: #2d2d2d;
  margin: 12px 0;
}

.navHaut .logoNav {
  flex: 1;
  text-align: left;
}

.navHaut .link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -14px;
  width: 100%;
  height: 3px;
  background-color: hsl(135, 45%, 47%);
  transform: scaleX(0);
}

.navHaut .link a:hover::after {
  transform: scaleX(1);
}

#hoverLink:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -14px;
  width: 100%;
  height: 3px;
  background-color: hsl(135, 45%, 47%);
  transform: scaleX(1);
}

/* Slogan*/
.GrosTitre {
  text-align: center;
  margin-top: 45px;
  font-family: 'Pacifico', sans-serif;
  background: linear-gradient(to right, greenyellow, rgb(206, 206, 29), rgb(0, 204, 187), greenyellow);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 50px;
  margin-bottom: 60px;
}

/* Bouton de chat */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: hsl(135, 45%, 47%);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.chat-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  height: 400px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: none;
  z-index: 9999;
}

/* Fenêtre contact fixe */
.bubble {
  position: fixed;
  top: 90px;
  right: 20px;
  background-color: hsl(135, 45%, 47%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 1000;
}

.bubble .phone-icon {
  margin-right: 10px;
}

.bubble a {
  text-decoration: none;
  color: white;
}

.bubble .phone-number {
  font-weight: bold;
}

/* Section "Nous Contacter" */
.contact-section {
  background-color: #f4f4f4;
  padding: 20px;
  text-align: center;
  border-top: 3px solid hsl(135, 45%, 47%);
  margin-top: 170px;
}

.contact-section a {
  color: hsl(135, 45%, 47%);
  font-weight: bold;
}

#paddingcontact-section {
  margin-bottom: 18px;
}

/*Donner un avis*/
#buttonAvis {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: hsl(135, 45%, 47%);
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#buttonAvis:hover {
  background-color: hsl(135, 45%, 47%);
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

#buttonAvis:active {
  background-color: hsl(135, 45%, 47%);;
  transform: translateY(1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styles adaptés pour les écrans très petits */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .Quisommes-nous {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }

  .video-container {
    width: 100%;
    height: auto;
  }

  .GrosTitre {
    font-size: 30px;
    margin: 20px 0;
  }

  .navHaut ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navHaut a {
    font-size: 18px;
    padding: 10px;
  }

  #hoverLink:after {
    bottom: 6px;
  }

  .navHaut .link a::after {
    bottom: 6px;
  }

  .bubble {
    top: 140px;
  }

  .contact-section {
    margin-top: 10px;
  }
}