/* Responsive Styles */

/* Large Screens (up to 1200px) */
@media screen and (max-width: 1200px) {
    .product-grid,
    .categories,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Medium Screens (up to 992px) */
@media screen and (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .product-grid,
    .categories,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
    }
    
    /* Video background responsive adjustments */
    #hero-video {
        width: 100%;
        height: 100%;
    }
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brand-story {
        flex-direction: column;
    }
    
    .story-image,
    .story-content {
        width: 100%;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Screens (up to 768px) */
@media screen and (max-width: 768px) {
    .hero h1,
    .page-title h1 {
        font-size: 36px;
    }
    
    .hero p,
    .page-title p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .instagram-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding: 20px 10px;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
}

/* Extra Small Screens (up to 576px) */
@media screen and (max-width: 576px) {
    .main-nav {
        padding: 15px 4%;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .product-grid,
    .categories,
    .footer-content,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .about-content {
        padding: 60px 6%;
    }
    
    .page-title {
        padding: 40px 5%;
    }
    
    .brand-story,
    .our-values,
    .our-process,
    .our-team,
    .contact-us {
        padding: 40px 5%;
    }
    
    .contact-form form {
        padding: 20px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .category-card {
        height: 300px;
    }
}