body {
  font-family: 'Quick Sand', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #0a2c19;
  background-color: #F7F7F7;
  font-size: 18px;
}

.header {
  height: 150px;
  width: 100%;
  background-color: #F7F7F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: fixed;
  z-index: 999;
}

.header-top{
  height: 50px;
  width: 100%;
  background-color: #76C1B5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header-top-tel-icon{
  height: 20px;
  
}

.header-top-tel{
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-top-tel:hover{
  text-decoration: underline;
}

.header-container {
  height: 100px;
  max-width: 100%;
  min-width: 80%;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 5px;

  box-sizing: border-box;
}

.logo {
  height: 90%;
 
  /* width: 100%; */
}

.logo-link {
height: 100%;
width: fit-content;
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.navigation-link a {
  color: #0a2c19;
  text-decoration: none;
  transition: color 0.5s;
}

.navigation-link a:hover {
  color: #4CA074;
}

.current_page_item a {
  color: #4CA074;
}

.navigation-mobile .current_page_item a {
    color: #4CA074;
  }





/*----------------------icone burger---------------------------------------------------*/

.burger-icon {
  position: absolute;
  bottom: 10px;
  /* transform: translateY(-50%); */
  right: 5px;
  height: fit-content;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/*----------------------fin icone burger---------------------------------------------------*/

/*----------------------menu mobile---------------------------------------------------*/

.navigation-mobile {
  height: fit-content;
  width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  box-sizing: border-box;
  padding: 10px;
  font-size: 15px;
  /* visibility: collapse; */
  z-index: 999;
  transition: visibility 0.4s; /* Ajout de la transition pour la propriété visibility */
  border-left: 1px solid rgb(232, 231, 231);
  border-bottom: 1px solid rgb(232, 231, 231);
  background-color: #F7F7F7;
  display: flex;
  justify-content: center;
}

.mobile-link {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation-mobile.active {
  visibility: visible;
  animation: latteral 0.4s forwards;
}

.navigation-mobile.inactive {
  display: none;
}

.mobile_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes latteral {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes latteral-off {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
    display: none;
  }
}

/* Ajout de styles pour l'animation de fermeture */
.navigation-mobile.closing {
  animation: latteral-off 0.4s forwards;
}

.navigation-mobile li {
  padding: 0.5rem;
}

.navigation-mobile a {
  color: #0a2c19;
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: center;
}

/*---------------------- fin menu mobile---------------------------------------------------*/



/*    responsive */

@media (max-width: 800px) {
  .header-menu {
    display: none;
  }

  .burger-icon,
  .navigation-mobile {
    display: flex;
  }

  .header-top-tel-icon{
    height: 20px;
    display: block;
  }

  /* .header-top-tel p{
    display: none;
  } */

  .header-top p {
    font-size: 12px;
  }
}
