/* footer.css */

/* Custom Font Integration */
@font-face {
    font-family: 'Nunito Sans';
    src: url('fonts/Geist-Regular.woff2') format('woff2');
    font-weight: normal;
}
@font-face {
    font-family: 'Gabarito';
    src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: normal;
}

:root {
    --primary-blue: #0062ff;
    --black: #000000;
    --deep-gray: #111111;
    --text-muted: #666666;
    --border-color: #f0f0f0;
    --white: #ffffff;
}

.site-footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    
    font-family: 'Nunito Sans', sans-serif;
    color: var(--deep-gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Assets */
.footer-logo {
    font-family: 'Gabarito', sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-blue);
}

.brand-tagline {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 340px;
}

/* Typography Hierarchy */
.column-title {
    font-family: 'Gabarito', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Dynamic Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 15px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(6px);
    color: var(--primary-blue);
}

.feature-icon {
    color: var(--primary-blue);
    margin-right: 12px;
    font-size: 11px;
}

/* Navigation & Contact */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.contact-item small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Bottom Utility Bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 13px;
}

.bottom-nav a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bottom-nav a:hover {
    color: var(--primary-blue);
}

/* Responsive Handling */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .brand-tagline {
        max-width: 100%;
    }
    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}