/* ============================================
   FOOTER
   ============================================ */

.footer-background {
    background: var(--footer-background);
    padding: clamp(15px, 3vw, 30px) 0;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    max-width: clamp(120px, 14vw, 200px);
    height: auto;
}

.footer-address,
.footer-address p,
.footer-address a,
.footer-contact a,
.footer-contact span {
    color: var(--white);
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: clamp(1.4, 1.5vw, 1.6);
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-address a:hover,
.footer-contact a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.footer-address i,
.footer-contact i {
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    color: var(--primary);
    margin-right: clamp(6px, 0.8vw, 8px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link svg path,
.footer-social-link img {
    transition: all 0.3s ease;
}

.footer-social-link:hover svg path {
    fill: var(--primary-hover);
}

.footer-social-link:hover img {
    opacity: 0.8;
}

.footer-social-link i,
.footer-social-icon {
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: var(--primary);
    transition: color 0.3s, transform 0.3s;
}

.footer-social-link:hover i,
.footer-social-link:hover .footer-social-icon {
    color: var(--primary-hover);
    transform: translateY(-3px);
}