body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    margin: 0;
    background: #f7f9f7;
    color: #222;
}

/* NAV */
header {
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    background: white;
    border-bottom: 1px solid #eee;
}

header img {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
}

/* SECTION LAYOUT */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    gap: 40px;
}

/* ALTERNATE LAYOUT */
.section:nth-child(even) {
    flex-direction: row-reverse;
}

/* IMAGE */
.section img {
    width: 45%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

/* CONTENT */
.content {
    width: 50%;
}

h2 {
    margin-bottom: 10px;
}

/* BUTTON */
.btn {
    background: #2e7d32;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

/* VIDEO */
.video-box video {
    width: 48%;
    border-radius: 10px;
}

/* FORM */
form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #2e7d32;
    color: white;
}

/* Menu */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 6px;
    color: #444;
}

h4 {
    margin-top: 15px;
    color: #2e7d32;
}

/* MENU TABS */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.menu-tabs button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #e8f5e9;
    color: #2e7d32;
    cursor: pointer;
    font-weight: 600;
}

.menu-tabs button.active {
    background: #2e7d32;
    color: white;
}

/* TAB CONTENT */
.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}

/* DISH GRID */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* DISH CARD */
.dish-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.dish-card:hover {
    transform: translateY(-8px);
}

/* IMAGE SMALL */
.dish-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

/* TITLE */
.dish-card h4 {
    margin-top: 10px;
    color: #1b5e20;
}

/* mobile compatibility */
@media(max-width: 768px) {
    .section {
        flex-direction: column;
        padding: 20px;
    }

    .section img,
    .content {
        width: 100%;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }
}