@media (min-width: 992px) {
    .navbar {
        height: 100px;
    }
}

.navbar a {
    text-transform: uppercase;
}

.navbar-nav .nav-item {
    margin-left: 15px;
    margin-bottom: 2px;
}

.navbar-toggler {
    margin-top: auto;
    margin-bottom: auto;
}

.navbar-nav .anim-link {
    position: relative;
}

.navbar-nav .active {
    font-weight: bold;
}


.navbar-nav .anim-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 0;
    height: 3px;
    background-color: #68A4C4 !important;;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .anim-link.active::after,
.navbar-nav .anim-link:hover::after {
    width: 50%;
}


/* Affiche le menu au survol */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    background-color: #68A4C4 !important;
}

/* Style des liens actifs dans le dropdown */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:hover {
    background-color: #68A4C4 !important;
    color: white !important;
}


@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white; /* Noir avec légère transparence */
        padding: 20px;
        border-radius: 5px;
        margin-top: 20px;
    }

    .navbar-nav, .nav-bouton {
        text-align: center;
    }

    .navbar-nav .anim-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 3px;
        background-color: #68A4C4 !important;;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    .navbar-nav .anim-link.active::after,
    .navbar-nav .anim-link:hover::after {
        width: 20%;
    }
    .hidden {
        display: none;
    }
}