/* =========================
   FOOTER
========================= */

footer {
    background-color: #050505;
    color: white;
    border-top: 1px solid rgba(231, 51, 134, 0.25);
}

.site-footer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 0 35px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 35px;
}

/* Logo */
.footer-logo h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
    color: white;
}

.footer-logo h2 span {
    color: #e73386;
}

.footer-logo p {
    margin-top: 6px;
    color: #e73386;
    font-size: 14px;
}

/* Colonnes */
.footer-col h3 {
    margin: 0 0 18px;
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #e73386;
}

/* Réseaux sociaux */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-socials a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: #e73386;
}

/* Bas du footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px 20px;
    color: #98a2b3;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* =========================
   RESPONSIVE TABLETTE
========================= */

@media screen and (max-width: 950px) {
    .site-footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 45px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media screen and (max-width: 600px) {
    .site-footer {
        width: 88%;
        grid-template-columns: 1fr;
        padding: 40px 0 25px;
        gap: 28px;
    }

    .footer-logo h2 {
        font-size: 30px;
    }

    .footer-col h3 {
        margin-bottom: 12px;
    }

    .footer-col li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

/* =========================
   FOOTER
========================= */

footer,
.footer,
.site-footer {
    background-color: #111111 !important;
    color: white !important;
    padding: 55px 8% 25px;
}

footer h2,
footer h3,
footer h4,
.footer h2,
.footer h3,
.footer h4,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
    color: white !important;
}

footer p,
footer a,
footer li,
.footer p,
.footer a,
.footer li,
.site-footer p,
.site-footer a,
.site-footer li {
    color: #d9d9d9 !important;
}

footer a:hover,
.footer a:hover,
.site-footer a:hover {
    color: #d63384 !important;
}

footer .copyright,
.footer .copyright,
.site-footer .copyright {
    color: #b5b5b5 !important;
    text-align: center;
    margin-top: 35px;
}