
/* Style de la barre de navigation transparente */
.navbar.navbar-transparent {
    background-color: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none !important;
    transition: all 0.3s ease-in-out;
}

/* Style du texte et des liens dans la barre de navigation transparente */
.navbar.navbar-transparent .navbar-brand,
.navbar.navbar-transparent .nav-link,
.navbar.navbar-transparent .navbar-toggler {
    color: white !important;
}

/* Style du bouton dans la barre de navigation transparente */
.navbar.navbar-transparent .btn-orange {
    background-color: transparent !important;
    border: 1px solid white !important;
    color: white !important;
}

/* Transition pour la barre de navigation */
.navbar.navbar-transition {
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* Style du logo dans la barre de navigation transparente */
.navbar.navbar-transparent .navbar-brand img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease-in-out;
}
