/* ---------------------------------------------------
   PUNJABI DHABA RUSTIC THEME
--------------------------------------------------- */

/* ---------- Global Styling ---------- */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4e7d3; /* rustic beige */
    color: #3b1f0d;      /* earthy brown */
}

/* ---------- Header ---------- */
header {
    text-align: center;
    padding: 20px 10px;
    background: linear-gradient(180deg, #7b0f08, #4b0a05); /* deep dhaba red */
    color: #ffdc75; /* mustard */
    border-bottom: 6px solid #ffbf3f;
}

header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header h2 {
    margin: 5px 0 0;
    font-weight: 600;
    font-size: 20px;
}

/* ---------------------------------------------------
   STICKY NAVIGATION – RUSTIC BUTTONS
--------------------------------------------------- */

.menu-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #7b0f08; /* Punjabi red */
    padding: 12px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    border-bottom: 4px solid #ffbf3f; /* mustard border */
}

.menu-nav .nav-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-nav a {
    text-decoration: none;
    color: #ffdc75;
    font-weight: 600;
    border: 2px solid #ffdc75;
    border-radius: 6px;
    padding: 6px 10px;
    transition: 0.2s;
    background: rgba(255, 220, 117, 0.1);
}

.menu-nav a:hover {
    background: #ffdc75;
    color: #7b0f08;
}

/* ---------- Responsive Nav ---------- */

@media (max-width: 768px) {
    .menu-nav {
        flex-direction: column;
    }
    .menu-nav .nav-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ---------------------------------------------------
   MENU TABLES — RUSTIC DHABA WOODEN STYLE
--------------------------------------------------- */

section h2 {
    text-align: center;
    background: #7b0f08;
    color: #ffdc75;
    margin: 25px 0 0;
    padding: 10px 0;
    font-size: 20px;
    text-transform: uppercase;
    border-top: 3px solid #ffbf3f;
    border-bottom: 3px solid #ffbf3f;
}

table {
    width: 95%;
    margin: 10px auto 25px;
    border-collapse: collapse;
    background: #fffaf0;
    border: 3px solid #b97a56;        /* wood border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

table thead {
    background: #b97a56; /* rustic wood brown */
    color: white;
}

table th, table td {
    padding: 10px;
    border: 1px solid #c89b72;
    font-size: 14px;
}

table tbody tr:nth-child(odd) {
    background: #f7e9d5;
}

table tbody tr:nth-child(even) {
    background: #fffaf0;
}

table tbody tr:hover {
    background: #ffe5b4;
}

/* ---------- Footer ---------- */

footer {
    text-align: center;
    background: #4b0a05;
    padding: 15px;
    color: #ffdc75;
    border-top: 4px solid #ffbf3f;
    margin-top: 30px;
}
/*thumbnail*/
.menu-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
    vertical-align: middle;
}
.item-cell {
    display: flex;
    align-items: center;
}
/*card*/
.menu-card {
    display: flex;
    background: #fff;
    margin: 15px auto;
    width: 90%;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    align-items: center;
}
.card-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
    margin-left: 15px;
}
.card-info h3 {
    margin: 0 0 5px;
    font-size: 18px;
}
.card-info p {
    margin: 0;
    color: #777;
}
