/* Responsive Design Styles */

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium Screens (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .slide img {
        height: 400px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .subheadline {
        font-size: 1.25rem;
    }

    .slide img {
        height: 350px;
    }

    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

/* Mobile Landscape (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subheadline {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .slide img {
        height: 300px;
    }

    .filter-blocks {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .accessories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subheadline {
        font-size: 1rem;
    }

    .hero-content {
        padding: 3rem;
    }

    .slide img {
        height: 250px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .filter-options {
        justify-content: center;
    }

    .product-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .founder-image {
        max-width: 250px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .map-container {
        height: 250px;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-btn,
    .call-btn {
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Devices (up to 360px) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subheadline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .slide img {
        height: 200px;
    }

    .product-card {
        max-width: 280px;
    }

    .founder-image {
        max-width: 200px;
    }

    .map-container {
        height: 200px;
    }
}

/* Print Styles */
@media print {
    .hero,
    .slider-section,
    .floating-buttons {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .product-card,
    .founder-card,
    .contact-form {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

body {
    font-family: 'Josefin Sans', sans-serif;
} 