/* Supprime tous les effets par défaut */
.custom-navbar-nav .nav-link {
    color: #fff !important;              /* texte toujours blanc */
    border-bottom: none !important;      /* pas de trait par défaut */
    box-shadow: none !important;         /* empêche le trait fin */
    transition: all 0.3s ease;           /* animation douce */
}

/* Survol */
.custom-navbar-nav .nav-link:hover {
    color: #fff !important;              /* texte reste blanc */
    border-bottom: 4px solid #FFD700;    /* trait jaune épais */
}

/* Actif (page courante) */
.custom-navbar-nav .nav-link.active {
    color: #fff !important;              /* texte blanc */
    border-bottom: 4px solid #FFD700;    /* même trait jaune épais */
}
