/* ===== PROFESSIONAL FOOTER STYLES ===== */

/* Ensure Sticky Footer works globally */
body:not(.home) {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}


.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 100;
    text-align: center;
    margin-top: auto !important;
    width: 100% !important;
    flex-shrink: 0 !important;
}

/* Premium Top Glow Effect */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, #ec4899, transparent);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer Links Navigation */
/* Footer Links Navigation */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.footer-links a,
.site-footer .footer-links a,
body .site-footer .footer-content .footer-links a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
    background: transparent !important;
    -webkit-text-fill-color: #ffffff !important;
}

.footer-links a:hover,
.site-footer .footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Copyright Section */
.footer-copyright {
    margin-top: 10px;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: #ffffff;
    /* Pure white as requested */
}

/* Credit Styling */
.footer-credit {
    color: #ffffff;
    font-weight: 400;
}

.footer-separator {
    margin: 0 8px;
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 0;
    }

    .footer-links {
        gap: 15px;
        flex-direction: row;
        /* Changed from column to row to save space */
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* End of Footer CSS */