/* SportBiz Modern Footer Styles */

/* Footer Base */
.site-footer {
    background: #f5f5f5;
    color: #333333;
    padding: 120px 0 0;
    margin-top: 100px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.02);
}

.footer-container {
    max-width: none;
    width: 100%;
    padding: 0 40px;
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    padding-top: 20px;
    border-bottom: 1px solid #e0e0e0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Brand Column */
.footer-brand .footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand .footer-tagline {
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    max-width: 280px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #E30613;
    border-color: #E30613;
    transform: translateY(-3px);
    color: #fff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Footer Columns */
.footer-column h3 {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

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

.footer-menu li,
.footer-column ul li {
    margin-bottom: 12px;
}

.footer-menu li a,
.footer-column ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover,
.footer-column ul li a:hover {
    color: #E30613;
    transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666666;
    margin-top: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: #ffffff;
    border-radius: 50px;
    padding: 4px;
    border: 1px solid #e0e0e0;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input[type="email"]::placeholder {
    color: #999999;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
}

.newsletter-form button {
    padding: 10px 24px;
    background: #E30613;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #E30613;
    transform: scale(1.02);
}

/* Footer Bottom */
.footer-bottom {
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #999999;
}

.footer-bottom-links,
.footer-bottom-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a,
.footer-bottom-menu a {
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-menu a:hover {
    color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links,
    .footer-bottom-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }
    
    .footer-main {
        padding-bottom: 30px;
    }
    
    .footer-column h3 {
        font-size: 14px;
    }
    
    .footer-social {
        justify-content: center;
    }
}