/* GLS Equity Master Stylesheet */

/* Base Structure */
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    background-color: #f8fafc; 
    color: #1e293b; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

/* Centered Navigation */
.top-nav { 
    background-color: #0f172a; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
    display: flex; 
    justify-content: center; 
}
.nav-inner { 
    width: 100%; 
    max-width: 1200px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 20px; 
    box-sizing: border-box; 
}
.brand-container { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    text-decoration: none; 
}
.nav-logo { 
    height: 40px; 
    width: auto; 
    border-radius: 4px; 
}
.nav-brand { 
    font-size: 22px; 
    font-weight: 800; 
    color: #ffffff; 
    letter-spacing: -0.5px; 
}
.nav-links { 
    display: flex; 
    gap: 20px; 
}
.nav-links a { 
    color: #94a3b8; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 15px; 
    transition: color 0.2s; 
}
.nav-links a:hover, .nav-links a.active { 
    color: #10b981; 
}

/* Expanded Footer */
.site-footer { 
    background-color: #ffffff; 
    border-top: 1px solid #e2e8f0; 
    padding: 40px 20px; 
    text-align: center; 
    margin-top: auto; 
}
.footer-links { 
    margin-bottom: 15px; 
}
.footer-links a { 
    color: #64748b; 
    text-decoration: none; 
    margin: 0 10px; 
    font-size: 13px; 
    font-weight: 600; 
}
.footer-links a:hover { 
    color: #10b981; 
}
.site-footer p { 
    max-width: 900px; 
    margin: 0 auto 10px auto; 
    color: #94a3b8; 
    font-size: 11px; 
    line-height: 1.6; 
    text-align: justify; 
}
.copyright { 
    font-size: 13px !important; 
    color: #64748b !important; 
    text-align: center !important; 
    margin-top: 20px !important; 
}

/* Social Media Section */
.social-section { 
    margin-bottom: 30px; 
    padding-bottom: 30px; 
    border-bottom: 1px solid #e2e8f0; 
}
.social-section h4 { 
    color: #0f172a; 
    font-size: 16px; 
    margin: 0 0 10px 0; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}
/* Forced override for footer text styles */
.site-footer .social-section .social-pitch { 
    color: #64748b !important; 
    font-size: 16px !important; 
    text-align: center !important; 
    max-width: 600px !important; 
    margin: 0 auto 20px auto !important; 
    line-height: 1.6 !important; 
}
.social-pitch a { 
    color: #10b981; 
    text-decoration: none; 
    font-weight: 600; 
}
.social-pitch a:hover { 
    text-decoration: underline; 
}
.social-icons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
}
.social-icons a { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    background-color: #f1f5f9; 
    border-radius: 50%; 
    color: #475569; 
    transition: all 0.2s ease; 
}
.social-icons a:hover { 
    background-color: #10b981; 
    color: #ffffff; 
    transform: translateY(-2px); 
}
.social-icons svg { 
    width: 20px; 
    height: 20px; 
    fill: currentColor; 
}

/* Global Mobile Adjustments (Navbar logic across all pages) */
@media (max-width: 768px) {
    .nav-inner { flex-direction: column; gap: 15px; }
}