
    /* Suppression du soulignement par défaut et ajout de l'effet barre */
.footer-link {
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

/* La barre orange masquée par défaut */
.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color); /* Couleur orange */
    transition: width 0.3s ease;
}

/* Apparition au survol */
.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: var(--secondary-color) !important;
}

