/* Media Queries - Graffiti Street Theme */

@media (max-width: 1024px) {
    .section.head h1 {
        font-size: 4rem;
    }
    
    .section.head::before {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section.head {
        padding: 4rem 0;
    }

    .section.head h1 {
        font-size: 3rem;
        text-shadow: 
            2px 2px 0 var(--spray-pink),
            4px 4px 0 var(--spray-cyan);
    }

    .section.head::before {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }

    .section header h2 {
        font-size: 2.25rem;
    }

    .site-nav ul {
        gap: 0.25rem;
        flex-wrap: wrap;
    }

    .site-nav a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links ul {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .section.head h1 {
        font-size: 2.5rem;
    }

    .site-logo a {
        font-size: 1.5rem;
    }

    .footer-links a {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
}
