/**
 * ==========================================================================
 * Filename: footer.css
 * Folder: /site/css/
 * Version: 1.0.0
 * Author: Mr Jim
 * Website: weflipify.com
 * Description: Site footer styles
 * Copyright: Vianke Ltd 2025
 * Created: 2026-01-05
 * ==========================================================================
 */

/* ========================================
   Site Footer
   ======================================== */
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

/* ========================================
   Footer Grid Layout
   ======================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ========================================
   Footer Brand Section
   ======================================== */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ========================================
   Footer Social Links
   ======================================== */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    color: var(--gray-400);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ========================================
   Footer Links Columns
   ======================================== */
.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* ========================================
   Footer Bottom
   ======================================== */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ========================================
   Responsive Footer
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        max-width: none;
    }
}
