/* Site Footer - Mobile Responsive, Matches Site Theme */
.site-footer {
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(180deg, #5B21B6 0%, #4C1D95 50%, #3B0764 100%);
    color: #E9D5FF;
    margin-top: auto;
}

.footer-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 20px 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px 20px;
    margin-bottom: 16px;
}

.footer-brand {
    max-width: 220px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
}

.footer-logo:hover {
    color: #C4B5FD;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 20px;
}

.footer-bottom-bar .footer-copyright,
.footer-bottom-bar .alt-landing-footer-copyright {
    margin: 0;
}

@media (min-width: 769px) {
    .footer-bottom-bar {
        justify-content: space-between;
    }

    .footer-bottom-bar .footer-copyright,
    .footer-bottom-bar .alt-landing-footer-copyright {
        text-align: left;
    }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-icon {
    flex-shrink: 0;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

/* Legal/About page content styling */
.legal-page .page-title,
.about-page .page-title {
    font-size: 2rem;
    font-weight: 700;
}

.legal-content h2,
.about-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.legal-content p,
.about-content p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul,
.about-content ul {
    margin-bottom: 16px;
    padding-left: 1.5rem;
}

.legal-content li,
.about-content li {
    margin-bottom: 8px;
}

.legal-content a,
.about-content a {
    color: #6B46C1;
    text-decoration: none;
}

.legal-content a:hover,
.about-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 16px 16px 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        display: inline-block;
        text-align: left;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom-bar .footer-copyright,
    .footer-bottom-bar .alt-landing-footer-copyright {
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 14px 12px 10px;
    }

    .footer-grid {
        gap: 12px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        padding-top: 10px;
    }

    .legal-page .page-title,
    .about-page .page-title {
        font-size: 1.6rem;
    }
}
