/* Media Queries for Chalkboard School Theme */

@media (max-width: 1200px) {
    .footer-columns {
        flex-wrap: wrap;
    }
}

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

    .section.head {
        padding: 3rem 1.5rem;
        margin: 1rem;
        box-shadow: 
            inset 0 0 30px rgba(0,0,0,0.3),
            0 0 0 10px var(--wood-brown),
            0 0 0 12px var(--wood-dark),
            0 8px 20px rgba(0,0,0,0.4);
    }

    .section.head h1 {
        font-size: 2.5rem;
    }

    .section.head h1::after {
        width: 150px;
    }

    .section.head p::before,
    .section.head p::after {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .section header h2::before {
        display: none;
    }

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

    .site-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-nav a {
        font-size: 1.1rem;
        padding: 0.3rem 0.6rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .footer-links ul {
        justify-content: center;
    }
}

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

    .section.head::before {
        font-size: 0.85rem;
    }

    .site-logo a::before {
        display: none;
    }

    .section.head {
        margin: 0.5rem;
        box-shadow: 
            inset 0 0 20px rgba(0,0,0,0.3),
            0 0 0 6px var(--wood-brown),
            0 0 0 8px var(--wood-dark),
            0 5px 15px rgba(0,0,0,0.4);
    }
}
