
/* =========================================================
   RESTAURANT • CAFE • HALL
   LANDING PAGE 2026
========================================================= */


/* =========================================================
   01. ROOT
========================================================= */

:root {

    --teal-dark: #0b1714;
    --teal: #10231f;
    --teal-light: #1b3c34;

    --gray-dark: #111615;
    --gray: #1b211f;

    --gold: #b0822c;
    --gold-light: #d5ad5d;
    --gold-dark: #78571e;

    --white: #ffffff;
    --white-soft: #e8ecea;
    --text-muted: #a6afac;

    --border: rgba(255,255,255,.12);
    --gold-border: rgba(176,130,44,.45);

    --header-height: 82px;
    --footer-height: 72px;

}


/* =========================================================
   02. RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    width: 100%;

    min-height: 100vh;

    direction: rtl;

    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;

    background:
        var(--teal-dark);

    color: var(--white);

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input {

    font-family: inherit;

}


img {

    max-width: 100%;

}


/* =========================================================
   03. SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 7px;

}


::-webkit-scrollbar-track {

    background: var(--teal-dark);

}


::-webkit-scrollbar-thumb {

    background: var(--gold);

    border-radius: 20px;

}


/* =========================================================
   04. MAIN PAGE
========================================================= */

.landing-page {

    position: relative;

    width: 100%;

    min-height: 100vh;

    height: 100vh;

    display: flex;

    flex-direction: column;

    overflow: hidden;

}


/* =========================================================
   05. BACKGROUND
========================================================= */

.landing-background {

    position: fixed;

    z-index: -5;

    inset: 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(27,60,52,.30),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(176,130,44,.08),
            transparent 28%
        ),
        var(--teal-dark);

}


.background-noise {

    position: absolute;

    inset: 0;

    opacity: .045;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

}


.background-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .15;

    pointer-events: none;

}


.background-glow-one {

    top: -180px;

    right: -100px;

    background: var(--gold);

}


.background-glow-two {

    bottom: -220px;

    left: -100px;

    background: var(--teal-light);

}


/* =========================================================
   06. HEADER
========================================================= */

.landing-header {

    position: relative;

    z-index: 100;

    flex: 0 0 var(--header-height);

    width: 100%;

    border-bottom:
        1px solid var(--border);

    background:
        rgba(11,23,20,.55);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

}


.landing-header-inner {

    width:
        min(
            calc(100% - 60px),
            1450px
        );

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   07. LOGO
========================================================= */

.landing-logo {

    display: flex;

    align-items: center;

    gap: 13px;

}


.landing-logo-icon {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 10px 30px
        rgba(176,130,44,.18);

    font-size: 20px;

}


.landing-logo-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.landing-logo-text strong {

    font-size: 13px;

    font-weight: 800;

}


.landing-logo-text small {

    direction: ltr;

    color: var(--text-muted);

    font-size: 7px;

    letter-spacing: 2.5px;

}


/* =========================================================
   08. HEADER INFO
========================================================= */

.landing-header-info {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-muted);

    font-size: 8px;

}


.header-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 10px
        rgba(176,130,44,.7);

}


/* =========================================================
   09. EXPERIENCE SELECTOR
========================================================= */

.experience-selector {

    position: relative;

    flex: 1;

    width: 100%;

    min-height: 0;

    display: flex;

    overflow: hidden;

}


/* =========================================================
   10. EXPERIENCE PANEL
========================================================= */

.experience-panel {

    position: relative;

    height: 100%;

    flex: 1;

    min-width: 0;

    overflow: hidden;

    cursor: pointer;

    transition:
        flex .8s
        cubic-bezier(.22,1,.36,1);

}


/* =========================================================
   11. PANEL HOVER
========================================================= */

.experience-selector:has(
    .restaurant-panel:hover
)
.restaurant-panel {

    flex: 1.45;

}


.experience-selector:has(
    .restaurant-panel:hover
)
.hall-panel {

    flex: .75;

}


.experience-selector:has(
    .hall-panel:hover
)
.hall-panel {

    flex: 1.45;

}


.experience-selector:has(
    .hall-panel:hover
)
.restaurant-panel {

    flex: .75;

}


/* =========================================================
   12. PANEL IMAGE
========================================================= */

.experience-image {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.experience-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    filter:
        brightness(.55)
        saturate(.75);

    transform: scale(1.03);

    transition:
        transform 1.1s
        cubic-bezier(.22,1,.36,1),
        filter .8s ease;

}


.experience-panel:hover
.experience-image img {

    transform:
        scale(1.10);

    filter:
        brightness(.70)
        saturate(.95);

}


/* =========================================================
   13. IMAGE OVERLAY
========================================================= */

.experience-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,12,10,.30),
            rgba(5,12,10,.12) 35%,
            rgba(5,12,10,.78) 100%
        );

    transition:
        background .7s ease;

}


.experience-panel:hover
.experience-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(5,12,10,.15),
            rgba(5,12,10,.04) 35%,
            rgba(5,12,10,.65) 100%
        );

}


/* =========================================================
   14. HALL GOLD EFFECT
========================================================= */

.hall-gold-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 80%,
            rgba(176,130,44,.18),
            transparent 45%
        );

    opacity: .45;

    transition:
        opacity .6s ease;

    pointer-events: none;

}


.hall-panel:hover
.hall-gold-overlay {

    opacity: .85;

}


/* =========================================================
   15. EXPERIENCE CONTENT
========================================================= */

.experience-content {

    position: absolute;

    z-index: 10;

    right: 10%;

    bottom: 12%;

    width: min(500px, 70%);

    transition:
        transform .7s
        cubic-bezier(.22,1,.36,1);

}


.experience-panel:hover
.experience-content {

    transform:
        translateY(-8px);

}


/* =========================================================
   16. NUMBER
========================================================= */

.experience-number {

    display: block;

    margin-bottom: 12px;

    direction: ltr;

    color:
        rgba(255,255,255,.45);

    font-size: 11px;

    letter-spacing: 4px;

}


/* =========================================================
   17. EYEBROW
========================================================= */

.experience-eyebrow {

    display: block;

    margin-bottom: 13px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;

    direction: ltr;

}


/* =========================================================
   18. TITLES
========================================================= */

.experience-content h1,
.experience-content h2 {

    font-size:
        clamp(35px, 5vw, 72px);

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -2px;

    text-shadow:
        0 10px 35px
        rgba(0,0,0,.35);

}


.experience-content h1 span,
.experience-content h2 span {

    display: block;

    color: var(--gold-light);

}


.experience-content p {

    max-width: 430px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.70);

    font-size: 11px;

    line-height: 2.2;

}


/* =========================================================
   19. BUTTON
========================================================= */

.experience-button {

    width: fit-content;

    min-width: 185px;

    height: 52px;

    margin-top: 27px;

    padding:
        0
        7px
        0
        18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border:
        1px solid
        var(--gold-border);

    border-radius: 14px;

    background:
        rgba(16,35,31,.55);

    color: white;

    font-size: 9px;

    backdrop-filter:
        blur(12px);

    transition:
        .35s ease;

}


.experience-button .button-arrow {

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            var(--gold-light),
            var(--gold)
        );

    font-size: 15px;

    transition:
        transform .35s ease;

}


.experience-button:hover {

    border-color:
        var(--gold-light);

    background:
        rgba(176,130,44,.15);

    transform:
        translateY(-3px);

}


.experience-button:hover
.button-arrow {

    transform:
        translateX(-5px);

}


/* =========================================================
   20. PANEL DECORATION
========================================================= */

.experience-decoration {

    position: absolute;

    z-index: 3;

    top: 13%;

    left: 8%;

    width: 90px;

    height: 90px;

    pointer-events: none;

}


.experience-decoration span {

    position: absolute;

    display: block;

    border:
        1px solid
        rgba(255,255,255,.15);

}


.experience-decoration span:nth-child(1) {

    inset: 0;

    border-radius: 50%;

}


.experience-decoration span:nth-child(2) {

    inset: 14px;

    border-radius: 50%;

    border-color:
        rgba(176,130,44,.45);

}


.experience-decoration span:nth-child(3) {

    inset: 28px;

    border-radius: 50%;

    border-color:
        rgba(255,255,255,.12);

}


.experience-panel:hover
.experience-decoration {

    animation:
        decorationRotate 12s
        linear infinite;

}


@keyframes decorationRotate {

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   21. CENTER BRAND
========================================================= */

.center-brand {

    position: absolute;

    z-index: 50;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;

    pointer-events: none;

}


.center-brand-line {

    width: 1px;

    height: 65px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(176,130,44,.65)
        );

}


.center-brand-line:last-child {

    background:
        linear-gradient(
            to bottom,
            rgba(176,130,44,.65),
            transparent
        );

}


.center-brand-circle {

    width: 66px;

    height: 66px;

    margin:
        10px
        0;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--gold-border);

    border-radius: 50%;

    background:
        rgba(11,23,20,.85);

    box-shadow:
        0 0 0 8px
        rgba(11,23,20,.22),
        0 15px 40px
        rgba(0,0,0,.25);

    backdrop-filter:
        blur(15px);

}


.center-brand-circle span {

    font-size: 22px;

    filter:
        drop-shadow(
            0 4px 10px
            rgba(176,130,44,.25)
        );

}


.center-brand-text {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

    text-align: center;

}


.center-brand-text small {

    direction: ltr;

    color:
        var(--text-muted);

    font-size: 6px;

    letter-spacing: 2px;

}


.center-brand-text strong {

    color:
        var(--gold-light);

    font-size: 9px;

    white-space: nowrap;

}


/* =========================================================
   22. FOOTER
========================================================= */

.landing-footer {

    position: relative;

    z-index: 100;

    flex: 0 0 var(--footer-height);

    border-top:
        1px solid var(--border);

    background:
        rgba(11,23,20,.62);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

}


.landing-footer-inner {

    width:
        min(
            calc(100% - 60px),
            1450px
        );

    height: 100%;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

}


/* =========================================================
   23. FOOTER LOCATION
========================================================= */

.footer-location {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        var(--text-muted);

    font-size: 8px;

}


.footer-icon {

    color:
        var(--gold-light);

    font-size: 12px;

}


/* =========================================================
   24. FOOTER SCROLL
========================================================= */

.footer-scroll {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color:
        rgba(255,255,255,.40);

    font-size: 7px;

}


.scroll-line {

    width: 45px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

}


/* =========================================================
   25. FOOTER COPY
========================================================= */

.footer-copy {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 5px;

    color:
        rgba(255,255,255,.35);

    font-size: 7px;

}


.footer-copy strong {

    color:
        var(--gold-light);

}


/* =========================================================
   26. HOVER BORDER EFFECT
========================================================= */

.experience-panel::before {

    content: "";

    position: absolute;

    z-index: 20;

    inset: 15px;

    border:
        1px solid
        rgba(255,255,255,0);

    pointer-events: none;

    transition:
        .7s ease;

}


.experience-panel:hover::before {

    border-color:
        rgba(176,130,44,.28);

}


/* =========================================================
   27. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {


    body {

        overflow-y: auto;

    }


    .landing-page {

        height: auto;

        min-height: 100vh;

        overflow: visible;

    }


    .experience-selector {

        height: auto;

        min-height: calc(
            100vh -
            var(--header-height) -
            var(--footer-height)
        );

    }


    .experience-content {

        right: 7%;

        bottom: 9%;

        width: 80%;

    }


    .experience-content h1,
    .experience-content h2 {

        font-size:
            clamp(30px, 5vw, 52px);

    }


}


/* =========================================================
   28. MOBILE
========================================================= */

@media (max-width: 650px) {


    :root {

        --header-height: 70px;

        --footer-height: auto;

    }


    body {

        overflow-y: auto;

    }


    .landing-page {

        min-height: 100svh;

        height: auto;

    }


    /* HEADER */

    .landing-header-inner {

        width:
            calc(100% - 30px);

    }


    .landing-logo-icon {

        width: 39px;

        height: 39px;

        font-size: 17px;

    }


    .landing-logo-text strong {

        font-size: 11px;

    }


    .landing-logo-text small {

        font-size: 5px;

        letter-spacing: 1.5px;

    }


    .landing-header-info {

        display: none;

    }


    /* SELECTOR */

    .experience-selector {

        min-height: auto;

        height: auto;

        flex-direction: column;

        gap: 0;

    }


    .experience-panel {

        flex: none !important;

        width: 100%;

        height: 43vh;

        min-height: 310px;

        max-height: 450px;

    }


    .experience-panel:hover {

        flex: none !important;

    }


    .restaurant-panel {

        border-bottom:
            1px solid
            rgba(176,130,44,.35);

    }


    /* CENTER BRAND */

    .center-brand {

        position: absolute;

        top: 50%;

        left: 50%;

        width: 90px;

        transform:
            translate(-50%, -50%);

    }


    .center-brand-line {

        width: 45px;

        height: 1px;

    }


    .center-brand-line:first-child {

        display: none;

    }


    .center-brand-line:last-child {

        display: none;

    }


    .center-brand-circle {

        width: 52px;

        height: 52px;

        margin: 0;

        border-width: 1px;

        box-shadow:
            0 0 0 6px
            rgba(11,23,20,.55),
            0 10px 30px
            rgba(0,0,0,.3);

    }


    .center-brand-circle span {

        font-size: 18px;

    }


    .center-brand-text {

        display: none;

    }


    /* CONTENT */

    .experience-content {

        right: 7%;

        bottom: 8%;

        width: 82%;

    }


    .experience-number {

        margin-bottom: 8px;

        font-size: 8px;

    }


    .experience-eyebrow {

        margin-bottom: 8px;

        font-size: 6px;

        letter-spacing: 2px;

    }


    .experience-content h1,
    .experience-content h2 {

        font-size: 30px;

        letter-spacing: -.8px;

    }


    .experience-content p {

        margin-top: 10px;

        max-width: 320px;

        font-size: 8px;

        line-height: 1.9;

    }


    .experience-button {

        min-width: 145px;

        height: 43px;

        margin-top: 15px;

        padding:
            0
            5px
            0
            12px;

        gap: 12px;

        border-radius: 11px;

        font-size: 7px;

    }


    .experience-button .button-arrow {

        width: 32px;

        height: 32px;

        border-radius: 8px;

        font-size: 12px;

    }


    /* DECORATION */

    .experience-decoration {

        width: 65px;

        height: 65px;

        top: 10%;

        left: 7%;

    }


    /* FOOTER */

    .landing-footer {

        padding:
            17px
            15px;

    }


    .landing-footer-inner {

        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 10px;

    }


    .footer-location {

        justify-content: center;

        font-size: 7px;

    }


    .footer-scroll {

        display: none;

    }


    .footer-copy {

        align-items: center;

        text-align: center;

        font-size: 6px;

        line-height: 1.8;

    }

}


/* =========================================================
   29. SMALL MOBILE
========================================================= */

@media (max-width: 390px) {


    .experience-panel {

        height: 42vh;

        min-height: 280px;

    }


    .experience-content h1,
    .experience-content h2 {

        font-size: 26px;

    }


    .experience-content p {

        font-size: 7px;

        max-width: 270px;

    }


}


/* =========================================================
   30. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


    * {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;

    }

}