/* NQ Tenpin Booking System - Footer Layout */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: auto;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer__brand {
    max-width: 300px;
}

.footer__tagline {
    margin-top: var(--space-4);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer__column {}

.footer__title {
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__list li {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.footer__list a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--primary);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-darkest);
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.footer__legal {
    display: flex;
    gap: var(--space-6);
}

.footer__legal a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer__links {
        grid-template-columns: 1fr;
    }
}
