/* 
  LUXURY RESTAURANT TEMPLATE
  Responsive Stylesheet
  Breakpoints: 
  - 480px (Mobile)
  - 768px (Tablet)
  - 1024px (Laptop)
  - 1440px (Desktop)
*/

@media screen and (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Mobile Navbar */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 1000;
        gap: 40px;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-actions {
        display: none;
    }

    /* Sections */
    .hero h1 {
        font-size: 3rem;
    }

    .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .chef-container {
        flex-direction: column;
        text-align: center;
    }

    .chef-img {
        flex: 0 0 300px;
        width: 300px;
    }

    .chef-quote {
        padding-left: 0;
        margin-top: 50px;
    }

    .chef-quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -40px;
    }

    .menu-content {
        grid-template-columns: 1fr;
    }

    .reservation-form {
        grid-template-columns: 1fr;
    }

    .reservation-form .btn {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }
}
