/* Transition douce */
.nav-link {
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

/* Survol */
.nav-link:hover {
    color: #ffac0e !important; /* couleur accent */
}

/* Lien actif */
.nav-link.active {
    color: #ffac0e !important;
    font-weight: bold;
}