﻿/* ============================================================
   FOOTER.CSS
   ============================================================ */

.footer {
    background: var(--surface-base);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

    .footer-social a {
        width: 44px;
        height: 44px;
        background: var(--surface-sunken);
        border-radius: var(--radius-md);
        display: grid;
        place-items: center;
        color: var(--text-muted);
        font-size: 20px;
        transition: all 0.3s var(--ease-out-expo);
    }

        .footer-social a:hover {
            background: var(--gradient-brand);
            color: white;
            transform: translateY(-4px);
        }

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    list-style: none;
}

    .footer-links a {
        font-size: 15px;
        color: var(--text-muted);
        transition: all 0.3s;
    }

        .footer-links a:hover {
            color: var(--brand-500);
            transform: translateX(4px);
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

    .footer-legal a {
        font-size: 14px;
        color: var(--text-muted);
        transition: color 0.3s;
    }

        .footer-legal a:hover {
            color: var(--brand-500);
        }

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}
