﻿/* header-active.css - Style pour le lien de navigation actif */

.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

    .nav-links a.active::after {
        width: 100% !important;
    }

/* Animation du burger menu actif */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
