
/* =========================================================
   HALL WEBSITE
   LUXURY WEDDING / EVENT HALL
   2026
========================================================= */


/* =========================================================
   01. ROOT
========================================================= */

:root {

    --cream: #fffaf5;
    --cream-dark: #f8efe8;

    --white: #ffffff;

    --rose: #b98286;
    --rose-light: #efd8da;
    --rose-dark: #93666a;

    --champagne: #e8c98a;
    --gold: #c9a45c;
    --gold-light: #e4c98e;
    --gold-dark: #9d793b;

    --pink-soft: #f8e4e8;

    --text: #292525;
    --text-light: #6e6664;
    --text-muted: #9b9390;

    --border: rgba(41,37,37,.10);
    --border-gold: rgba(201,164,92,.35);

    --shadow:
        0 25px 70px rgba(41,37,37,.10);

    --shadow-soft:
        0 15px 45px rgba(41,37,37,.08);

    --header-height: 82px;

}


/* =========================================================
   02. RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    direction: rtl;

    width: 100%;

    min-height: 100vh;

    overflow-x: hidden;

    background:
        var(--cream);

    color:
        var(--text);

    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;

}


body.menu-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font-family: inherit;

}


img {

    display: block;

    max-width: 100%;

}


::selection {

    background:
        var(--rose);

    color:
        var(--white);

}


/* =========================================================
   03. SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 7px;

}


::-webkit-scrollbar-track {

    background:
        var(--cream);

}


::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--rose),
            var(--gold)
        );

    border-radius: 20px;

}


/* =========================================================
   04. CONTAINER
========================================================= */

.container {

    width:
        min(
            calc(100% - 80px),
            1400px
        );

    margin:
        0 auto;

}


/* =========================================================
   05. LOADER
========================================================= */

.hall-loader {

    position: fixed;

    z-index: 9999;

    inset: 0;

    display: grid;

    place-items: center;

    background:
        var(--cream);

    transition:
        opacity .7s ease,
        visibility .7s ease;

}


.hall-loader.loaded {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}


.loader-ring {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    border:
        1px solid
        rgba(201,164,92,.25);

    border-top-color:
        var(--gold);

    border-right-color:
        var(--rose);

    animation:
        loaderRotate 1.2s
        linear infinite;

}


.loader-content span {

    color:
        var(--rose-dark);

    font-size: 14px;

    font-weight: 800;

}


.loader-content small {

    direction: ltr;

    color:
        var(--text-muted);

    font-size: 7px;

    letter-spacing: 3px;

}


@keyframes loaderRotate {

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   06. HEADER
========================================================= */

.hall-header {

    position: fixed;

    z-index: 1000;

    top: 0;

    right: 0;

    left: 0;

    height:
        var(--header-height);

    background:
        rgba(255,250,245,.78);

    border-bottom:
        1px solid
        rgba(41,37,37,.07);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    transition:
        background .35s ease,
        box-shadow .35s ease;

}


.hall-header.scrolled {

    background:
        rgba(255,250,245,.95);

    box-shadow:
        0 8px 35px
        rgba(41,37,37,.07);

}


.hall-header-inner {

    width:
        min(
            calc(100% - 60px),
            1450px
        );

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   07. LOGO
========================================================= */

.hall-logo {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.hall-logo-symbol {

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        1px solid
        var(--border-gold);

    background:
        linear-gradient(
            145deg,
            var(--white),
            var(--pink-soft)
        );

    color:
        var(--gold);

    font-size: 19px;

    box-shadow:
        0 7px 25px
        rgba(201,164,92,.14);

}


.hall-logo-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.hall-logo-text strong {

    color:
        var(--text);

    font-size: 13px;

    font-weight: 800;

}


.hall-logo-text small {

    direction: ltr;

    color:
        var(--text-muted);

    font-size: 6px;

    letter-spacing: 2.5px;

}


/* =========================================================
   08. DESKTOP NAVIGATION
========================================================= */

.hall-navigation {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 30px;

}


.nav-link {

    position: relative;

    display: flex;

    align-items: center;

    height: 100%;

    color:
        var(--text-light);

    font-size: 9px;

    font-weight: 500;

    transition:
        color .3s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    right: 50%;

    bottom: 20px;

    width: 0;

    height: 1px;

    background:
        var(--gold);

    transform:
        translateX(50%);

    transition:
        width .3s ease;

}


.nav-link:hover,
.nav-link.active {

    color:
        var(--rose-dark);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 22px;

}


/* =========================================================
   09. RESERVATION BUTTON
========================================================= */

.header-reservation {

    min-width: 130px;

    height: 42px;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    border:
        1px solid
        var(--border-gold);

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-dark)
        );

    color:
        var(--white);

    font-size: 8px;

    box-shadow:
        0 10px 25px
        rgba(185,130,134,.16);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.header-reservation:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(185,130,134,.25);

}


/* =========================================================
   10. MOBILE MENU BUTTON
========================================================= */

.hall-menu-button {

    display: none;

    width: 43px;

    height: 43px;

    padding: 10px;

    border:
        1px solid
        var(--border-gold);

    border-radius: 11px;

    background:
        var(--white);

    cursor: pointer;

}


.hall-menu-button span {

    display: block;

    width: 100%;

    height: 1px;

    margin: 5px 0;

    background:
        var(--text);

    transition:
        transform .3s ease,
        opacity .3s ease;

}


.hall-menu-button.active span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);

}


.hall-menu-button.active span:nth-child(2) {

    opacity: 0;

}


.hall-menu-button.active span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);

}


/* =========================================================
   11. MOBILE OVERLAY
========================================================= */

.mobile-menu-overlay {

    position: fixed;

    z-index: 1090;

    inset: 0;

    background:
        rgba(41,37,37,.38);

    opacity: 0;

    visibility: hidden;

    backdrop-filter:
        blur(5px);

    transition:
        opacity .4s ease,
        visibility .4s ease;

}


.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   12. MOBILE MENU
========================================================= */

.hall-mobile-menu {

    position: fixed;

    z-index: 1100;

    top: 0;

    right: 0;

    width:
        min(390px, 88%);

    height: 100vh;

    height: 100svh;

    padding:
        25px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            160deg,
            #fffdf9,
            #f9ecec
        );

    box-shadow:
        -20px 0 70px
        rgba(41,37,37,.18);

    transform:
        translateX(105%);

    transition:
        transform .55s
        cubic-bezier(.22,1,.36,1);

}


.hall-mobile-menu.active {

    transform:
        translateX(0);

}


.mobile-menu-header {

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid
        var(--border);

}


.mobile-menu-title {

    color:
        var(--rose-dark);

    font-size: 13px;

    font-weight: 800;

}


.mobile-menu-close {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--border-gold);

    border-radius: 50%;

    background:
        var(--white);

    color:
        var(--text);

    font-size: 21px;

    cursor: pointer;

}


.mobile-navigation {

    display: flex;

    flex-direction: column;

    padding-top: 30px;

}


.mobile-navigation a {

    padding:
        16px 5px;

    border-bottom:
        1px solid
        rgba(41,37,37,.06);

    color:
        var(--text);

    font-size: 11px;

    transition:
        padding-right .3s ease,
        color .3s ease;

}


.mobile-navigation a:hover {

    padding-right: 10px;

    color:
        var(--rose);

}


.mobile-navigation .mobile-reservation {

    margin-top: 25px;

    padding:
        15px;

    border:
        none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--rose),
            var(--rose-dark)
        );

    color:
        var(--white);

    text-align: center;

}


.mobile-menu-footer {

    margin-top: auto;

    padding-top: 20px;

    border-top:
        1px solid
        var(--border);

    direction: ltr;

    color:
        var(--text-muted);

    font-size: 6px;

    letter-spacing: 2px;

    text-align: center;

}


/* =========================================================
   13. HERO
========================================================= */

.hall-hero {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 650px;

    overflow: hidden;

    background:
        #272323;

}


.hero-image {

    position: absolute;

    inset: 0;

}


.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform:
        scale(1.03);

    animation:
        heroZoom 12s
        ease-out
        forwards;

}


@keyframes heroZoom {

    from {

        transform:
            scale(1.08);

    }

    to {

        transform:
            scale(1);

    }

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25,20,20,.82),
            rgba(25,20,20,.30) 55%,
            rgba(25,20,20,.18)
        );

}


.hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,15,15,.72),
            transparent 40%
        );

}


/* =========================================================
   14. HERO DECORATION
========================================================= */

.hero-decoration {

    position: absolute;

    color:
        rgba(232,201,138,.70);

    font-family:
        Georgia,
        serif;

    pointer-events: none;

}


.hero-decoration-one {

    top: 20%;

    right: 8%;

    font-size: 50px;

    animation:
        floating 5s ease-in-out infinite;

}


.hero-decoration-two {

    right: 15%;

    bottom: 30%;

    color:
        rgba(239,216,218,.75);

    font-size: 35px;

    animation:
        floating 6s
        ease-in-out
        infinite
        reverse;

}


@keyframes floating {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


/* =========================================================
   15. HERO CONTENT
========================================================= */

.hero-content {

    position: absolute;

    z-index: 5;

    top: 50%;

    right:
        max(8%, calc((100% - 1400px) / 2));

    width:
        min(600px, 55%);

    transform:
        translateY(-40%);

    color:
        var(--white);

}


.hero-eyebrow {

    display: block;

    direction: ltr;

    margin-bottom: 18px;

    color:
        var(--gold-light);

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 4px;

}


.hero-line {

    width: 45px;

    height: 1px;

    margin-bottom: 18px;

    background:
        var(--gold);

}


.hero-content h1 {

    font-size:
        clamp(48px, 7vw, 90px);

    line-height: 1.12;

    font-weight: 900;

    letter-spacing: -3px;

    text-shadow:
        0 15px 45px
        rgba(0,0,0,.25);

}


.hero-content h1 span {

    display: block;

    color:
        var(--gold-light);

    font-family:
        "Vazirmatn",
        sans-serif;

}


.hero-content p {

    max-width: 480px;

    margin-top: 22px;

    color:
        rgba(255,255,255,.78);

    font-size: 11px;

    line-height: 2.3;

}


/* =========================================================
   16. HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

}


.hero-button {

    min-width: 155px;

    height: 52px;

    padding:
        0 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    border-radius: 13px;

    font-size: 8px;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;

}


.hero-button:hover {

    transform:
        translateY(-3px);

}


.hero-button.primary {

    border:
        1px solid
        var(--gold);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color:
        #302617;

}


.hero-button.secondary {

    border:
        1px solid
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.07);

    color:
        var(--white);

    backdrop-filter:
        blur(10px);

}


.hero-button.secondary:hover {

    background:
        rgba(255,255,255,.15);

    border-color:
        rgba(255,255,255,.65);

}


/* =========================================================
   17. HERO BOTTOM
========================================================= */

.hero-bottom {

    position: absolute;

    z-index: 5;

    right:
        max(5%, calc((100% - 1450px) / 2));

    bottom: 35px;

    left:
        max(5%, calc((100% - 1450px) / 2));

    display: flex;

    align-items: center;

    justify-content: space-between;

    color:
        rgba(255,255,255,.60);

    font-size: 7px;

}


.hero-location {

    display: flex;

    align-items: center;

    gap: 8px;

}


.hero-location span:first-child {

    color:
        var(--gold-light);

}


.hero-scroll {

    position: absolute;

    right: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    transform:
        translateX(50%);

    direction: ltr;

    font-size: 6px;

    letter-spacing: 2px;

}


.hero-scroll i {

    width: 1px;

    height: 35px;

    background:
        linear-gradient(
            var(--gold),
            transparent
        );

    animation:
        scrollLine 2s
        ease-in-out
        infinite;

}


@keyframes scrollLine {

    0%,
    100% {

        opacity: .35;

        transform:
            scaleY(.6);

        transform-origin: top;

    }

    50% {

        opacity: 1;

        transform:
            scaleY(1);

    }

}


.hero-contact {

    display: flex;

    align-items: center;

    gap: 8px;

}


.hero-contact strong {

    color:
        var(--white);

}


/* =========================================================
   18. GENERAL SECTION
========================================================= */

.section {

    position: relative;

    padding:
        120px 0;

}


.section-heading {

    position: relative;

    margin-bottom: 65px;

}


.section-heading.centered {

    text-align: center;

}


.section-number {

    display: block;

    margin-bottom: 7px;

    direction: ltr;

    color:
        var(--gold);

    font-family:
        Georgia,
        serif;

    font-size: 12px;

}


.section-label {

    display: block;

    direction: ltr;

    margin-bottom: 15px;

    color:
        var(--rose);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 3px;

}


.section-heading h2 {

    color:
        var(--text);

    font-size:
        clamp(32px, 4vw, 56px);

    line-height: 1.25;

    font-weight: 900;

    letter-spacing: -1.5px;

}


.section-heading h2 span {

    color:
        var(--rose);

}


.section-heading > p {

    margin-top: 15px;

    color:
        var(--text-muted);

    font-size: 10px;

}


/* =========================================================
   19. ABOUT
========================================================= */

.hall-about {

    background:
        var(--cream);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    align-items: center;

    gap: 100px;

}


.about-image {

    position: relative;

    height: 550px;

}


.about-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 3px;

    box-shadow:
        var(--shadow);

}


.image-frame {

    position: absolute;

    z-index: 1;

    top: 25px;

    right: -25px;

    bottom: -25px;

    left: 25px;

    border:
        1px solid
        var(--gold);

    opacity: .65;

}


.about-content {

    max-width: 500px;

}


.about-small-title {

    display: block;

    margin-bottom: 15px;

    color:
        var(--gold-dark);

    font-size: 9px;

    font-weight: 700;

}


.about-content h3 {

    color:
        var(--text);

    font-size:
        clamp(27px, 3vw, 43px);

    line-height: 1.6;

    font-weight: 900;

}


.about-content p {

    margin-top: 18px;

    color:
        var(--text-light);

    font-size: 10px;

    line-height: 2.5;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 27px;

    padding-bottom: 8px;

    border-bottom:
        1px solid
        var(--gold);

    color:
        var(--rose-dark);

    font-size: 9px;

}


.text-link span:last-child {

    transition:
        transform .3s ease;

}


.text-link:hover span:last-child {

    transform:
        translateX(-6px);

}


/* =========================================================
   20. STATS
========================================================= */

.hall-stats {

    padding:
        70px 0;

    background:
        linear-gradient(
            135deg,
            #f8e9e8,
            #fffaf5
        );

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat-item {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    padding: 15px;

}


.stat-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 20%;

    left: 0;

    width: 1px;

    height: 60%;

    background:
        var(--border-gold);

}


.stat-item strong {

    color:
        var(--rose-dark);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 48px);

}


.stat-item span {

    color:
        var(--text-muted);

    font-size: 8px;

}


/* =========================================================
   21. HALL LIST
========================================================= */

.hall-list {

    background:
        var(--white);

}


.halls-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.hall-card {

    overflow: hidden;

    border:
        1px solid
        var(--border);

    background:
        var(--white);

    transition:
        transform .45s
        cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease;

}


.hall-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        var(--shadow);

}


.hall-card-image {

    position: relative;

    height: 350px;

    overflow: hidden;

}


.hall-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.22,1,.36,1);

}


.hall-card:hover
.hall-card-image img {

    transform:
        scale(1.08);

}


.hall-card-number {

    position: absolute;

    top: 18px;

    left: 18px;

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.45);

    border-radius: 50%;

    background:
        rgba(41,37,37,.35);

    color:
        var(--white);

    direction: ltr;

    font-family:
        Georgia,
        serif;

    font-size: 10px;

    backdrop-filter:
        blur(8px);

}


.hall-card-content {

    padding: 27px;

}


.hall-card-content > span {

    direction: ltr;

    color:
        var(--gold-dark);

    font-size: 6px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hall-card-content h3 {

    margin-top: 9px;

    color:
        var(--text);

    font-size: 23px;

    font-weight: 900;

}


.hall-card-content p {

    min-height: 50px;

    margin-top: 10px;

    color:
        var(--text-muted);

    font-size: 9px;

    line-height: 2;

}


.hall-card-meta {

    margin-top: 20px;

    padding-top: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid
        var(--border);

    color:
        var(--text-muted);

    font-size: 7px;

}


.hall-card-meta a {

    color:
        var(--rose-dark);

    font-weight: 700;

}


/* =========================================================
   22. SERVICES
========================================================= */

.hall-services {

    background:
        var(--cream-dark);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid
        var(--border);

}


.service-item {

    min-height: 280px;

    padding: 40px 30px;

    border-left:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,.45);

    transition:
        background .4s ease,
        transform .4s ease;

}


.service-item:last-child {

    border-left: none;

}


.service-item:hover {

    background:
        var(--white);

    transform:
        translateY(-5px);

}


.service-icon {

    width: 48px;

    height: 48px;

    margin-bottom: 28px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--border-gold);

    border-radius: 50%;

    background:
        var(--pink-soft);

    color:
        var(--gold-dark);

    font-size: 17px;

}


.service-item h3 {

    margin-bottom: 12px;

    color:
        var(--text);

    font-size: 16px;

    font-weight: 800;

}


.service-item p {

    color:
        var(--text-muted);

    font-size: 9px;

    line-height: 2.2;

}


/* =========================================================
   23. PACKAGES
========================================================= */

.hall-packages {

    background:
        var(--white);

}


.packages-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;

}


.package-card {

    position: relative;

    padding: 42px 35px;

    border:
        1px solid
        var(--border);

    background:
        var(--cream);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.package-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-soft);

}


.package-card.featured {

    border-color:
        var(--gold);

    background:
        linear-gradient(
            150deg,
            #fffaf4,
            #f8e6e8
        );

    box-shadow:
        0 20px 60px
        rgba(201,164,92,.12);

}


.package-badge {

    position: absolute;

    top: 0;

    right: 25px;

    padding:
        7px 14px;

    border-radius:
        0 0 8px 8px;

    background:
        var(--gold);

    color:
        #fff;

    font-size: 7px;

}


.package-label {

    display: block;

    direction: ltr;

    margin-bottom: 12px;

    color:
        var(--gold-dark);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 3px;

}


.package-card h3 {

    color:
        var(--text);

    font-size: 24px;

    font-weight: 900;

}


.package-card > p {

    min-height: 55px;

    margin-top: 14px;

    color:
        var(--text-muted);

    font-size: 9px;

    line-height: 2.1;

}


.package-card ul {

    margin-top: 25px;

    list-style: none;

}


.package-card li {

    padding:
        9px 0;

    border-bottom:
        1px solid
        var(--border);

    color:
        var(--text-light);

    font-size: 8px;

}


.package-card li::first-letter {

    color:
        var(--gold);

}


.package-card > a {

    display: inline-block;

    margin-top: 25px;

    color:
        var(--rose-dark);

    font-size: 8px;

    font-weight: 700;

}


/* =========================================================
   24. GALLERY
========================================================= */

.hall-gallery {

    background:
        var(--cream-dark);

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    grid-template-rows:
        250px
        250px;

    gap: 10px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    background:
        var(--rose-light);

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.22,1,.36,1);

}


.gallery-item:hover img {

    transform:
        scale(1.08);

}


.gallery-large {

    grid-row:
        span 2;

}


.gallery-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(41,37,37,.25),
            transparent
        );

    pointer-events: none;

}


/* =========================================================
   25. RESERVATION
========================================================= */

.reservation-section {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.reservation-background {

    position: absolute;

    inset: 0;

}


.reservation-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.reservation-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(45,29,32,.88),
            rgba(45,29,32,.60)
        );

}


.reservation-content {

    position: relative;

    z-index: 2;

    max-width: 600px;

    color:
        var(--white);

}


.reservation-content .section-label {

    color:
        var(--gold-light);

}


.reservation-content h2 {

    font-size:
        clamp(35px, 5vw, 62px);

    line-height: 1.35;

    font-weight: 900;

}


.reservation-content h2 span {

    display: block;

    color:
        var(--gold-light);

}


.reservation-content p {

    max-width: 470px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.72);

    font-size: 10px;

    line-height: 2.3;

}


.reservation-actions {

    display: flex;

    gap: 12px;

    margin-top: 30px;

}


.reservation-button {

    min-width: 150px;

    height: 50px;

    display: grid;

    place-items: center;

    padding:
        0 18px;

    border-radius: 11px;

    font-size: 8px;

    transition:
        transform .3s ease;

}


.reservation-button:hover {

    transform:
        translateY(-3px);

}


.reservation-button.primary {

    background:
        var(--gold);

    color:
        #302617;

}


.reservation-button.secondary {

    border:
        1px solid
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.07);

    color:
        white;

    backdrop-filter:
        blur(10px);

}


/* =========================================================
   26. FOOTER
========================================================= */

.hall-footer {

    padding:
        75px 0 0;

    background:
        #272223;

    color:
        var(--white);

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-logo span {

    color:
        var(--gold-light);

    font-size: 22px;

}


.footer-logo strong {

    font-size: 14px;

}


.footer-brand p {

    max-width: 220px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.45);

    font-size: 8px;

    line-height: 2;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}


.footer-column h3 {

    margin-bottom: 8px;

    color:
        var(--gold-light);

    font-size: 10px;

}


.footer-column a,
.footer-column span {

    color:
        rgba(255,255,255,.50);

    font-size: 8px;

    transition:
        color .3s ease;

}


.footer-column a:hover {

    color:
        var(--gold-light);

}


.footer-social {

    display: flex;

    flex-direction: column;

    gap: 12px;

    direction: ltr;

}


.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.30);

    font-size: 7px;

}


.footer-bottom strong {

    color:
        var(--gold-light);

}


/* =========================================================
   27. TABLET
========================================================= */

@media (max-width: 1100px) {


    .container {

        width:
            calc(100% - 50px);

    }


    .hall-navigation {

        gap: 18px;

    }


    .header-reservation {

        min-width: 110px;

    }


    .about-grid {

        gap: 55px;

    }


    .about-image {

        height: 470px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .service-item:nth-child(2) {

        border-left: none;

    }


    .service-item:nth-child(1),
    .service-item:nth-child(2) {

        border-bottom:
            1px solid
            var(--border);

    }


    .footer-main {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

    }

}


/* =========================================================
   28. MOBILE
========================================================= */

@media (max-width: 768px) {


    :root {

        --header-height: 70px;

    }


    .container {

        width:
            calc(100% - 30px);

    }


    /* HEADER */

    .hall-header-inner {

        width:
            calc(100% - 30px);

    }


    .hall-navigation,
    .header-reservation {

        display: none;

    }


    .hall-menu-button {

        display: block;

    }


    /* HERO */

    .hall-hero {

        min-height: 650px;

        height:
            100svh;

    }


    .hero-image img {

        object-position:
            60% center;

    }


    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(25,20,20,.40),
                rgba(25,20,20,.30) 40%,
                rgba(25,20,20,.85)
            );

    }


    .hero-content {

        top: auto;

        right: 20px;

        bottom: 130px;

        left: 20px;

        width: auto;

        transform: none;

    }


    .hero-eyebrow {

        font-size: 5px;

        letter-spacing: 2px;

        line-height: 2;

    }


    .hero-content h1 {

        font-size:
            clamp(38px, 12vw, 60px);

        letter-spacing: -1.5px;

    }


    .hero-content p {

        max-width: 320px;

        margin-top: 12px;

        font-size: 8px;

        line-height: 2.1;

    }


    .hero-actions {

        margin-top: 18px;

    }


    .hero-button {

        min-width: 130px;

        height: 44px;

        font-size: 7px;

        border-radius: 10px;

    }


    .hero-bottom {

        right: 20px;

        bottom: 25px;

        left: 20px;

    }


    .hero-location {

        display: none;

    }


    .hero-scroll {

        right: 50%;

    }


    .hero-contact {

        font-size: 6px;

    }


    /* SECTIONS */

    .section {

        padding:
            75px 0;

    }


    .section-heading {

        margin-bottom: 40px;

    }


    .section-heading h2 {

        font-size:
            clamp(28px, 9vw, 40px);

    }


    /* ABOUT */

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .about-image {

        height: 390px;

        width: calc(100% - 15px);

    }


    .image-frame {

        top: 15px;

        right: -15px;

        bottom: -15px;

        left: 15px;

    }


    .about-content {

        max-width: none;

    }


    .about-content h3 {

        font-size: 27px;

    }


    .about-content p {

        font-size: 9px;

        line-height: 2.3;

    }


    /* STATS */

    .hall-stats {

        padding: 40px 0;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-item {

        padding: 20px 10px;

    }


    .stat-item:nth-child(2)::after {

        display: none;

    }


    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {

        border-bottom:
            1px solid
            var(--border-gold);

    }


    .stat-item strong {

        font-size: 31px;

    }


    /* HALLS */

    .halls-grid {

        grid-template-columns:
            1fr;

        gap: 20px;

    }


    .hall-card-image {

        height: 290px;

    }


    .hall-card-content {

        padding: 22px;

    }


    /* SERVICES */

    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-item {

        min-height: auto;

        padding: 30px 25px;

        border-left: none;

        border-bottom:
            1px solid
            var(--border);

    }


    .service-item:last-child {

        border-bottom: none;

    }


    /* PACKAGES */

    .packages-grid {

        grid-template-columns:
            1fr;

        gap: 15px;

    }


    .package-card {

        padding: 35px 25px;

    }


    .package-card.featured {

        order: -1;

    }


    /* GALLERY */

    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            200px
            200px
            200px;

        gap: 7px;

    }


    .gallery-large {

        grid-row:
            span 2;

    }


    /* RESERVATION */

    .reservation-section {

        min-height: 520px;

    }


    .reservation-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(45,29,32,.62),
                rgba(45,29,32,.90)
            );

    }


    .reservation-content h2 {

        font-size: 34px;

    }


    .reservation-content p {

        font-size: 8px;

        line-height: 2;

    }


    .reservation-actions {

        flex-direction: column;

        width: 100%;

    }


    .reservation-button {

        width: 100%;

    }


    /* FOOTER */

    .hall-footer {

        padding-top: 50px;

    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;

        padding-bottom: 40px;

    }


    .footer-brand {

        grid-column:
            span 2;

    }


    .footer-bottom {

        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: center;

        text-align: center;

        line-height: 2;

    }

}


/* =========================================================
   29. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {


    .hall-logo-text small {

        display: none;

    }


    .hall-logo-text strong {

        font-size: 11px;

    }


    .hall-logo-symbol {

        width: 38px;

        height: 38px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

        width: 160px;

    }


    .hero-button {

        width: 160px;

    }


    .hero-scroll {

        display: none;

    }


    .hero-contact {

        margin-right: auto;

    }


    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-template-rows:
            repeat(5, 190px);

    }


    .gallery-large {

        grid-row:
            span 1;

    }


    .footer-main {

        grid-template-columns:
            1fr;

    }


    .footer-brand {

        grid-column:
            auto;

    }


}


/* =========================================================
   30. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;

    }

}





/* =========================================================
   MOBILE IMAGE FIX
========================================================= */

@media (max-width: 768px) {

    /* تمام عکس‌های کارت تالار */
    .hall-card-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .hall-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f8e4e8;
    }


    /* عکس About */
    .about-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    /* گالری */
    .gallery-item {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f8e4e8;
    }

}





/* =========================================================
   CINEMATIC VIDEO - MOBILE FIX
========================================================= */

.cinematic-video,
.cinematic-video-section,
.video-section {
    width: 100%;
    overflow: hidden;
}


/* خود ویدیو */
.cinematic-video video,
.cinematic-video-section video,
.video-section video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}


/* موبایل */
@media (max-width: 768px) {

    .cinematic-video,
    .cinematic-video-section,
    .video-section {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .cinematic-video video,
    .cinematic-video-section video,
    .video-section video {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: contain !important;
    }

}


/* =========================================================
   HERO MOBILE - NO ZOOM
========================================================= */

@media (max-width: 768px) {

    .hall-hero {
        position: relative;
        height: 100svh !important;
        min-height: 650px;
        overflow: hidden;
        background: rgb(245, 244, 244);
    }

    .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        object-position: center center;
        transform: none !important;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-decoration {
        z-index: 2;
    }

    .hero-content {
        z-index: 5;
    }

    .hero-bottom {
        z-index: 5;
    }

}



/* =========================================================
   HALL TYPOGRAPHY - LARGER & PREMIUM
========================================================= */

body {
    font-size: 16px;
}


/* =========================
   HEADER
========================= */

.nav-link {
    font-size: 14px;
}

.header-reservation {
    font-size: 13px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu-title {
    font-size: 16px;
}

.mobile-navigation a {
    font-size: 15px;
}

.mobile-navigation .mobile-reservation {
    font-size: 14px;
}


/* =========================
   HERO
========================= */

.hero-eyebrow {
    font-size: 11px;
}

.hero-content p {
    font-size: 15px;
    line-height: 2.1;
}

.hero-button {
    font-size: 14px;
}

.hero-location {
    font-size: 12px;
}

.hero-contact {
    font-size: 12px;
}

.hero-contact strong {
    font-size: 13px;
}

.hero-scroll {
    font-size: 9px;
}


/* =========================
   SECTION TITLES
========================= */

.section-label {
    font-size: 11px;
}

.section-heading > p {
    font-size: 14px;
}

.section-number {
    font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about-small-title {
    font-size: 13px;
}

.about-content p {
    font-size: 15px;
    line-height: 2.3;
}

.text-link {
    font-size: 14px;
}


/* =========================
   STATISTICS
========================= */

.stat-item span {
    font-size: 13px;
}


/* =========================
   HALL CARDS
========================= */

.hall-card-content > span {
    font-size: 10px;
}

.hall-card-content h3 {
    font-size: 24px;
}

.hall-card-content p {
    font-size: 14px;
    line-height: 2.1;
}

.hall-card-meta {
    font-size: 12px;
}


/* =========================
   SERVICES
========================= */

.service-item h3 {
    font-size: 19px;
}

.service-item p {
    font-size: 14px;
    line-height: 2.2;
}


/* =========================
   PACKAGES
========================= */

.package-label {
    font-size: 10px;
}

.package-card h3 {
    font-size: 25px;
}

.package-card > p {
    font-size: 14px;
    line-height: 2.1;
}

.package-card li {
    font-size: 13px;
}

.package-card > a {
    font-size: 13px;
}


/* =========================
   RESERVATION
========================= */

.reservation-content p {
    font-size: 15px;
    line-height: 2.2;
}

.reservation-button {
    font-size: 14px;
}


/* =========================
   FOOTER
========================= */

.footer-column h3 {
    font-size: 14px;
}

.footer-column a,
.footer-column span {
    font-size: 13px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 2.1;
}

.footer-bottom {
    font-size: 11px;
}


/* =========================================================
   MOBILE TYPOGRAPHY
========================================================= */

@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    .hero-eyebrow {
        font-size: 9px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.35;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 2;
    }

    .hero-button {
        font-size: 13px;
    }

    .section-label {
        font-size: 10px;
    }

    .section-heading h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .section-heading > p {
        font-size: 13px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 2.2;
    }

    .hall-card-content h3 {
        font-size: 22px;
    }

    .hall-card-content p {
        font-size: 13px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 13px;
    }

    .package-card h3 {
        font-size: 23px;
    }

    .package-card > p {
        font-size: 13px;
    }

    .package-card li {
        font-size: 13px;
    }

    .reservation-content h2 {
        font-size: 35px;
    }

    .reservation-content p {
        font-size: 13px;
    }

    .reservation-button {
        font-size: 13px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column a,
    .footer-column span {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-content p {
        font-size: 12px;
    }

    .hero-button {
        font-size: 12px;
    }

    .about-content p,
    .hall-card-content p,
    .service-item p {
        font-size: 13px;
    }

}



/* =========================================================
   MOBILE LUXURY GALLERY
========================================================= */

@media (max-width:768px){


    .hall-gallery .gallery-grid {

        display:flex;

        flex-direction:column;

        gap:15px;

    }



    .hall-gallery .gallery-item {

        width:100%;

        height:260px;

        aspect-ratio:auto;

        overflow:hidden;

        border-radius:18px;

    }



    .hall-gallery .gallery-large {

        height:360px;

    }



    .hall-gallery .gallery-item img {

        width:100%;

        height:100%;

        object-fit:cover;

        object-position:center;

        transition:
        transform .7s ease;

    }



    .hall-gallery .gallery-item::after {

        background:
        linear-gradient(
            to top,
            rgba(41,37,37,.35),
            transparent 60%
        );

    }


}


/* =========================================================
   MOBILE HERO IMAGE PREMIUM FIX
========================================================= */

@media (max-width:768px){

    .hall-hero {
        height:100svh;
        min-height:650px;
    }


    .hero-image {
        position:absolute;
        inset:0;
        overflow:hidden;
    }


    .hero-image img {

        width:100%;
        height:100%;

        object-fit:cover !important;

        object-position:center center;

        transform:scale(1.05) !important;

        animation:none;

    }


    .hero-overlay {

        background:
        linear-gradient(
            180deg,
            rgba(20,15,15,.25),
            rgba(20,15,15,.75)
        );

    }

}


/* =========================================================
   MOBILE ABOUT IMAGE PREMIUM FIX
========================================================= */

@media (max-width:768px){

    .about-image {

        width:100%;

        height:360px;

        aspect-ratio:auto;

        overflow:hidden;

        border-radius:15px;

    }


    .about-image img {

        width:100%;

        height:100%;

        object-fit:cover !important;

        object-position:center center;

        border-radius:15px;

    }


    .image-frame {

        top:12px;

        right:-12px;

        bottom:-12px;

        left:12px;

    }

}