/* ===========================
   Footer
   =========================== */

.site-footer {
    background-color: var(--color-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 50px 0 30px;
    margin-top: var(--spacing-xl);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-nav li a {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.footer-nav li a:hover {
    color: var(--color-text-primary);
    text-decoration: underline;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-text-primary);
    background-color: rgba(0, 0, 0, 0.04);
    opacity: 1;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Copyright */
.footer-copyright {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-align: center;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 24px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
