/* ======================================
   FICHIER : header.css
   DESCRIPTION : Feuille de styles général de la nav bar
   AUTEUR : COULAIS Tom
   DATE : 02/04/2025
   ====================================== */

.navbar {
    color: #f7f7f7;
    background-color: #006191;
    width: 100vw;
    height: auto;
    font-size: 100vw;
    line-height: 4vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.buttonnav {
    text-align: center;
    background-color: #006191;
    border-radius: 20px;
    padding: 10px 15px;
    width: auto;
    height: auto;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: none;
    color: #f7f7f7;
    transition: all 0.3s ease-in-out;
    position: relative;
    margin: 0 30px 0 0  ;
}

.buttonnav.w--current {
    color: #006191;
    background-color: #F9F3E9;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    bottom: 0; 
}

.navbarimg {
    width: 12vw;
    margin: auto 50px auto 10px;
    font-size: 1rem;
    line-height: 1rem;
}
.navbartexte {
    color: #afdef4;
    text-transform: uppercase;
    cursor: pointer;
    width: 30vw;
    min-width: 400px;
    height: 4vh;
    margin-left: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.flex-block {
    justify-content: flex-start;
    align-items: flex-end;
    width: 100vw;
    height: 60px;
  }

  @media only screen and (max-width: 1366px) {
    .buttonnav{
        font-size: 1rem;
    }
    .buttonnav.w--current {
        padding: 5px 10px;
    }
    .navbarimg{
        width: 20vw;
    }
    .navbar{
       height: 6vh;
    } 
  }
