/* Media Queries - Scandinavian Light Theme */

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .section.head h1 {
        font-size: 3.5rem;
    }
}

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

    .site-header {
        padding: 1.5rem 0;
    }

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

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

    .section {
        padding: 4rem 0;
    }

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

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

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

    .footer-links ul {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

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

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

    .site-nav ul {
        gap: 1rem;
    }

    .site-nav a {
        font-size: 0.85rem;
    }
}
