/*-----------------------------------
Styles du bas de page
------------------------------------*/
footer{
    border-top: 1px solid var(--border-color);
    color: #000;
    font-size: 12px;
}
footer .footer-top {
    padding: 40px;
}
footer .footer-top .footer-contact {
    max-width: 560px;
    margin-bottom: 40px;
}
footer .footer-top .footer-contact h2{
    font-size: 24px;
}
footer .footer-top .footer-contact p{
    font-size: 14px;
    color: var(--text-color);
    margin-left: 2px;
}
footer .footer-top .footer-bouton{
    margin: 40px 0;
}
footer .footer-top nav {
    margin-left: 0;
    margin-top: 15px;
}

footer .footer-top nav li + li {
    padding-top: 10px;
}
footer .footer-top nav a,
footer .footer-bottom a {
    display: block;
    font-family: var(--font-family1);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #000;
    text-decoration: none;
}
footer .footer-bottom a{
    display: inline;
}
footer .footer-top nav a:hover,
footer .footer-bottom a:hover {
    color: var(--primary-color);
}

footer .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 40px 40px;
    text-transform: uppercase;
    text-align: center;
    font-size: 10px;
    font-family: var(--font-family1);
}
footer .footer-bottom .footer-info div + div {
    margin-left: 0;
    margin-top: 20px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .footer-social a{
    font-size: 18px;
    padding: 16px 16px 16px 0;
}
/* Footer Logo */
footer a.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 20px;
}

footer .footer-logo__img {
    display: flex;
    align-items: center;
}

footer .footer-logo__icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 20px;
    margin-left: 8px;
    color: #000;
}

footer .footer-logo:hover .footer-logo__icon {
    transform: translateX(8px);
    /*color: #555;  Optionnel : changement de couleur au survol */
}

/* Responsive - Utilisation des breakpoints Bootstrap */
/* Medium md (≥768px)*/
@media (min-width: 768px){
    footer .footer-top {
        padding: 80px;
    }
    footer .footer-top .footer-contact {
        margin-top: 12px;
    }
    footer .footer-top nav {
        margin-left: 20px;
    }
    footer a.footer-logo {
    margin-bottom: 0;
    }
footer .footer-bottom {
    padding: 40px 80px;
    }

}

 /*Large lg (≥992px)*/
@media (min-width: 992px){
    footer .footer-top nav + nav {
        margin-left: 200px;
    }
}


/* Extra large xl (≥1200px)*/
@media (min-width: 1200px)  {
    footer .footer-top nav + nav {
        margin-left: 300px;
    }
}
/* Extra extra large xxl (≥1400px) */
@media (min-width: 1400px) {
}




