.header {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: baseline;
    padding: 2rem;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    z-index: 10;
    border-bottom: 1px solid transparent;
   
    box-shadow: 0px 2px 5px rgba(127, 190, 151, 0.2); /* Ajout d'une ombre douce */
  }
  
  .title__h1 {
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
  }

  .title__link{
    text-decoration: none;
  }

  .nav{
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Menu masqué par défaut */
  .nav__list {
    display: flex;
    list-style: none;
    top: 100%;
    left: 0;
    width: 100%;
    gap: 2rem;
  }

  .nav__link {
    text-decoration: none;
    color: #ffffff; /* Couleur par défaut */
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  

  .nav__link i {
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .nav__link:hover i {
    transform: scale(1.6); /* Agrandit l'icône au survol */
    color: #7fbe97; /* Change la couleur de l'icône en vert au survol */
  }
  



  @media screen and (max-width: 768px) {


    .header{
      width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 20% !important;
        padding: 0;
        gap: 2rem;


    }



    .nav__list{
        width: 100%;
        gap: 1rem;
    }
    
  }
  