/* ══════════════════════════════════════
   Footer
   ══════════════════════════════════════ */

footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 3rem 2rem;
    text-align: center;
}
footer .footer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}
footer p { font-size: 0.85rem; }
footer .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
footer .social-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
footer .social-links a:hover { color: var(--accent); }
