/**
 * Footer - Le Ballon Publicitaire
 *
 * Deux zones :
 * 1. Footer principal (coordonnées + liens légaux)
 * 2. Bottom bar (copyright)
 *
 * @version 0.6.0
 */


/* ============================================
   1. FOOTER PRINCIPAL
   ============================================ */

.site-footer {
    background: #ececec;
    color: #2c2c2c;
    padding: var(--space-6) 0 var(--space-5);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}


/* Coordonnées */
.footer-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-5);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: #333;
    font-size: var(--fs-base);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--color-primary);
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    flex-shrink: 0;
}


/* Liens légaux en ligne */
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3) var(--space-5);
}

.footer-legal a {
    color: #333;
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}


/* ============================================
   2. BOTTOM BAR (copyright)
   ============================================ */

.footer-bottom {
    background: #6b6b6b;
    color: #e8e8e8;
    padding: var(--space-3) 0;
    font-size: var(--fs-sm);
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    color: #e8e8e8;
}


/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {

    .site-footer {
        padding: var(--space-5) 0 var(--space-4);
    }

    .footer-contact {
        flex-direction: column;
        gap: var(--space-2);
    }

    .footer-legal {
        gap: var(--space-2) var(--space-4);
        font-size: var(--fs-xs);
    }
}