/* responsive.css - Media queries for responsive design */

/* Tablet Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .collection-grid, .artwork-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-item img {
        height: 350px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .collection-grid, .artwork-grid {
        grid-template-columns: 1fr;
    }
    
    .size-options, .emotion-options {
        flex-direction: column;
    }
    
    .size-option, .emotion-option {
        width: 100%;
        text-align: center;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .philosophy-content blockquote {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}
