/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Almarai', sans-serif;
    background: 0b6b4f;
    direction: rtl;
    color: #111;
}

/* CONTAINER */
.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   NAVBAR (UberEats style)
========================= */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: #00a082;
}

#navbar ul {
    list-style: none;
    display: flex;
    gap: 18px;
}

#navbar a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

#navbar a:hover {
    color: #00a082;
}

/* =========================
   TITLE
========================= */
.section-title {
    text-align: center;
    margin: 25px 0;
    font-size: 26px;
    font-weight: 800;
}

/* =========================
   MENU SECTION GRID
========================= */
.menu-section {
    padding: 20px 0 60px;
}

.menu-layout-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

/* =========================
   MENU CARD (Uber style)
========================= */
.menu-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.menu-card h4 {
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    border-bottom: 1px solid #f0f0f0;
}

/* =========================
   ITEM ROW
========================= */
.menu-item {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: #0f3d2e;
}

/* IMAGE */
.item-thumb {
    width: 78px;
    height: 78px;
    border-radius: 14px;
    object-fit: cover;
}

/* DETAILS */
.item-details {
    flex: 1;
}

/* HEADER */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 15px;
}

/* PRICE TAG */
.item-header span:last-child {
    color: #00a082;
    font-weight: 900;
}

/* DESCRIPTION */
.item-desc {
    font-size: 13px;
    color: #666;
    margin: 6px 0;
    line-height: 1.5;
}

/* META */
.item-meta {
    font-size: 12px;
    color: #999;
}

/* =========================
   BUTTON STYLE (optional add)
========================= */
.add-btn {
    margin-top: 8px;
    background: #00a082;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.add-btn:hover {
    background: #008f72;
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align: center;
    padding: 25px;
    font-size: 13px;
    color: #777;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .menu-layout-wrapper {
        grid-template-columns: 1fr;
    }

    .item-thumb {
        width: 70px;
        height: 70px;
    }

    .section-title {
        font-size: 22px;
    }
}