/* ====================
   FOOTER
   Site footer with links and credits
   ==================== */

.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

/* Footer Sponsors Strip - Full Width */
.footer-sponsors-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0;
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
}

.footer-sponsors-strip .sponsors-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    white-space: nowrap;
}

.footer-sponsors-strip .sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.footer-sponsors-strip .sponsors-logos img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-sponsors-strip .sponsors-logos img:hover {
    transform: scale(1.05);
}

/* Responsive: Stack on mobile */
@media (max-width: 640px) {
    .footer-sponsors-strip {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-sponsors-strip .sponsors-logos {
        gap: var(--spacing-xl);
    }

    .footer-sponsors-strip .sponsors-logos img {
        height: 40px;
    }
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links li {
    color: var(--gray-400);
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: var(--spacing-xs) 0;
}

.footer-legal-links {
    font-size: 0.75rem;
    margin-top: var(--spacing-sm) !important;
}

.footer-legal-links a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--primary-500);
}

/* Footer Credit - Standard Discreet Style */
/* Placed after main footer closing tag */
.footer-credit {
    padding: 0.5rem 0;
    text-align: center;
    background-color: var(--gray-900);
}

.footer-credit p {
    margin: 0;
    font-size: 0.8125rem; /* 13px - discreet but readable */
    font-weight: 300;
    color: var(--gray-400);
}

.footer-credit a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--primary-500);
}
