/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-categories {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 51px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: all 0.5s ease;
        padding: 30px;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .philosophy-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        flex-direction: column;
    }
    
    .contact-cta h2 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .logo span {
        font-size: 18px;
    }
    
    .header {
        padding: 10px 0;
    }
}
