/* Footer Styles */
.footer {
    background: #202020;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 2rem;
    margin-right: 0.5rem;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: #E6E6E6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-link.youtube {
    background: #ff0000;
}

.footer-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-link.facebook {
    background: #1877f2;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #48D6FF;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E6E6E6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #48D6FF;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 2rem;
    text-align: center;
    color: #A3A3A3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: flex-start;
    }

    .footer {
        padding-bottom: 5.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 5.5rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
}
