/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #999;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.social-links a {
    color: #999;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    color: #999;
}

.footer-band {
    background: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 1rem 0;
    margin-top: 4rem;
}

.footer-band p {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-band a {
    color: var(--light-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-band a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-band p {
        font-size: 1rem;
    }
}