/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .nav-links {
        gap: 20px;
    }

    .logo img {
        height: 40px;
    }

    /* Blog Layout */
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }

    /* Store Layout */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    /* Header */
    .nav {
        height: 70px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 80px 30px 30px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        z-index: 90;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .mobile-menu {
        display: flex;
    }

    .logo .desktop-logo {
        display: none;
    }

    .logo .mobile-logo {
        display: block;
        height: 35px;
    }

    /* Hero Sections */
    .hero,
    .about-hero,
    .blog-hero,
    .store-hero,
    .contact-hero {
        padding: 100px 0 60px;
    }

    .hero h1,
    .about-hero h1,
    .blog-hero h1,
    .store-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    /* Mission Section */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Blog Layout */
    .featured-post .post-image {
        height: 250px;
    }

    .featured-post h2 {
        font-size: 1.5rem;
    }

    .post-meta {
        flex-wrap: wrap;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Store Layout */
    .product-grid {
        grid-template-columns: 1fr;
    }

    .store-categories {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        margin: 0 -15px;
        padding: 0 15px 10px;
    }

    .category-btn {
        flex: 0 0 auto;
    }

    /* Contact Layout */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    /* Header */
    .nav {
        height: 60px;
    }

    .logo .mobile-logo {
        height: 30px;
    }

    .nav-links {
        padding: 70px 20px 20px;
    }

    /* Hero Sections */
    .hero h1,
    .about-hero h1,
    .blog-hero h1,
    .store-hero h1,
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .hero .subtitle,
    .about-hero .subtitle,
    .blog-hero .subtitle,
    .store-hero .subtitle,
    .contact-hero .subtitle {
        font-size: 1rem;
    }

    /* Mission Section */
    .mission-stats {
        grid-template-columns: 1fr;
    }

    .mission-text h2 {
        font-size: 1.75rem;
    }

    /* Team Section */
    .member-image {
        height: 250px;
    }

    /* Blog Layout */
    .featured-post .post-image {
        height: 200px;
    }

    .featured-post .post-content,
    .blog-card .post-content {
        padding: 20px;
    }

    .post-meta {
        font-size: 0.85rem;
    }

    /* Store Layout */
    .product-card {
        margin: 0;
    }

    .product-image {
        height: 180px;
    }

    /* Contact Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on mobile */
        padding: 10px;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 1.1rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}