/* 
 * Responsive CSS Styles 
 * This file contains media queries and responsive adjustments
 */

/* Medium Screens (Tablets) */
@media screen and (max-width: 992px) {
    :root {
        --container-width: 95%;
    }

    /* Hero slider adjustments */
    .hero-slider {
        height: 400px;
    }
    
    .hero-slider .slide-caption {
        max-width: 90%;
    }
    
    .hero-slider .slide-caption h2 {
        font-size: 2rem;
    }

    /* Product detail page */
    .product-layout {
        gap: 20px;
    }
}

/* Small Screens (Mobile) */
@media screen and (max-width: 768px) {
    /* Header adjustments */
    header nav {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
    }
    
    header .logo {
        margin-bottom: 10px;
    }
    
    header .nav-links {
        margin: 10px 0;
    }

    body {
        padding-top: calc(var(--header-height) * 2); /* Adjust for taller header */
    }

    /* Hero slider */
    .hero-slider {
        height: 350px;
    }
    
    .hero-slider .slide-caption {
        padding: 15px 25px;
    }
    
    .hero-slider .slide-caption h2 {
        font-size: 1.6rem;
    }
    
    .hero-slider .slide-caption p {
        font-size: 1rem;
    }

    /* Featured artworks grid */
    .artwork-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Product detail page */
    .product-layout {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
    }
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }
    
    .hero-slider .slide-caption h2 {
        font-size: 1.4rem;
    }
    
    .language-selector button {
        padding: 3px 8px;
        margin-left: 3px;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr; /* Single column */
    }
} 