.navbs {


    background: linear-gradient(90deg, rgba(0, 196, 214, 0.834) 0%, rgb(0, 116, 170) 100%);
    color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.228);
    /* Ajout d'une ombre légère */

}

.navbar-toggler {
    color: #EBA16C;
    border: 0px;
}

.burger-icon span {
    display: block;
    width: 35px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin: 6px 0;
}

.logo {

    width: 150px;
    padding-left: 25px;
}

#navbarNavDropdown {

    justify-content: right;
}

.nav-link {

    text-align: center;
    color: #EBA16C;
}

.nav-link:hover {

    text-align: center;
    color: #EBA16C;
}


.nav-link:active {
    text-align: center;
    color: #EBA16C;
    /* Couleur lorsque survolé ou cliqué */
}

.dropdown-item {
    color: #fff;
    text-align: center;
}



.dropdown-menu {
    position: relative;
    background: linear-gradient(90deg, rgb(0, 196, 214) 0%, rgb(0, 196, 214) 100%);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: 1;
    height: auto;
}

.dropdown-menu::before {
    content: "";
    background-image: url('https://www.doudi.app/img/pattern.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 500%;
    z-index: -1;
}






.nav-link.dropdown-toggle.show {
    color: #0277AB !important;
}





.dropdown-menu.show {
    position: relative;
    background: linear-gradient(90deg, rgb(0, 196, 214) 0%, rgb(1, 162, 237) 100%);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    height: auto;
}

.dropdown-menu.shows::before {
    content: "";
    background-image: url('https://www.doudi.app/img/pattern.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 500%;
    z-index: -1;
}





.dropdown-menu .ajoutenfant .show {
    position: absolute;

    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 991;
    height: auto;
}

.dropdown-menu .ajoutenfant .shows::before {
    content: "";

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media screen and (min-width: 991px) {

    .dropdown-item {

        text-align: left;


    }

    .dropdown-menu {
        border: none;
        background-color: #143e58c9 !important;
    }

}

.active {
    color: #1f8ede;
}


.collapse {
    z-index: 999;
}


@media (max-width: 768px) {

    /* Par exemple pour les appareils jusqu'à la taille d'une tablette en mode portrait */
    .navbar-collapse {
        display: none;
        /* Cacher par défaut */
    }

    .collapse {
        display: block;
        /* Afficher en mode collapse */
    }
}