/* responsive.css - Mobile-first responsive design for LUNAYA */

/* Mobile devices (portrait and landscape) */
@media (max-width: 767px) {
    /* General adjustments */
    body {
        font-size: 0.9em;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    /* Header */
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
        font-size: 2em;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .nav-menu ul li {
        margin-left: 0;
    }

    .nav-icons {
        gap: 15px;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .btn {
        padding: 0.8em 2em;
        font-size: 0.9em;
    }

    /* Product Grid / Category Mosaic */
    .product-grid, .category-mosaic {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .product-card img, .category-card img {
        height: 250px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Instagram Grid */
    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .instagram-grid img {
        height: 100px;
    }

    /* Newsletter Popup */
    .newsletter-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        margin-top: 20px;
    }
}

/* Tablet devices (portrait and landscape) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* General adjustments */
    body {
        font-size: 0.95em;
    }

    .container {
        padding: 0 25px;
    }

    section {
        padding: 70px 0;
    }

    /* Header */
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .nav-menu ul {
        justify-content: center;
        flex-grow: 1;
    }

    .nav-icons {
        width: 100%;
        justify-content: center;
    }

    /* Hero Section */
    .hero {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }

    .hero-content p {
        font-size: 1.3em;
    }

    /* Product Grid / Category Mosaic */
    .product-grid, .category-mosaic {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product-card img, .category-card img {
        height: 300px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Instagram Grid */
    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .instagram-grid img {
        height: 120px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop devices */
@media (min-width: 1025px) {
    /* No specific adjustments needed as base styles are for desktop */
}