@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap");

/* =========================
   ألوان الموقع
========================= */

:root {
    --gold: #e3af3f;
    --gold-light: #f4cb6d;
    --gold-dark: #d49b2c;

    --dark: #100b08;
    --dark-menu: #0d0906;

    --white: #ffffff;

    --border: rgba(255, 255, 255, 0.18);
}

/* =========================
   إعدادات عامة
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family: "Tajawal", sans-serif;

    background-color: var(--dark);
    color: var(--white);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* =========================
   Header وصورة الخلفية
========================= */

.main-header {
    position: relative;
    isolation: isolate;

    min-height: 100vh;
    min-height: 100svh;

    overflow: hidden;

    color: var(--white);

    /*
        صورة الخلفية بصيغة PNG
        مكانها: images/header-bg.png
    */
    background-image: url("../images/header-bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ظل خفيف أعلى وأسفل الصورة */

.main-header::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.12) 32%,
        rgba(0, 0, 0, 0.18) 65%,
        rgba(0, 0, 0, 0.38) 100%
    );
}

/* ظل ناعم عند أطراف الصورة */

.main-header::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    pointer-events: none;

    background: radial-gradient(
        ellipse at center,
        transparent 52%,
        rgba(0, 0, 0, 0.28) 100%
    );
}

/* =========================
   Navbar
========================= */

.navbar-wrapper {
    position: relative;
    z-index: 20;

    padding-top: 10px;
}

.navbar {
    position: relative;

    min-height: clamp(105px, 10vw, 135px);

    display: grid;

    grid-template-columns:
        minmax(130px, 165px)
        1fr
        minmax(130px, 165px);

    grid-template-areas:
        "actions links brand";

    align-items: center;
    gap: 20px;

    direction: ltr;
}

.nav-links,
.nav-actions {
    direction: rtl;
}

/* =========================
   الشعار
========================= */

.brand {
    grid-area: brand;
    justify-self: end;

    width: clamp(105px, 9vw, 135px);
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(3px, 0.35vw, 5px);

    border: 2px solid var(--gold);
    border-radius: 50%;

    background-color: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.58),
        0 0 0 4px rgba(255, 255, 255, 0.1);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.brand:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.68),
        0 0 0 5px rgba(227, 175, 63, 0.2);
}

.brand img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transform: scale(1.1);
    transform-origin: center;
}

/* =========================
   روابط القائمة على الكمبيوتر
========================= */

.nav-links {
    grid-area: links;
    justify-self: center;

    width: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 2.7vw, 44px);

    padding: 0;

    list-style: none;
}

.nav-links a {
    position: relative;

    display: block;
    padding-block: 13px;

    color: rgba(255, 255, 255, 0.97);

    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 5px 12px rgba(0, 0, 0, 0.85);

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 4px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background-color: var(--gold);

    box-shadow:
        0 2px 8px rgba(227, 175, 63, 0.55);

    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* =========================
   أيقونات القائمة
========================= */

.nav-actions {
    grid-area: actions;
    justify-self: start;

    display: flex;
    align-items: center;
    gap: 9px;
}

.icon-button {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;

    background-color: rgba(0, 0, 0, 0.28);
    color: var(--white);

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.28);

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.icon-button:hover {
    color: var(--gold);
    border-color: var(--gold);

    background-color: rgba(0, 0, 0, 0.5);

    transform: translateY(-2px);
}

.icon-button svg {
    width: 18px;
    height: 18px;
}

/* =========================
   زر القائمة على الهاتف
========================= */

.mobile-menu-button {
    display: none;
    grid-area: menu;

    width: 46px;
    height: 46px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background-color: rgba(20, 14, 10, 0.88);
    color: var(--white);

    cursor: pointer;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.38);
}

.mobile-menu-button span {
    display: block;

    width: 22px;
    height: 2px;
    margin: 5px auto;

    border-radius: 10px;

    background-color: currentColor;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   خلفية قائمة الهاتف
========================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;

    background-color: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

/* =========================
   محتوى الواجهة
========================= */

.hero-content {
    position: relative;
    z-index: 5;

    min-height: calc(100svh - 135px);

    padding: 35px 20px 95px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    transform: translateY(-15px);
}

.hero-title {
    color: var(--white);

    font-size: clamp(58px, 7vw, 94px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;

    text-shadow:
        0 3px 5px rgba(0, 0, 0, 0.9),
        0 8px 20px rgba(0, 0, 0, 0.55);
}

.hero-line {
    width: 150px;
    height: 2px;

    margin: 22px auto 24px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    box-shadow:
        0 2px 8px rgba(227, 175, 63, 0.35);
}

.hero-description {
    color: var(--white);

    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 5px 12px rgba(0, 0, 0, 0.85);
}

/* =========================
   أزرار الواجهة
========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-top: 35px;
}

.hero-button {
    min-width: 140px;
    height: 46px;
    padding-inline: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button.primary {
    color: #1a1308;

    background: linear-gradient(
        135deg,
        #edbb4c,
        #dca334
    );

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-button.primary:hover {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero-button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.72);

    background-color: rgba(0, 0, 0, 0.32);
    color: var(--white);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.2);
}

.hero-button.secondary:hover {
    border-color: var(--gold);

    background-color: rgba(0, 0, 0, 0.5);
}

/* =========================
   اللابتوب الصغير
========================= */

@media (max-width: 1050px) {

    .navbar {
        grid-template-columns: 125px 1fr 125px;
        gap: 14px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .brand {
        width: clamp(100px, 10vw, 118px);
    }

    .hero-title {
        font-size: clamp(56px, 7vw, 86px);
    }
}

/* =========================
   التابلت والهاتف
========================= */

@media (max-width: 900px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .navbar {
        min-height: 105px;

        grid-template-columns: 56px 1fr;

        grid-template-areas:
            "menu brand";
    }

    .brand {
        justify-self: end;

        width: clamp(86px, 18vw, 104px);

        border-width: 2px;

        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.58),
            0 0 0 4px rgba(255, 255, 255, 0.09);
    }

    .brand img {
        transform: scale(1.08);
    }

    .mobile-menu-button {
        position: fixed;

        top: 20px;
        left: 18px;
        z-index: 200;

        display: block;
    }

    .nav-actions {
        display: none;
    }

    /* القائمة الجانبية */

    .nav-links {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;
        left: auto;

        z-index: 150;

        width: min(300px, 82vw);
        height: 100vh;
        height: 100svh;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;

        padding: 130px 25px 35px;

        border-left:
            1px solid rgba(255, 255, 255, 0.12);

        border-radius: 0 0 0 24px;

        background: linear-gradient(
            180deg,
            rgba(24, 16, 12, 0.99),
            rgba(12, 8, 6, 0.99)
        );

        overflow-y: auto;

        transform: translateX(105%);

        pointer-events: none;

        box-shadow:
            -15px 0 40px rgba(0, 0, 0, 0.52);

        transition:
            transform 0.35s ease;
    }

    .nav-links.open {
        transform: translateX(0);

        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;

        padding: 17px 8px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.1);

        color: rgba(255, 255, 255, 0.9);

        font-size: 17px;
        font-weight: 600;
        text-align: right;

        text-shadow:
            0 2px 5px rgba(0, 0, 0, 0.9);

        transform: none;

        transition:
            color 0.25s ease,
            padding-right 0.25s ease,
            background-color 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold-light);

        padding-right: 16px;

        background-color: rgba(255, 255, 255, 0.04);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-content {
        min-height: calc(100svh - 115px);

        padding-top: 55px;
        padding-bottom: 80px;

        transform: translateY(-8px);
    }

    .hero-title {
        font-size: clamp(53px, 11vw, 76px);
    }
}

/* =========================
   الهاتف
========================= */

@media (max-width: 600px) {

    .main-header {
        min-height: 100vh;
        min-height: 100svh;

        background-position: 50% center;
    }

    .main-header::before {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.44) 0%,
            rgba(0, 0, 0, 0.14) 35%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.42) 100%
        );
    }

    .main-header::after {
        background: radial-gradient(
            ellipse at center,
            transparent 45%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .navbar-wrapper {
        padding-top: 8px;
    }

    .navbar {
        min-height: 96px;
    }

    .brand {
        width: clamp(80px, 22vw, 94px);
        padding: 3px;
    }

    .brand img {
        transform: scale(1.08);
    }

    .mobile-menu-button {
        top: 16px;
        left: 14px;

        width: 44px;
        height: 44px;
    }

    .nav-links {
        width: min(285px, 84vw);

        padding: 112px 22px 30px;
    }

    .hero-content {
        min-height: calc(100svh - 104px);

        padding: 35px 5px 55px;

        transform: none;
    }

    .hero-title {
        font-size: clamp(43px, 13vw, 58px);
        line-height: 1.1;
        letter-spacing: -1px;

        text-shadow:
            0 3px 5px rgba(0, 0, 0, 0.9),
            0 7px 18px rgba(0, 0, 0, 0.58);
    }

    .hero-line {
        width: 125px;

        margin-block: 19px;
    }

    .hero-description {
        max-width: 290px;

        font-size: 17px;
        line-height: 1.8;
    }

    .hero-buttons {
        width: 100%;
        max-width: 320px;

        margin-top: 26px;
    }

    .hero-button {
        flex: 1;

        min-width: 0;
        padding-inline: 15px;
    }
}

/* =========================
   الهواتف الصغيرة جداً
========================= */

@media (max-width: 380px) {

    .brand {
        width: 76px;
    }

    .brand img {
        transform: scale(1.06);
    }

    .hero-title {
        font-size: 41px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }
}

/* =========================
   تقليل الحركة
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================
   قسم المنيو
========================= */

.menu-section {
    position: relative;
    isolation: isolate;

    padding: 90px 0 110px;

    background-color: var(--dark-menu);

    overflow: hidden;
}

.menu-decor {
    position: absolute;
    z-index: 0;

    pointer-events: none;
    user-select: none;

    width: clamp(220px, 24vw, 340px);
    height: auto;

    -webkit-mask-image: radial-gradient(
        ellipse at center,
        black 45%,
        transparent 78%
    );
    mask-image: radial-gradient(
        ellipse at center,
        black 45%,
        transparent 78%
    );

    opacity: 0.85;
}

.menu-decor-top {
    top: -30px;
    right: -40px;
}

.menu-decor-bottom {
    bottom: -20px;
    left: -50px;
}

.menu-section .container {
    position: relative;
    z-index: 1;
}

.menu-heading {
    text-align: center;
}

.menu-eyebrow {
    color: var(--gold);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-title {
    margin-top: 8px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
}

.menu-heading .hero-line {
    margin-top: 20px;
}

/* أزرار التبويب */

.menu-tabs {
    width: min(560px, 100%);
    margin: 46px auto 0;

    display: flex;
    gap: 6px;
    padding: 7px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background-color: rgba(255, 255, 255, 0.03);
}

.menu-tab {
    flex: 1;

    padding: 13px 16px;

    border-radius: 999px;

    background-color: transparent;
    color: rgba(255, 255, 255, 0.65);

    font-family: "Tajawal", sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.menu-tab:hover {
    color: var(--white);
}

.menu-tab.active {
    color: #1a1308;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.3);
}

/* محتوى التبويبات */

.menu-panel {
    display: none;

    margin-top: 50px;

    opacity: 0;
    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.menu-panel[hidden] {
    display: none;
}

.menu-panel.active {
    display: block;

    opacity: 1;
    transform: translateY(0);
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px 60px;
}

.menu-group-title {
    padding-bottom: 10px;
    margin-bottom: 18px;

    border-bottom: 1px solid var(--border);

    color: var(--gold);

    font-size: 19px;
    font-weight: 700;
}

.menu-item-list {
    list-style: none;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 8px;

    padding-block: 11px;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--white);

    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.item-leader {
    flex: 1;
    height: 0;

    border-bottom: 2px dotted rgba(227, 175, 63, 0.35);

    transform: translateY(-4px);
}

.item-price {
    color: var(--gold-light);

    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

/* =========================
   جدول الأصناف بحجمين (صغير / كبير)
========================= */

.menu-size-table {
    margin-top: 56px;
    padding-top: 40px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.size-table-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    max-width: 640px;
    margin: 0 auto 24px;
}

.size-table-top .menu-group-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.size-toggle {
    display: inline-flex;
    gap: 4px;
    padding: 5px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background-color: rgba(255, 255, 255, 0.03);
}

.size-toggle-btn {
    padding: 8px 20px;

    border-radius: 999px;

    background-color: transparent;
    color: rgba(255, 255, 255, 0.65);

    font-family: "Tajawal", sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.size-toggle-btn:hover {
    color: var(--white);
}

.size-toggle-btn.active {
    color: #1a1308;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
}

.size-table-list {
    list-style: none;
    text-align: right;

    max-width: 640px;
    margin: 0 auto;
}

.size-table-row {
    display: flex;
    align-items: baseline;
    gap: 8px;

    padding-block: 11px;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.size-table-row:last-child {
    border-bottom: none;
}

.size-table-name {
    color: var(--white);

    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.size-table-price {
    display: inline-block;

    min-width: 46px;

    color: var(--gold-light);

    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    text-align: left;
}

/* =========================
   استجابة قسم المنيو
========================= */

@media (max-width: 900px) {

    .menu-section {
        padding: 70px 0 85px;
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .menu-tabs {
        width: 100%;
    }

    .menu-tab {
        font-size: 13px;
        padding: 12px 8px;
    }

    .menu-decor {
        width: clamp(150px, 30vw, 220px);
        opacity: 0.55;
    }
}

@media (max-width: 600px) {

    .menu-section {
        padding: 55px 0 65px;
    }

    .menu-tabs {
        margin-top: 34px;
    }

    .menu-panel {
        margin-top: 38px;
    }

    .item-name,
    .item-price {
        font-size: 15px;
    }

    .size-table-name,
    .size-table-price {
        font-size: 15px;
    }

    .size-table-top {
        gap: 10px;
    }

    .size-table-top .menu-group-title {
        font-size: 16px;
    }

    .size-toggle-btn {
        padding: 7px 14px;
        font-size: 13px;
    }
}

/* =========================
   الهواتف الصغيرة جداً (منيو)
========================= */

@media (max-width: 380px) {

    .menu-tabs {
        flex-direction: column;
        gap: 8px;

        border-radius: 18px;
    }

    .menu-tab {
        border-radius: 12px;
    }

    .menu-item {
        flex-wrap: wrap;
    }

    .item-name {
        white-space: normal;

        flex-basis: 100%;
    }

    .item-leader {
        display: none;
    }

    .item-price {
        margin-inline-start: auto;

        color: var(--gold);
    }

    .size-table-top {
        gap: 6px;
    }

    .size-table-top .menu-group-title {
        font-size: 14px;
    }

    .size-toggle-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .menu-decor {
        display: none;
    }
}
/* =========================
   صورة الطبق بجانب عنوان المنيو
========================= */

.menu-heading {
    position: relative;
    z-index: 1;
}


/* الكمبيوتر */

.menu-main-dish {

    position: absolute;

    top: -200px;
    right: -480px;

    width: 500px;

    z-index: -1;

    pointer-events: none;
    user-select: none;

    opacity: 0.45;

    transform: rotate(-8deg);

    filter:
        drop-shadow(
            0 30px 40px rgba(0,0,0,0.7)
        );

}


/* نخلي محتوى المنيو فوق الصورة */

.menu-panel,
.menu-tabs,
.menu-size-table {

    position: relative;

    z-index: 5;

}
/* =========================
   صورة الطبق - الكمبيوتر
========================= */

.menu-heading {
    position: relative;
    z-index: 2;
}

.menu-main-dish {

    position: absolute;

    top: -170px;
    right: -220px;

    width: 500px;

    z-index: 1;

    opacity: 0.55;

    pointer-events: none;

    transform: rotate(-8deg);

    filter:
        drop-shadow(
            0 30px 40px rgba(0,0,0,0.65)
        );

}


/* =========================
   منع الصورة من تغطية المنيو
========================= */

.menu-tabs,
.menu-panel,
.menu-size-table {

    position: relative;

    z-index: 5;

}


/* =========================
   الهاتف فقط
========================= */

@media (max-width:900px){

    .menu-main-dish {

        width: 330px;

        top: -100px;

        right: -120px;

        opacity: 0.38;

        transform: rotate(-12deg);

    }

}


/* =========================
   هاتف صغير
========================= */

@media (max-width:600px){

    .menu-main-dish {

        width: 320px;

        top: -100px;

        right: -120px;

        opacity: 0.38;

    }


}
/* =========================
   طبق لحمة من جهة اليسار
========================= */

.menu-left-main-dish {

    position: absolute;

    left: -250px;

    top: 160px;

    width: 460px;

    z-index: 1;

}


.menu-left-main-dish img {

    width: 100%;

    opacity: 0.55;

    transform: rotate(-8deg);

    filter:
    drop-shadow(0 30px 45px rgba(0,0,0,.6));

}


.menu-section {

    position: relative;

}


.menu-section .container {

    position: relative;

    z-index: 5;

}


@media(max-width:900px){

    .menu-left-main-dish {

        display:none;

    }

}

@media(max-width:600px){

    .menu-left-main-dish {

        display:none;

    }

}
/* =========================
   اختيار الحجم (علبة / صحن)
========================= */

.menu-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 14px;

    width: 100%;
    margin-bottom: 18px;
}

.menu-title-row .menu-group-title {
    margin: 0;
    padding-bottom: 10px;

    border-bottom: 1px solid var(--border);

    flex-shrink: 0;
}

.size-selector {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background-color: rgba(255, 255, 255, 0.03);

    flex-shrink: 0;
}

.size-btn {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.65);

    border: none;
    padding: 7px 16px;
    border-radius: 999px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.size-btn:hover {
    color: var(--white);
}

.size-btn.active {
    color: #1a1308;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
}

@media (max-width: 480px) {

    .menu-title-row {
        flex-wrap: wrap;
    }

    .size-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
.working-hours {

    background:#f5f0e7;

    padding:80px 0;

    text-align:center;

    color:#1a1308;

}


.working-title {

    color:#1a1308;

    font-size:40px;

    font-weight:800;

}


.working-line {

    width:120px;

    height:2px;

    margin:20px auto 35px;

    background:#e3af3f;

}


.working-card {

    max-width:450px;

    margin:auto;

    padding:25px;

    border-radius:20px;

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.working-card span {

    display:block;

    color:#b17b18;

    font-size:20px;

    margin-bottom:10px;

}


.working-card strong {

    font-size:22px;

}

/* =========================
   قسم الموقع
========================= */

.location-section {

    background: #100b08;

    padding: 80px 0;

    text-align: center;

    color: white;

}


.location-title {

    font-size: 40px;

    font-weight: 800;

    color: white;

}


.location-line {

    width: 120px;

    height: 2px;

    margin: 20px auto 35px;

    background: #e3af3f;

}


.location-card {

    max-width: 500px;

    margin: auto;

    padding: 35px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 25px;

    background: rgba(255,255,255,.04);

}


.location-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e3af3f;
    font-size: 35px;

    border: 1px solid #e3af3f;
}


.location-card p {

    font-size: 20px;

    line-height: 2;

    color: white;

    margin-bottom: 25px;

}


.location-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 35px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #f4cb6d,
        #d49b2c
    );

    color:#1a1308;

    font-weight:700;

}
.contact-section {

    background: #f5f0e7;

    padding: 80px 0;

    text-align: center;

    color: #1a1308;

}


.contact-title {

    font-size: 40px;

    font-weight: 800;

    color: #1a1308;

}


.contact-line {

    width:120px;

    height:2px;

    background:#e3af3f;

    margin:20px auto 40px;

}


.contact-items {

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}


.contact-card {

    width:230px;

    padding:30px;

    background:white;

    border-radius:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}


.contact-icon {

    width:55px;

    height:55px;

    margin:0 auto 15px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e3af3f;

    color:#1a1308;

    font-size:28px;

}


.contact-card p {

    font-size:20px;

    font-weight:700;

    margin:0;

}