body {
    font-weight: 400;
    line-height: 1.5;
    font-size: 18px;
    font-family: "Roboto", serif;
    background-color: whitesmoke;

  }

  strong {
    font-weight: bold;
  }

 
  
  * {
    box-sizing: border-box;
  }

  .header-container {
    position: relative;
  }

header {
   width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: rgb(9, 22, 109);

    z-index: 999;
}



.header-logo-container {
  height: 100%;
  padding: 5px;
  display: flex;
  gap: 1rem;
  align-items: center;

  text-decoration: none;

}

.header-logo {
  height: 100%;
  
}
.header-menu {
    display: flex;
    gap: 2rem;
    padding: 5px;
    
    font-size: 16px;

}

.header-menu a {
  color: whitesmoke;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 20px;
}


/* .current-menu-item a{
 
  color: rgb(147, 145, 145)!important;
  } */
  
  
  .menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px; /* Épaisseur de la ligne de soulignement */
    background-color: grey; /* Couleur de la ligne de soulignement */
    transform: scaleX(0); /* Initialement, la ligne est invisible */
    transform-origin: bottom left; /* Point d'origine de la transformation */
    transition: transform 0.5s ease; /* Transition de la ligne de soulignement */
  }
  
  .menu-item  a:hover::after {
    transform: scaleX(1); /* La ligne de soulignement devient visible */
  }

/* Icône burger */
.hamburger {
    display: none !important; /* Cache le bouton burger sur desktop */
  
  }

  .navigation-mobile {
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 10px;
    font-size: 15px;
    z-index: 9999;

    background-color: #09166d;
   


    text-transform: uppercase;
  }

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

  .navigation-mobile.closing {
    animation: latteral-off 0.4s forwards;
  }


/* Animations */
@keyframes latteral {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes latteral-off {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  }

/* Responsive */
@media (max-width: 862px) {

    body {
  
      font-size: 14px;
  
    }

    header {
      align-items: center;
    }

    .header-menu {
        display: none;
      }

      .hamburger {
        display: block !important;
        
      }

      .menu-item {
       
        display: flex;
        justify-content: end;
        margin: 5px 0;
        padding: 5px 0;
   
      }

      .menu-item a{
  text-decoration: none;
  color: whitesmoke;
   
      }

}

/* Change la couleur des barres du menu burger */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: white!important; /* Mets la couleur que tu veux */
}
