/* styles/footerStyle.css - BRUTALIST */

footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 50px 40px;
    margin-top: auto; /* Pousse le footer tout en bas même si la page est vide */
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- PARTIE GAUCHE --- */
.footer-identity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-brand {
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
}

.footer-copyright {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    color: #666; /* Gris discret pour le texte légal */
}

/* --- PARTIE DROITE (ICONES) --- */
.footer-socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.footer-socials li {
    display: flex;
    align-items: center;
}

.footer-socials a {
    display: block;
    transition: opacity 0.3s ease;
    border: none; /* Pas de soulignement sur les icônes */
}

.footer-socials a:hover {
    opacity: 0.6;
}

.footer-socials img {
    height: 20px; /* Taille discrète et élégante */
    width: auto;
    display: block;
    
    /* LE SECRET : Rend n'importe quelle image blanche sur fond noir */
    filter: brightness(0) invert(1);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-identity {
        align-items: center;
    }
}