/**
 * The Butchers Kitchen - Responsive Styles
 * Mobile-first approach
 */

/* Mobile Styles (Base - already in style.css) */

/* Tablet Styles */
@media (min-width: 768px) {

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 2rem;
    }

    section {
        padding: 5rem 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .container {
        padding: 0 3rem;
    }

    section {
        padding: 6rem 0;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 112px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 112px);
        background-color: var(--color-secondary);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu a.active {
        font-weight: 700;
    }

    /* Hero adjustments */
    .hero-section {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Products grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Category filter */
    .category-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    /* Contact page */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* About page images */
    .about-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .quality-image {
        order: 1;
    }

    .quality-text {
        order: 2;
    }

    /* Section padding */
    section {
        padding: 3rem 0;
    }

    /* Product gallery mobile adjustments */
    .gallery-controls {
        bottom: 0.5rem;
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .gallery-btn svg {
        width: 18px;
        height: 18px;
    }

    .gallery-indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-indicator.active {
        width: 10px;
        height: 10px;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        gap: 2rem;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print styles */
@media print {
    .main-header,
    .main-footer,
    .mobile-menu-toggle,
    .btn,
    .category-filter {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

