.nav-wrapper{
    background-color: #181818;
}

.nav-wrapper ul li a:not(.eoh-home-link) {
    transition: font-size 0.5s;
}
#nav-container {
    position: relative;
}
.nav-wrapper ul li a:hover {
    /* background-color: #3d505c; */
    color: #a58a5f;
    font-size: 18px;
}

.nav-wrapper ul li {
    width: 115px; 
    text-align: center;
}

.nav-wrapper ul li > ul {
    display: none;
    background-color: #111111#111111;
    color: white;
    position: absolute;
}

.nav-wrapper ul li:hover > ul {
    display: block;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline;
    margin-right: 10px;
}

.eoh-home-link{
    font-size: 18px;
}

/* Cache le menu texte pour les écrans inférieurs à 995px */
@media only screen and (max-width: 995px) {
    
    .navbar-fixed {
        position: fixed;
      }

    .left.hide-on-med-and-down {
      display: flex;
    }

    .left.hide-on-med-and-down li {
        line-height: 3; 
        margin-bottom: 25px; 
    }
    .left.hide-on-med-and-down.vertical-menu {
        max-height: 80vh; /* Ajuste cette valeur selon la hauteur souhaitée */
        overflow-y: auto; /* Permet le défilement vertical si nécessaire */
    }
    .navbar-fixed .nav-wrapper {
        height: 100px;
        line-height: 100px;
      }      
    #menu-logo {
        width: 100px;  
        height: 100px; 
    }   
    #menu-logo:active, 
    #menu-logo:focus, 
    #menu-logo:visited, 
    #menu-logo:hover {
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
}
    #menu-icon {
        display: absolute;
        justify-content: center;
        align-items: center;
        height: 100%; 
    }   
    .vertical-menu {
        top: 100px; 
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        position: absolute;
        align-items: center;
        top: 100%;
        left: 0;
        background-color: #111111;
        z-index: 1000; 
    }
}