/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 2px;
    user-select: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.nav-links li a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    user-select: none;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f97316;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
    width: 100%;
}

/* Auth buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    border: 2px solid #f97316;
    background: transparent;
    color: #f97316;
    padding: 0.5rem 1.4rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.btn:hover,
.btn:focus {
    background: #f97316;
    color: white;
    outline: none;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger open animation */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sections */
.section {
    padding: 6rem 3rem 3rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-bg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(249, 115, 22, 0.85), rgba(249, 115, 22, 0.75)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1470&q=80') center center/cover fixed no-repeat;
    color: white;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    user-select: none;
    position: relative;
}

.home-content h1 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.home-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #fff;
    color: #f97316;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    font-size: 1.25rem;
    user-select: none;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255 168 24 / 0.75);
}

.cta-button:hover,
.cta-button:focus {
    background: #f97316;
    color: white;
    box-shadow: 0 0 25px rgba(255 168 24 / 1);
    outline: none;
}

/* Dishes Gallery */
.dishes-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1100px;
    user-select: none;
}

.dish-card {
    position: relative;
    border-radius: 20px;
    height: 220px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.dish-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.8);
}

.dish-info {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.2rem 1.5rem;
    border-radius: 0 0 20px 20px;
    width: 100%;
    font-weight: 600;
    font-size: 1.3rem;
}

/* White background sections (About, Services, Contact) */
.white-bg {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 4rem 3rem;
    color: #444;
    user-select: none;
}

.white-bg h2 {
    color: #f97316;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1.3px;
}

.white-bg p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-weight: 500;
}

.white-bg ul {
    max-width: 600px;
    margin: 0 auto;
    list-style: disc inside;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

.white-bg li {
    margin-bottom: 0.8rem;
}

/* Offers Section */
.offers-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1470&q=80') center center/cover fixed no-repeat;
    color: white;
    padding-top: 5rem;
    padding-bottom: 6rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-top: 2rem;
    user-select: none;
}

.offers-bg h2 {
    font-size: 3rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.offer-tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: #ffd580cc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.offer-banner {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    color: white;
    user-select: none;
}

.offer-banner:hover {
    transform: scale(1.07) translateY(-10px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.7);
}

.offer-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.offer-banner:hover img {
    filter: brightness(1);
}

.offer-text {
    padding: 1.5rem 1.5rem 2rem;
}

.offer-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: #fbbf24;
    font-weight: 700;
}

.offer-text p {
    font-size: 1.05rem;
    line-height: 1.3;
}

/* Contact Section */
#contact p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.5rem;
    user-select: text;
}

iframe {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 350px;
    border: none;
    border-radius: 15px;
    margin: 2rem auto 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    user-select: none;
}

/* Footer */
footer {
    background: #f97316;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
    user-select: none;
    margin-top: 4rem;
    border-radius: 0 0 10px 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        background: white;
        height: calc(100vh - 70px);
        width: 220px;
        flex-direction: column;
        padding-top: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .auth-buttons {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    main {
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    .dishes-gallery {
        grid-template-columns: 1fr !important;
    }

    .dish-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    #home h1 {
        font-size: 2rem;
    }

    #home p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
    }

    .offer-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 350px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.65rem;
    }
}