/**
 * Landing Footer Styles
 * Shared footer styles for pages using footer-landing.php
 */

.landing-footer {
    --footer-bg: #1E1B4B;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-text: #FFFFFF;
    --footer-text-secondary: #A5B4FC;
    --footer-text-muted: rgba(255, 255, 255, 0.6);
    --footer-surface: rgba(255, 255, 255, 0.05);
    --footer-surface-hover: rgba(255, 255, 255, 0.08);
    --footer-border-hover: rgba(255, 255, 255, 0.2);

    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 6rem 0 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.landing-footer .landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 6rem;
    margin-bottom: 6rem;
}

.landing-footer .footer-brand {
    max-width: 280px;
}

.landing-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--footer-text);
}

.landing-footer .footer-logo img {
    height: 40px;
}

.landing-footer .footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.landing-footer .footer-brand p {
    font-size: 1rem;
    color: var(--footer-text-muted);
    line-height: 1.7;
    margin: 0;
}

.landing-footer .footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--footer-text-secondary);
}

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

.landing-footer .footer-column li {
    margin-bottom: 1rem;
}

.landing-footer .footer-column a {
    font-size: 1rem;
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 150ms ease;
}

.landing-footer .footer-column a:hover {
    color: var(--footer-text);
}

.landing-footer .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.landing-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--footer-surface);
    border: 1px solid var(--footer-border);
    border-radius: 12px;
    color: var(--footer-text-muted);
    transition: all 150ms ease;
}

.landing-footer .footer-social a:hover {
    background: var(--footer-surface-hover);
    color: var(--footer-text);
    border-color: var(--footer-border-hover);
}

.landing-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--footer-border);
}

.landing-footer .footer-copyright,
.landing-footer .footer-made-with {
    font-size: 1rem;
    color: var(--footer-text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .landing-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .landing-footer .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }

    .landing-footer .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .landing-footer {
        padding: 4rem 0 2rem;
    }

    .landing-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .landing-footer .footer-column {
        text-align: center;
    }

    .landing-footer .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
