/* ═══════════════════════════════════════════
   footer.css — Page footer
   ═══════════════════════════════════════════ */

.footer {
    background-color: var(--bg-elevated);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ── Footer nav ── */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text);
    font-weight: 500;
    transition: color var(--ease);
}

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

/* ── Footer social row ── */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Copyright ── */
.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}