/* Media Queries for Rust Industrial Theme */

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

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

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

    .section.head::before {
        font-size: 8rem;
        right: 2%;
    }

    .section.head h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .section {
        padding: 3rem 0;
    }

    .section header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

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

    .site-nav li {
        border: none;
    }

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

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

    .footer-links ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

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

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

    .site-logo a {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
}
