/*-----------------------------------*\
  #RESPONSIVE STYLES
\*-----------------------------------*/

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop (992px to 1199px) */
@media screen and (max-width: 1199px) {
    html {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* Tablet (768px to 991px) */
@media screen and (max-width: 991px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image {
        order: -1;
    }

    .image-card {
        height: 350px;
    }

    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-map {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .footer-logo {
        grid-column: span 2;
        margin-bottom: var(--spacing-md);
    }
}

/* Mobile (576px to 767px) */
@media screen and (max-width: 767px) {
    html {
        font-size: 13px;
    }

    #header .container {
        height: 70px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: var(--spacing-sm);
        border-bottom: 1px solid var(--color-light-gray);
    }

    .hero {
        height: 90vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .menu-tabs {
        gap: var(--spacing-xs);
    }

    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        grid-column: 1;
    }
}

/* Small Mobile (up to 575px) */
@media screen and (max-width: 575px) {
    html {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
