/**
 * Footer Component Styles
 * Includes: Footer container, columns, social links, footer bottom
 */

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-dark) 100%);
    color: var(--text-very-light);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    margin-top: 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-light), var(--accent-gold));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* ==========================================================================
   FOOTER CONTAINER & COLUMNS
   ========================================================================== */

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-column h5 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    color: var(--text-pale);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-column .footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-column .footer-logo:hover {
    transform: scale(1.05);
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
    transition: padding-left 0.3s ease;
}

.footer-column ul li:hover {
    padding-left: 10px;
}

.footer-column .cta-button {
    margin-top: 1.5rem;
}

/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-very-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 16px;
}

/* ==========================================================================
   FOOTER BOTTOM
   ========================================================================== */

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.footer-bottom a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column ul li:hover {
        padding-left: 0;
    }

    .site-footer {
        padding: 2rem 1rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer-column h5 {
        font-size: 1.1rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}
