/* ========================================
   FOOTER STYLES - Pre Free Fantasy
   ======================================== */

/* Footer Container */
.site-footer {
    background: var(--white);
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 2px solid var(--light-gray);
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-blue);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-section p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 11px;
}

.footer-section p i {
    color: var(--primary-blue);
    margin-right: 8px;
    width: 20px;
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

/* Footer Bottom - Disclaimers */
.footer-bottom {
    background: var(--primary-blue);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    color: var(--white);
    font-size: 13px;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom p {
        font-size: 11px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 10px;
        line-height: 1.8;
    }
}
