/* ========================================
   RESPONSIVE DESIGN - vboero.com WP theme
   ======================================== */

/* Tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .header-container {
        flex-direction: column;
        padding: 1rem;
    }

    .site-navigation {
        margin: 1rem 0;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .services-grid,
    .products-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .site-header {
        padding: 1rem 0.5rem;
    }

    .site-navigation {
        display: none;
    }

    .site-navigation.active {
        display: block;
    }

    .header-cta {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-menu {
        margin-top: 2rem;
    }

    .services-grid,
    .products-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .site-navigation {
        display: flex !important;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    a {
        padding: 0.5rem;
    }

    .btn {
        padding: 1rem 1.5rem;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .header-cta {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }
}
