/* Shared site footer (templates/_site_footer.html).
 *
 * Carries its own copy of the .social-links styling: the icon partial was
 * only styled inside styles.css and a few page templates, so on any other
 * page the icons rendered as bare links. With the footer now global, the
 * styling has to be too. styles.css keeps its identical copy for the three
 * pages that link it; dedupe alongside the .site-nav dedupe.
 *
 * --text-secondary carries a fallback: most pages do not define it (the
 * known dead-token issue documented in BASE_TEMPLATE_MIGRATION.md).
 */

.site-footer {
    text-align: center;
    padding: 24px 16px 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color, #3a3a3a);
    color: var(--text-secondary, #999);
    font-size: 0.85rem;
}

.site-footer-links {
    margin: 12px 0 0;
}

.site-footer-links a {
    color: var(--accent-teal, #5bc8d7);
    text-decoration: none;
}

.site-footer-links a:hover {
    color: var(--accent-warm, #ff9a76);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 14px 0 6px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-secondary, #999);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s, background 0.2s, transform 0.15s, border-color 0.2s;
    text-decoration: none;
}

.social-link:hover {
    color: var(--accent-teal, #5bc8d7);
    background: rgba(91, 200, 215, 0.12);
    border-color: rgba(91, 200, 215, 0.4);
    transform: translateY(-2px);
}
