/* Footer Styles */

.footer-link {
    color: var(--color-text);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--footer-primary);
}

.footer-heading {
    color: var(--color-text);
    display: inline-block;
    padding-bottom: 0.5rem;
    min-height: 2.5rem;
    line-height: 1.75rem;
}

.social-link {
    color: var(--color-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--footer-primary);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.1);
}

.ld-link {
    color: var(--color-primary);
    font-weight: 600;
}

.ld-link:hover {
    color: var(--footer-primary);
}

/* Réseaux sociaux */
.footer-socials {
    /* Pas de margin-top car c'est dans la grille */
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 204, 204, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-socials {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .footer-socials {
        text-align: center;
    }

    .footer-socials .flex {
        justify-content: center;
    }
}
