        /* HEADER */
/* Paramètre et background du header */
header {
    width: 100%;
    height: 70px;
    /* margin-bottom: 4rem; */
    /* background: linear-gradient(180deg, #4D4ACC 0%, #817EFF 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.3)); */
}


    /* Navbar */

.headerTitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.7s ease;
}
.headerTitle span {
    font-weight: 700;
}

.headerTitle:hover {
    color: rgb(153, 153, 153);
}




/* Container des liens de la navbar */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    padding-left: 0;
}

/* Liens de la navbar */
.nav-link {
    transition: color 0.7s ease;
    color: rgb(0, 0, 0);
    font-weight: 500;
}

/* Survol des liens de la navbar */
.nav-link:hover {
    color: rgb(153, 153, 153);
}

.nav-link:active {
    color: rgb(202, 28, 28);
}

/* Container des barres du bouton */
.burger {
    display: none;
    cursor: pointer;
}

/* Barre du bouton menu burger */
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgb(0, 0, 0);
}

.adminLink {
    background-color: #4169e1;
    color: #ffffff!important;
}





        /* FOOTER */

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}



footer div nav {
    margin-bottom: -.5rem;
    margin-top: -.5rem;

    margin-left: -1.25rem;
    margin-right: -1.25rem;

    /* margin: -.5rem -1.25rem; */
}

.socialLink {
    opacity: 1;
    color: rgb(156 163 175/1);
}
.socialLink:hover {
    opacity: 1;
    color: rgb(107 114 128/1);
}

.sr-only {
    clip: rect(0,0,0,0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.socialLink svg {
    width: 1rem;
    height: 1rem;
}




@media screen and (min-width: 576px) {
    .nav-menu {
        top: 74px;
    }
    
    header {
        height: 74px;
    }
}

/* Responsivité du menu burger */
@media screen and (max-width: 768px) {
    /* Affichage du bouton */
    .burger {
        display: block;
    }

    /* Animation du bouton au clique */
    .burger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .burger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Affichage du menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        /* background-color: rgba(202, 202, 202, 0.97); */
        /* width: 100%; */
        text-align: center;
        transition: 0.3s;
        
        z-index: 9999;
        margin-left: 10%;
        background-color: rgb(255, 255, 255);
        width: 80%;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;    }

    /* Espacement des liens quand le menu est ouvert */
    .nav-item {
        margin: 10px 0;
    }

    /* Emplacement du menu (ouvert) */
    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 996px) {
    header {
        height: 86px;
    }
}

@media screen and (min-width: 1200px) {
    header {
        height: 90px;
    }
}