/* Footer Styles */
footer {
    background: var(--surface);
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--primary-cyan);
}

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

.footer-section h3 {
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    font-family: 'Phonk Contrast', sans-serif;
    letter-spacing: 2px;
}

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

.footer-social-link {
    color: var(--text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: var(--primary-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
} 