
/* =========================================
   RESTAURANT NAVBAR
   رنگ‌ها:
   سبز ارتشی / کله‌غازی
   خاکستری کله‌غازی
   طلایی
   سفید
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "payda_woff";
    src: url("PeydaWeb-Bold.woff") format("woff"),
         url("PeydaWeb-Bold.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "payda_woff", sans-serif;
}


:root {

    --primary: #263f38;
    --primary-dark: #1b302b;

    --teal-gray: #465c57;

    --gold: #c5a15a;
    --gold-light: #d8ba76;

    --white: #ffffff;

    --dark: #17211f;

}

body {

    direction: rtl;

    font-family:
        "Vazirmatn",
        "Tahoma",
        sans-serif;

}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    width: 100%;

    height: 82px;

    background: var(--white);

    border-bottom: 1px solid rgba(38, 63, 56, 0.12);

    position: sticky;

    top: 0;

    z-index: 1000;

}


.navbar-container {

    width: min(1400px, 92%);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================
   LOGO
========================================= */

.brand {

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 7px;

    white-space: nowrap;

    font-size: 24px;

    font-weight: 900;

}


.brand-main {

    color: var(--primary);

}


.brand-accent {

    color: var(--gold);

}


/* =========================================
   DESKTOP MENU
========================================= */

.desktop-menu {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 38px;

    flex: 1;

}


.nav-link {

    position: relative;

    color: var(--primary);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    padding: 10px 0;

    transition: 0.3s ease;

}


.nav-link:hover {

    color: var(--gold);

}


.nav-link::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: 0.3s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.nav-link.active {

    color: var(--gold);

}


/* =========================================
   ACTIONS
========================================= */

.navbar-actions {

    display: flex;

    align-items: center;

    gap: 15px;

}


/* =========================================
   RESERVATION BUTTON
========================================= */

.reservation-btn {

    text-decoration: none;

    background: var(--primary);

    color: var(--white);

    padding: 12px 24px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    border: 1px solid var(--primary);

    transition: 0.3s ease;

}


.reservation-btn:hover {

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-2px);

}


/* =========================================
   HAMBURGER
========================================= */

.menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    border: none;

    background: var(--primary);

    border-radius: 8px;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    width: 21px;

    height: 2px;

    background: var(--white);

    border-radius: 5px;

    transition: 0.3s ease;

}


/* =========================================
   OVERLAY
========================================= */

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s ease;

    z-index: 1090;

}


.menu-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {

    position: fixed;

    top: 0;

    right: 0;

    width: min(360px, 88%);

    height: 100vh;

    background: var(--white);

    z-index: 1100;

    transform: translateX(100%);

    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);

    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);

    overflow-y: auto;

}


.mobile-menu.active {

    transform: translateX(0);

}


/* =========================================
   MOBILE HEADER
========================================= */

.mobile-menu-header {

    height: 90px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: var(--primary);

}


.mobile-logo {

    display: flex;

    flex-direction: column;

    line-height: 1.3;

}


.mobile-logo span {

    color: var(--white);

    font-size: 17px;

    font-weight: 500;

}


.mobile-logo strong {

    color: var(--gold-light);

    font-size: 21px;

    font-weight: 900;

}


/* =========================================
   CLOSE BUTTON
========================================= */

.menu-close {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.25);

    background: transparent;

    color: var(--white);

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    transition: 0.3s ease;

}


.menu-close:hover {

    background: var(--gold);

    border-color: var(--gold);

}


/* =========================================
   MOBILE CONTENT
========================================= */

.mobile-menu-content {

    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.mobile-link {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 15px;

    border-radius: 8px;

    color: var(--primary);

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s ease;

}


.mobile-link span {

    width: 28px;

    text-align: center;

    color: var(--gold);

    font-size: 18px;

}


.mobile-link:hover,
.mobile-link.active {

    background: rgba(38, 63, 56, 0.08);

    color: var(--gold);

}


/* =========================================
   MOBILE RESERVATION
========================================= */

.mobile-reservation {

    margin-top: 20px;

    padding: 15px;

    text-align: center;

    border-radius: 8px;

    background: var(--primary);

    color: var(--white);

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;

}


.mobile-reservation:hover {

    background: var(--gold);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .navbar {

        height: 72px;

    }


    .desktop-menu,
    .reservation-btn {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .brand {

        font-size: 21px;

    }

}


@media (max-width: 450px) {

    .navbar-container {

        width: 90%;

    }


    .mobile-menu {

        width: 90%;

    }


    .mobile-menu-header {

        padding: 0 20px;

    }

}




/* =========================================
   HERO SECTION
   Restaurant / Cafe
========================================= */

.hero-section {
    width: 100%;
    padding: 70px 0;
    background: #f7f8f6;
    direction: rtl;
}

.hero-container {
    width: min(1400px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;

    align-items: center;
}


/* =========================================
   SLIDER
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 560px;

    overflow: hidden;
    border-radius: 22px;

    background: #263f38;

    box-shadow:
        0 20px 50px rgba(27, 48, 43, 0.18);
}

.slider-wrapper {
    width: 100%;
    height: 100%;

    position: relative;
}


/* =========================================
   SLIDES
========================================= */

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease,
        transform 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.hero-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20, 35, 31, 0.55),
            rgba(20, 35, 31, 0.05) 55%,
            rgba(20, 35, 31, 0.15)
        );

    pointer-events: none;
}

.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   SLIDER BUTTONS
========================================= */

.slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(38, 63, 56, 0.75);

    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.slider-btn:hover {
    background: #c5a15a;

    border-color: #c5a15a;

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* در RTL */
.slider-prev {
    right: 20px;
}

.slider-next {
    left: 20px;
}


/* =========================================
   SLIDER DOTS
========================================= */

.slider-dots {
    position: absolute;

    bottom: 22px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: 0.3s ease;
}

.slider-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #c5a15a;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
}


/* =========================================
   SMALL TITLE
========================================= */

.hero-small-title {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #c5a15a;

    font-size: 15px;

    font-weight: 700;
}

.hero-small-title::before {
    content: "";

    width: 32px;
    height: 2px;

    background: #c5a15a;
}


/* =========================================
   TITLE
========================================= */

.hero-title {
    margin: 0;

    color: #263f38;

    font-size: clamp(38px, 4vw, 64px);

    font-weight: 900;

    line-height: 1.35;

    letter-spacing: -1px;
}

.hero-title span {
    color: #c5a15a;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {
    max-width: 560px;

    margin-top: 24px;

    color: #5d6965;

    font-size: 17px;

    font-weight: 400;

    line-height: 2;

}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;
}

.hero-btn {
    min-width: 145px;

    padding: 14px 24px;

    border-radius: 8px;

    text-decoration: none;

    text-align: center;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;
}


/* دکمه اصلی */

.hero-btn-primary {
    background: #263f38;

    color: #ffffff;

    border: 1px solid #263f38;
}

.hero-btn-primary:hover {
    background: #c5a15a;

    border-color: #c5a15a;

    transform: translateY(-3px);
}


/* دکمه دوم */

.hero-btn-secondary {
    background: transparent;

    color: #263f38;

    border: 1px solid #263f38;
}

.hero-btn-secondary:hover {
    background: #263f38;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   HERO INFO
========================================= */

.hero-info {
    display: flex;

    align-items: center;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(38, 63, 56, 0.12);
}

.hero-info-item {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 95px;
}

.hero-info-item strong {
    color: #263f38;

    font-size: 22px;

    font-weight: 900;
}

.hero-info-item span {
    color: #7a8581;

    font-size: 12px;

    font-weight: 500;
}

.hero-info-divider {
    width: 1px;

    height: 35px;

    margin: 0 22px;

    background: rgba(38, 63, 56, 0.15);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .hero-container {
        gap: 40px;
    }

    .hero-slider {
        height: 480px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .hero-section {
        padding: 35px 0 55px;
    }

    .hero-container {

        width: 92%;

        display: flex;

        flex-direction: column;

        gap: 35px;

        align-items: stretch;
    }


    /* اسلایدر بالا */

    .hero-slider {

        width: 100%;

        height: 420px;

        border-radius: 18px;

        order: 1;
    }


    /* متن پایین */

    .hero-content {

        order: 2;

        align-items: center;

        text-align: center;
    }


    .hero-small-title {

        justify-content: center;

        font-size: 14px;
    }


    .hero-small-title::before {

        width: 25px;
    }


    .hero-title {

        font-size: clamp(32px, 9vw, 44px);

        line-height: 1.45;
    }


    .hero-description {

        max-width: 600px;

        font-size: 14px;

        line-height: 2;

        margin-top: 18px;
    }


    .hero-buttons {

        justify-content: center;

        width: 100%;

        margin-top: 25px;
    }


    .hero-btn {

        min-width: 135px;

        padding: 13px 18px;
    }


    .hero-info {

        justify-content: center;

        width: 100%;

        margin-top: 35px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-section {

        padding-top: 25px;

    }


    .hero-slider {

        height: 300px;

        border-radius: 15px;

    }


    .slider-btn {

        width: 38px;

        height: 38px;

        font-size: 26px;

    }


    .slider-prev {

        right: 12px;

    }


    .slider-next {

        left: 12px;

    }


    .slider-dots {

        bottom: 14px;

    }


    .hero-small-title {

        font-size: 12px;

    }


    .hero-title {

        font-size: 30px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

        gap: 10px;

    }


    .hero-btn {

        width: 100%;

        max-width: 280px;

    }


    .hero-info {

        gap: 8px;

    }


    .hero-info-item {

        min-width: 70px;

    }


    .hero-info-item strong {

        font-size: 18px;

    }


    .hero-info-item span {

        font-size: 10px;

    }


    .hero-info-divider {

        margin: 0 8px;

    }

}


 
/* =========================================
   SIGNATURE EXPERIENCE
   Modern Restaurant / Cafe 2026
========================================= */

.signature-section {
    width: 100%;
    padding: 120px 0;

    background: #ffffff;

    direction: rtl;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.signature-container {
    width: min(1380px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 90px;

    align-items: center;
}


/* =========================================
   VISUAL
========================================= */

.signature-visual {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   IMAGE
========================================= */

.signature-image-wrapper {
    position: relative;

    width: 86%;

    height: 590px;

    overflow: hidden;

    border-radius: 12px;

    background: #263f38;

    box-shadow:
        0 30px 70px rgba(27, 48, 43, 0.18);
}


.signature-image-wrapper::before {
    content: "";

    position: absolute;

    top: -15px;
    left: -15px;

    width: 90px;
    height: 90px;

    border-top: 2px solid #c5a15a;
    border-left: 2px solid #c5a15a;

    z-index: 4;

    pointer-events: none;
}


.signature-image-wrapper::after {
    content: "";

    position: absolute;

    right: -15px;
    bottom: -15px;

    width: 90px;
    height: 90px;

    border-right: 2px solid #c5a15a;
    border-bottom: 2px solid #c5a15a;

    z-index: 4;

    pointer-events: none;
}


.signature-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}


.signature-image-wrapper:hover .signature-image {
    transform: scale(1.05);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.signature-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(38, 63, 56, 0.12),
            transparent 60%
        );

    pointer-events: none;

    z-index: 2;
}


/* =========================================
   SIGNATURE BADGE
========================================= */

.signature-badge {
    position: absolute;

    right: 0;

    bottom: 80px;

    width: 155px;
    height: 155px;

    border-radius: 50%;

    background: #263f38;

    border: 1px solid rgba(197, 161, 90, 0.6);

    color: #ffffff;

    z-index: 10;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    box-shadow:
        0 15px 40px rgba(27, 48, 43, 0.25);

    transform: rotate(-8deg);

    transition: 0.5s ease;
}


.signature-badge:hover {
    transform:
        rotate(0deg)
        scale(1.05);
}


.badge-number {
    color: #c5a15a;

    font-family: Georgia, serif;

    font-size: 34px;

    font-weight: 700;
}


.badge-line {
    width: 35px;

    height: 1px;

    background: #c5a15a;
}


.badge-text {
    font-size: 10px;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.8);
}


/* =========================================
   CORNER TEXT
========================================= */

.signature-corner-text {
    position: absolute;

    left: 4%;

    top: 40px;

    writing-mode: vertical-rl;

    color: #263f38;

    font-family: Georgia, serif;

    font-size: 11px;

    letter-spacing: 4px;

    opacity: 0.65;
}


/* =========================================
   CONTENT
========================================= */

.signature-content {
    max-width: 600px;

    padding: 20px 0;
}


/* =========================================
   EYEBROW
========================================= */

.signature-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #c5a15a;

    font-size: 14px;

    font-weight: 700;
}


.signature-eyebrow::before {
    content: "";

    width: 35px;

    height: 2px;

    background: #c5a15a;
}


/* =========================================
   TITLE
========================================= */

.signature-title {
    margin: 0;

    color: #263f38;

    font-size: clamp(42px, 4.2vw, 68px);

    line-height: 1.35;

    font-weight: 900;

    letter-spacing: -2px;
}


.signature-title span {
    color: #c5a15a;
}


/* =========================================
   DESCRIPTION
========================================= */

.signature-description {
    max-width: 560px;

    margin-top: 28px;

    color: #66736e;

    font-size: 16px;

    line-height: 2.2;

    font-weight: 400;
}


/* =========================================
   STATS
========================================= */

.signature-stats {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 42px;

    padding: 25px 0;

    border-top: 1px solid rgba(38, 63, 56, 0.12);

    border-bottom: 1px solid rgba(38, 63, 56, 0.12);
}


.signature-stat {
    min-width: 120px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding-left: 30px;

    margin-left: 30px;

    border-left: 1px solid rgba(38, 63, 56, 0.12);
}


.signature-stat:last-child {
    padding-left: 0;

    margin-left: 0;

    border-left: none;
}


.signature-stat strong {
    color: #263f38;

    font-family: Georgia, serif;

    font-size: 27px;

    font-weight: 700;
}


.signature-stat span {
    color: #7a8581;

    font-size: 12px;

    font-weight: 500;
}


/* =========================================
   BUTTON
========================================= */

.signature-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;

    padding: 15px 24px;

    background: #263f38;

    border: 1px solid #263f38;

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: 0.35s ease;
}


.signature-button span {
    color: #c5a15a;

    font-size: 20px;

    transition: 0.35s ease;
}


.signature-button:hover {
    background: #c5a15a;

    border-color: #c5a15a;

    transform: translateY(-3px);
}


.signature-button:hover span {
    color: #ffffff;

    transform: translateX(-5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .signature-section {
        padding: 90px 0;
    }


    .signature-container {
        gap: 50px;
    }


    .signature-visual {
        min-height: 500px;
    }


    .signature-image-wrapper {
        height: 500px;
    }


    .signature-badge {
        width: 125px;
        height: 125px;

        bottom: 50px;
    }


    .badge-number {
        font-size: 28px;
    }


    .signature-title {
        font-size: 46px;
    }


    .signature-description {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .signature-section {
        padding: 75px 0;
    }


    .signature-container {

        width: 92%;

        display: flex;

        flex-direction: column;

        gap: 45px;

        align-items: stretch;
    }


    /* تصویر بالا */

    .signature-visual {

        order: 1;

        min-height: auto;

        width: 100%;
    }


    .signature-image-wrapper {

        width: 88%;

        height: 430px;

        margin: 0 auto;

        border-radius: 14px;
    }


    .signature-badge {

        right: 2%;

        bottom: 40px;

        width: 115px;

        height: 115px;
    }


    .badge-number {
        font-size: 25px;
    }


    .signature-corner-text {

        left: 0;

        top: 25px;

        font-size: 9px;
    }


    /* متن پایین */

    .signature-content {

        order: 2;

        max-width: 100%;

        text-align: center;

        padding: 0;
    }


    .signature-eyebrow {

        justify-content: center;

        font-size: 13px;
    }


    .signature-eyebrow::before {

        width: 25px;
    }


    .signature-title {

        font-size: clamp(35px, 10vw, 48px);

        letter-spacing: -1px;
    }


    .signature-description {

        max-width: 650px;

        margin: 22px auto 0;

        font-size: 14px;

        line-height: 2.1;
    }


    .signature-stats {

        justify-content: center;

        margin-top: 32px;
    }


    .signature-stat {

        min-width: auto;

        padding-left: 20px;

        margin-left: 20px;
    }


    .signature-stat strong {

        font-size: 22px;
    }


    .signature-stat span {

        font-size: 10px;
    }


    .signature-button {

        margin-top: 30px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .signature-section {

        padding: 55px 0;
    }


    .signature-image-wrapper {

        width: 90%;

        height: 340px;
    }


    .signature-badge {

        width: 95px;

        height: 95px;

        right: 0;

        bottom: 25px;
    }


    .badge-number {

        font-size: 21px;
    }


    .badge-text {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .signature-title {

        font-size: 32px;
    }


    .signature-description {

        font-size: 13px;
    }


    .signature-stats {

        padding: 20px 0;
    }


    .signature-stat {

        padding-left: 12px;

        margin-left: 12px;
    }


    .signature-stat strong {

        font-size: 18px;
    }


    .signature-stat span {

        font-size: 9px;
    }

}



/* =========================================
   RESTAURANT ATMOSPHERE
   Modern Restaurant / Cafe 2026
========================================= */

.atmosphere-section {
    width: 100%;

    padding: 110px 0;

    background: #263f38;

    direction: rtl;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.atmosphere-container {
    width: 100%;

    margin: 0 auto;
}


/* =========================================
   MEDIA
========================================= */

.atmosphere-media {
    position: relative;

    width: 100%;

    height: min(760px, 75vh);

    min-height: 560px;

    overflow: hidden;

    background: #1b302b;
}


/* =========================================
   IMAGE
========================================= */

.atmosphere-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transform: scale(1.04);

    transition:
        transform 1.5s cubic-bezier(.2,.7,.2,1);
}


/* =========================================
   OVERLAY
========================================= */

.atmosphere-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 32, 29, 0.78) 0%,
            rgba(20, 32, 29, 0.45) 40%,
            rgba(20, 32, 29, 0.18) 75%,
            rgba(20, 32, 29, 0.28) 100%
        );

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.atmosphere-content {
    position: absolute;

    z-index: 5;

    top: 50%;
    right: 9%;

    transform: translateY(-50%);

    width: min(560px, 45%);

    color: #ffffff;
}


/* =========================================
   EYEBROW
========================================= */

.atmosphere-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #c5a15a;

    font-size: 14px;

    font-weight: 700;
}


.atmosphere-eyebrow::before {
    content: "";

    width: 38px;

    height: 2px;

    background: #c5a15a;
}


/* =========================================
   TITLE
========================================= */

.atmosphere-title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 5vw, 76px);

    font-weight: 900;

    line-height: 1.35;

    letter-spacing: -2px;
}


.atmosphere-title span {
    color: #c5a15a;
}


/* =========================================
   DESCRIPTION
========================================= */

.atmosphere-description {
    max-width: 500px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;

    line-height: 2.2;
}


/* =========================================
   BUTTON
========================================= */

.atmosphere-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 32px;

    padding: 15px 25px;

    border: 1px solid #c5a15a;

    border-radius: 7px;

    background: transparent;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: 0.35s ease;
}


.atmosphere-button span {
    color: #c5a15a;

    font-size: 20px;

    transition: 0.35s ease;
}


.atmosphere-button:hover {
    background: #c5a15a;

    color: #ffffff;

    transform: translateY(-3px);
}


.atmosphere-button:hover span {
    color: #ffffff;

    transform: translateX(-5px);
}


/* =========================================
   META
========================================= */

.atmosphere-meta {
    position: absolute;

    z-index: 6;

    left: 8%;

    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 14px;

    color: rgba(255, 255, 255, 0.7);

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 4px;
}


.atmosphere-meta i {
    width: 30px;

    height: 1px;

    background: #c5a15a;
}


/* =========================================
   NUMBER
========================================= */

.atmosphere-number {
    position: absolute;

    z-index: 6;

    left: 8%;

    top: 45px;

    color: #c5a15a;

    font-family: Georgia, serif;

    font-size: 18px;

    letter-spacing: 3px;
}


/* =========================================
   DECORATIVE LINE
========================================= */

.atmosphere-line {
    position: absolute;

    z-index: 6;

    right: 0;

    bottom: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c5a15a,
            transparent
        );

    opacity: 0.7;
}


/* =========================================
   HOVER EFFECT
========================================= */

.atmosphere-media:hover .atmosphere-image {
    transform: scale(1.08);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .atmosphere-section {
        padding: 80px 0;
    }


    .atmosphere-media {
        height: 620px;

        min-height: 500px;
    }


    .atmosphere-content {
        right: 7%;

        width: 55%;
    }


    .atmosphere-title {
        font-size: 52px;
    }


    .atmosphere-description {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .atmosphere-section {
        padding: 55px 0;
    }


    .atmosphere-media {

        height: 650px;

        min-height: 0;

        border-radius: 0;
    }


    /* Overlay موبایل */

    .atmosphere-overlay {

        background:
            linear-gradient(
                to top,
                rgba(20, 32, 29, 0.92) 0%,
                rgba(20, 32, 29, 0.55) 48%,
                rgba(20, 32, 29, 0.15) 100%
            );
    }


    .atmosphere-content {

        top: auto;

        right: 0;

        bottom: 80px;

        transform: none;

        width: 100%;

        padding: 0 8%;

        text-align: center;
    }


    .atmosphere-eyebrow {

        justify-content: center;

        font-size: 13px;
    }


    .atmosphere-eyebrow::before {

        width: 25px;
    }


    .atmosphere-title {

        font-size: clamp(36px, 10vw, 50px);

        line-height: 1.4;

        letter-spacing: -1px;
    }


    .atmosphere-description {

        max-width: 600px;

        margin: 18px auto 0;

        font-size: 13px;

        line-height: 2;
    }


    .atmosphere-button {

        margin-top: 25px;

        padding: 13px 22px;
    }


    .atmosphere-meta {

        left: 50%;

        bottom: 25px;

        transform: translateX(-50%);

        white-space: nowrap;
    }


    .atmosphere-number {

        top: 25px;

        left: 7%;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .atmosphere-section {
        padding: 40px 0;
    }


    .atmosphere-media {

        height: 560px;
    }


    .atmosphere-content {

        bottom: 70px;

        padding: 0 6%;
    }


    .atmosphere-title {

        font-size: 31px;
    }


    .atmosphere-description {

        font-size: 12px;

        line-height: 1.9;
    }


    .atmosphere-button {

        font-size: 12px;

        padding: 12px 19px;
    }


    .atmosphere-meta {

        font-size: 8px;

        letter-spacing: 3px;

        bottom: 20px;
    }

}





/* =========================================
   3D COFFEE EXPERIENCE
   Restaurant / Cafe 2026
========================================= */

.coffee-experience {
    position: relative;

    width: 100%;
    min-height: 900px;

    padding: 120px 6%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 65% 50%,
            rgba(176, 130, 44, 0.16),
            transparent 28%
        ),
        #101d1a;

    color: #ffffff;

    direction: rtl;

    perspective: 1400px;
}


/* =========================================
   GLOW
========================================= */

.coffee-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(176, 130, 44, 0.08);

    filter: blur(80px);

    pointer-events: none;
}

.coffee-glow-1 {
    top: 15%;
    left: 45%;
}

.coffee-glow-2 {
    bottom: -180px;
    right: -100px;

    width: 500px;
    height: 500px;

    background: rgba(38, 63, 56, 0.5);
}


/* =========================================
   MAIN SCENE
========================================= */

.coffee-scene {
    position: relative;

    z-index: 5;

    width: min(1450px, 100%);

    min-height: 650px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.4fr 0.25fr;

    align-items: center;

    gap: 40px;
}


/* =========================================
   INFORMATION
========================================= */

.coffee-info {
    position: relative;

    z-index: 20;

    max-width: 470px;

    transform: translateZ(80px);
}

.coffee-label {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: #b0822c;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;
}

.coffee-label::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #b0822c;
}


.coffee-title {
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.35;

    font-weight: 900;

    letter-spacing: -2px;
}

.coffee-title span {
    color: #b0822c;
}


.coffee-description {
    max-width: 430px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;

    line-height: 2.2;
}


/* =========================================
   DETAILS
========================================= */

.coffee-details {
    display: flex;

    gap: 0;

    margin-top: 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.coffee-detail {
    min-width: 105px;

    padding: 20px 20px 20px 25px;

    border-left: 1px solid rgba(255, 255, 255, 0.12);

    display: flex;

    flex-direction: column;

    gap: 6px;
}

.coffee-detail:last-child {
    border-left: 0;
}

.coffee-detail strong {
    color: #ffffff;

    font-size: 22px;

    font-family: Georgia, serif;
}

.coffee-detail span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;
}


/* =========================================
   3D STAGE
========================================= */

.coffee-stage {
    position: relative;

    width: 100%;

    height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform-style: preserve-3d;

    transform: rotateX(4deg);
}


/* =========================================
   RINGS
========================================= */

.coffee-ring {
    position: absolute;

    border: 1px solid rgba(176, 130, 44, 0.22);

    border-radius: 50%;

    transform-style: preserve-3d;

    pointer-events: none;
}

.ring-1 {
    width: 520px;
    height: 520px;

    transform:
        rotateX(72deg)
        rotateZ(-15deg);
}

.ring-2 {
    width: 390px;
    height: 390px;

    border-color: rgba(255, 255, 255, 0.08);

    transform:
        rotateX(72deg)
        rotateZ(30deg);
}

.ring-3 {
    width: 280px;
    height: 280px;

    border-color: rgba(176, 130, 44, 0.35);

    transform:
        rotateX(72deg)
        rotateZ(70deg);
}


/* =========================================
   CUP
========================================= */

.coffee-cup {
    position: relative;

    width: 260px;
    height: 250px;

    transform-style: preserve-3d;

    transform:
        translateZ(100px)
        rotateX(-4deg);

    z-index: 10;
}


/* =========================================
   CUP BODY
========================================= */

.cup-body {
    position: absolute;

    left: 50%;
    top: 45px;

    width: 210px;
    height: 175px;

    transform: translateX(-50%);

    border-radius:
        20px
        20px
        75px
        75px;

    background:
        linear-gradient(
            100deg,
            #d8d8d5,
            #ffffff 35%,
            #b9bbb8 75%,
            #eeeeec
        );

    box-shadow:
        inset -20px -10px 30px rgba(0, 0, 0, 0.12),
        inset 15px 10px 25px rgba(255, 255, 255, 0.6),
        0 35px 50px rgba(0, 0, 0, 0.35);

    transform-style: preserve-3d;
}


/* =========================================
   COFFEE LIQUID
========================================= */

.coffee-liquid {
    position: absolute;

    top: -13px;
    left: 50%;

    width: 195px;
    height: 50px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            #8b5a2b 0%,
            #4a2b17 55%,
            #21130b 100%
        );

    box-shadow:
        inset 0 5px 8px rgba(255, 255, 255, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.3);
}


/* =========================================
   COFFEE HIGHLIGHT
========================================= */

.coffee-highlight {
    position: absolute;

    top: -4px;
    left: 48px;

    width: 65px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255, 220, 160, 0.25);

    filter: blur(3px);
}


/* =========================================
   CUP HANDLE
========================================= */

.cup-handle {
    position: absolute;

    top: 70px;
    right: 5px;

    width: 75px;
    height: 100px;

    border: 20px solid #d0d1cf;

    border-left: 0;

    border-radius:
        0
        55px
        55px
        0;

    transform: translateZ(-20px);

    box-shadow:
        inset -5px 0 10px rgba(0, 0, 0, 0.12);
}


/* =========================================
   CUP SHADOW
========================================= */

.cup-shadow {
    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 300px;
    height: 55px;

    transform:
        translateX(-50%)
        rotateX(70deg)
        translateZ(-40px);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    filter: blur(20px);
}


/* =========================================
   STEAM
========================================= */

.coffee-steam {
    position: absolute;

    top: 0;

    width: 8px;
    height: 150px;

    border-radius: 50%;

    border-left: 3px solid rgba(255, 255, 255, 0.22);

    filter: blur(3px);

    opacity: 0;

    animation:
        steamMove 3.5s ease-in-out infinite;
}

.steam-1 {
    left: 46%;

    animation-delay: 0s;
}

.steam-2 {
    left: 52%;

    height: 180px;

    animation-delay: 1.2s;
}

.steam-3 {
    left: 58%;

    height: 130px;

    animation-delay: 2s;
}


@keyframes steamMove {

    0% {
        opacity: 0;

        transform:
            translateY(35px)
            translateX(0)
            scale(0.8)
            rotate(0deg);
    }

    30% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.25;
    }

    100% {
        opacity: 0;

        transform:
            translateY(-70px)
            translateX(25px)
            scale(1.5)
            rotate(12deg);
    }
}


/* =========================================
   STAGE BEANS
========================================= */

.stage-bean {
    position: absolute;

    width: 24px;
    height: 34px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at 35% 30%,
            #8a5a32,
            #4a2815 55%,
            #211109 100%
        );

    box-shadow:
        4px 8px 12px rgba(0, 0, 0, 0.35);

    transform-style: preserve-3d;

    z-index: 15;

    animation:
        beanFloat 4s ease-in-out infinite;
}


/* Coffee Bean Center Line */

.stage-bean::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 4px;

    width: 2px;
    height: 26px;

    transform:
        translateX(-50%)
        rotate(10deg);

    border-radius: 50%;

    background: rgba(20, 10, 5, 0.65);
}


.stage-bean-1 {
    top: 24%;

    left: 20%;

    transform: rotate(25deg);

    animation-delay: 0s;
}

.stage-bean-2 {
    top: 17%;

    right: 19%;

    transform: rotate(-35deg) scale(0.8);

    animation-delay: 0.7s;
}

.stage-bean-3 {
    top: 70%;

    left: 15%;

    transform: rotate(45deg) scale(0.75);

    animation-delay: 1.2s;
}

.stage-bean-4 {
    top: 75%;

    right: 20%;

    transform: rotate(-20deg) scale(0.9);

    animation-delay: 1.8s;
}

.stage-bean-5 {
    top: 34%;

    left: 8%;

    transform: rotate(70deg) scale(0.65);

    animation-delay: 2.4s;
}

.stage-bean-6 {
    top: 55%;

    right: 10%;

    transform: rotate(-50deg) scale(0.7);

    animation-delay: 3s;
}


@keyframes beanFloat {

    0%,
    100% {
        margin-top: 0;

        filter: brightness(1);
    }

    50% {
        margin-top: -18px;

        filter: brightness(1.15);
    }
}


/* =========================================
   FLOATING BEANS BACKGROUND
========================================= */

.coffee-beans {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;
}

.coffee-bean {
    position: absolute;

    display: block;

    width: 15px;
    height: 23px;

    border-radius: 50%;

    color: transparent;

    background:
        radial-gradient(
            ellipse at 35% 30%,
            #8a5a32,
            #452615 60%,
            #1c0d07
        );

    opacity: 0.55;

    box-shadow:
        4px 7px 12px rgba(0, 0, 0, 0.25);

    animation:
        backgroundBeanFloat 7s ease-in-out infinite;
}

.coffee-bean::after {
    content: "";

    position: absolute;

    top: 3px;
    left: 50%;

    width: 2px;
    height: 17px;

    transform: translateX(-50%) rotate(8deg);

    background: rgba(20, 10, 5, 0.7);

    border-radius: 50%;
}


.bean-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bean-2 {
    top: 35%;
    left: 4%;
    animation-delay: 1s;
}

.bean-3 {
    top: 70%;
    left: 8%;
    animation-delay: 2s;
}

.bean-4 {
    top: 20%;
    right: 8%;
    animation-delay: 3s;
}

.bean-5 {
    top: 45%;
    right: 5%;
    animation-delay: 4s;
}

.bean-6 {
    bottom: 15%;
    right: 12%;
    animation-delay: 5s;
}

.bean-7 {
    bottom: 8%;
    left: 30%;
    animation-delay: 1.5s;
}

.bean-8 {
    top: 10%;
    left: 40%;
    animation-delay: 2.5s;
}

.bean-9 {
    bottom: 25%;
    right: 35%;
    animation-delay: 3.5s;
}

.bean-10 {
    top: 60%;
    left: 30%;
    animation-delay: 4.5s;
}


@keyframes backgroundBeanFloat {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0deg);
    }

    50% {
        transform:
            translate3d(20px, -35px, 50px)
            rotate(35deg);
    }
}


/* =========================================
   RIGHT SIDE
========================================= */

.coffee-side {
    height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.5);

    transform: rotate(90deg);
}

.coffee-side-number {
    color: #b0822c;

    font-family: Georgia, serif;

    font-size: 24px;
}

.coffee-side-line {
    width: 45px;
    height: 1px;

    background: #b0822c;
}

.coffee-side span {
    font-size: 9px;

    letter-spacing: 5px;
}

.coffee-side strong {
    color: #ffffff;

    font-size: 11px;

    letter-spacing: 4px;
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.coffee-scroll {
    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;

    letter-spacing: 4px;
}

.coffee-scroll-line {
    width: 1px;

    height: 45px;

    background:
        linear-gradient(
            to bottom,
            #b0822c,
            transparent
        );

    animation:
        scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.35;

        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;

        transform: scaleY(1);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .coffee-experience {
        padding: 90px 5%;
    }

    .coffee-scene {
        grid-template-columns: 0.8fr 1.2fr;

        gap: 20px;
    }

    .coffee-side {
        display: none;
    }

    .coffee-stage {
        height: 580px;
    }

    .ring-1 {
        width: 420px;
        height: 420px;
    }

    .ring-2 {
        width: 320px;
        height: 320px;
    }

    .ring-3 {
        width: 230px;
        height: 230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .coffee-experience {
        min-height: 1050px;

        padding: 80px 6% 120px;

        background:
            radial-gradient(
                circle at 50% 55%,
                rgba(176, 130, 44, 0.18),
                transparent 35%
            ),
            #101d1a;
    }


    .coffee-scene {
        display: flex;

        flex-direction: column;

        gap: 20px;

        min-height: auto;
    }


    .coffee-info {
        order: 1;

        width: 100%;

        max-width: 650px;

        text-align: center;

        transform: none;
    }


    .coffee-label {
        justify-content: center;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .coffee-label::before {
        width: 22px;
    }


    .coffee-title {
        font-size: clamp(36px, 10vw, 50px);

        letter-spacing: -1px;
    }


    .coffee-description {
        margin: 20px auto 0;

        font-size: 13px;

        line-height: 2;
    }


    .coffee-details {
        justify-content: center;

        margin-top: 28px;
    }


    .coffee-detail {
        min-width: 90px;

        padding: 14px 12px;
    }


    .coffee-detail strong {
        font-size: 18px;
    }


    .coffee-detail span {
        font-size: 9px;
    }


    .coffee-stage {
        order: 2;

        width: 100%;

        height: 510px;

        transform: none;
    }


    .coffee-cup {
        transform:
            translateZ(50px)
            scale(0.82);
    }


    .ring-1 {
        width: 350px;
        height: 350px;
    }


    .ring-2 {
        width: 270px;
        height: 270px;
    }


    .ring-3 {
        width: 190px;
        height: 190px;
    }


    .stage-bean-5,
    .stage-bean-6 {
        display: none;
    }


    .coffee-scroll {
        bottom: 25px;

        font-size: 7px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .coffee-experience {
        min-height: 930px;

        padding-top: 65px;
    }


    .coffee-stage {
        height: 420px;
    }


    .coffee-cup {
        transform:
            translateZ(30px)
            scale(0.68);
    }


    .ring-1 {
        width: 280px;
        height: 280px;
    }


    .ring-2 {
        width: 215px;
        height: 215px;
    }


    .ring-3 {
        width: 155px;
        height: 155px;
    }


    .coffee-details {
        margin-top: 22px;
    }


    .coffee-detail {
        min-width: 78px;

        padding: 12px 8px;
    }


    .coffee-detail strong {
        font-size: 16px;
    }


    .coffee-detail span {
        font-size: 8px;
    }


    .coffee-bean {
        width: 11px;
        height: 18px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .coffee-steam,
    .stage-bean,
    .coffee-bean,
    .coffee-scroll-line {

        animation: none !important;

    }

}




/* =========================================
   NIGHT MODE TRANSITION
   Restaurant / Cafe 2026
========================================= */

.night-transition {
    position: relative;

    width: 100%;

    min-height: 950px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #b7c7c3 0%,
            #7c938d 35%,
            #354c45 65%,
            #101b19 100%
        );

    color: #ffffff;

    direction: rtl;

    isolation: isolate;
}


/* =========================================
   SKY
========================================= */

.night-sky {
    position: absolute;

    inset: 0;

    z-index: 1;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #b8c8c4 0%,
            #879b95 38%,
            #465e56 67%,
            #16231f 100%
        );

    transition:
        background 1.2s ease;
}


/* =========================================
   SUN
========================================= */

.night-sun {
    position: absolute;

    width: 150px;
    height: 150px;

    top: 18%;
    left: 18%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #fff5cf 0%,
            #e7c77b 45%,
            #b0822c 100%
        );

    box-shadow:
        0 0 70px rgba(255, 214, 120, 0.65),
        0 0 150px rgba(176, 130, 44, 0.25);

    transition:
        transform 1.2s ease,
        opacity 1.2s ease;
}


/* =========================================
   MOON
========================================= */

.night-moon {
    position: absolute;

    width: 105px;
    height: 105px;

    top: 14%;
    right: 17%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #fffdf0,
            #e5dfc7 65%,
            #b7af91 100%
        );

    box-shadow:
        0 0 45px rgba(255, 245, 190, 0.35),
        0 0 100px rgba(255, 255, 220, 0.12);

    opacity: 0;

    transform:
        translateY(80px)
        scale(0.7);

    transition:
        opacity 1.3s ease,
        transform 1.3s cubic-bezier(.2,.7,.2,1);
}


.moon-shadow {
    position: absolute;

    width: 100%;
    height: 100%;

    top: -12px;
    left: -22px;

    border-radius: 50%;

    background: #182622;
}


/* =========================================
   STARS
========================================= */

.night-stars {
    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity 1.5s ease;
}


.star {
    position: absolute;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.9);

    animation:
        starBlink 3s ease-in-out infinite;
}


.star-1 {
    top: 12%;
    left: 35%;
}

.star-2 {
    top: 20%;
    left: 48%;

    animation-delay: .5s;
}

.star-3 {
    top: 9%;
    right: 38%;

    animation-delay: 1s;
}

.star-4 {
    top: 30%;
    right: 30%;

    animation-delay: 1.5s;
}

.star-5 {
    top: 16%;
    right: 45%;

    animation-delay: 2s;
}

.star-6 {
    top: 27%;
    left: 27%;

    animation-delay: .8s;
}

.star-7 {
    top: 7%;
    right: 25%;

    animation-delay: 1.8s;
}

.star-8 {
    top: 34%;
    left: 42%;

    animation-delay: 2.3s;
}

.star-9 {
    top: 18%;
    left: 62%;

    animation-delay: 1.2s;
}

.star-10 {
    top: 25%;
    right: 12%;

    animation-delay: 2.7s;
}

.star-11 {
    top: 11%;
    left: 75%;

    animation-delay: 1.7s;
}

.star-12 {
    top: 37%;
    right: 50%;

    animation-delay: 3s;
}


@keyframes starBlink {

    0%,
    100% {
        opacity: .25;

        transform: scale(.7);
    }

    50% {
        opacity: 1;

        transform: scale(1.4);
    }
}


/* =========================================
   AMBIENT
========================================= */

.night-ambient {
    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        radial-gradient(
            circle at 50% 70%,
            rgba(176, 130, 44, 0.18),
            transparent 35%
        );

    opacity: 0;

    transition: opacity 1.5s ease;

    pointer-events: none;
}


/* =========================================
   RESTAURANT
========================================= */

.night-restaurant {
    position: absolute;

    z-index: 8;

    left: 50%;

    bottom: 100px;

    width: min(1000px, 85%);

    height: 430px;

    transform: translateX(-50%);

    perspective: 1000px;
}


/* =========================================
   BUILDING
========================================= */

.restaurant-building {
    position: absolute;

    left: 50%;
    bottom: 0;

    width: 760px;
    height: 360px;

    transform:
        translateX(-50%)
        perspective(900px)
        rotateY(-2deg);

    background:
        linear-gradient(
            100deg,
            #1b2925,
            #2b3d37 50%,
            #18241f
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 -20px 80px rgba(0, 0, 0, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.4);
}


/* =========================================
   ROOF
========================================= */

.restaurant-roof {
    position: absolute;

    left: -25px;
    top: -18px;

    width: calc(100% + 50px);

    height: 25px;

    background:
        linear-gradient(
            90deg,
            #111b18,
            #3c4b45,
            #111b18
        );

    box-shadow:
        0 8px 15px rgba(0, 0, 0, 0.4);
}


/* =========================================
   SIGN
========================================= */

.restaurant-sign {
    position: absolute;

    top: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    color: #b0822c;

    letter-spacing: 5px;
}


.restaurant-sign span {
    font-size: 10px;

    color: rgba(255, 255, 255, 0.5);
}


.restaurant-sign strong {
    font-family: Georgia, serif;

    font-size: 25px;

    text-shadow:
        0 0 15px rgba(176, 130, 44, 0.55);
}


/* =========================================
   WINDOWS
========================================= */

.restaurant-windows {
    position: absolute;

    left: 50%;

    top: 95px;

    transform: translateX(-50%);

    width: 650px;

    display: flex;

    justify-content: center;

    gap: 18px;
}


.restaurant-window {
    position: relative;

    width: 135px;
    height: 175px;

    border: 6px solid #111b18;

    background:
        linear-gradient(
            145deg,
            #273a34,
            #101a17
        );

    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.4);
}


.window-light {
    position: absolute;

    inset: 8px;

    background:
        radial-gradient(
            circle at 50% 65%,
            rgba(176, 130, 44, 0.95),
            rgba(176, 130, 44, 0.25) 45%,
            rgba(176, 130, 44, 0.03) 80%
        );

    opacity: 0;

    filter: blur(1px);

    transition:
        opacity 1s ease,
        box-shadow 1s ease;
}


/* =========================================
   DOOR
========================================= */

.restaurant-door {
    position: absolute;

    left: 50%;
    bottom: 0;

    width: 110px;
    height: 215px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #0d1512,
            #25342e,
            #0d1512
        );

    border:
        5px solid #111b18;
}


.door-light {
    position: absolute;

    inset: 10px;

    background:
        radial-gradient(
            ellipse at center,
            rgba(176, 130, 44, 0.65),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 1s ease;
}


.door-handle {
    position: absolute;

    right: 15px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #b0822c;

    box-shadow:
        0 0 10px rgba(176, 130, 44, 0.7);
}


/* =========================================
   EXTERIOR LAMPS
========================================= */

.restaurant-lamp {
    position: absolute;

    top: 85px;

    width: 35px;
    height: 60px;
}


.lamp-1 {
    left: 65px;
}


.lamp-2 {
    right: 65px;
}


.lamp-3 {
    left: 50%;

    transform: translateX(-50%);

    top: 55px;
}


.restaurant-lamp::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 18px;
    height: 20px;

    transform: translateX(-50%);

    border-radius:
        50%
        50%
        8px
        8px;

    background: #111b18;

    border: 1px solid #394840;
}


.restaurant-lamp span {
    position: absolute;

    top: 17px;
    left: 50%;

    width: 30px;
    height: 30px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #b0822c;

    opacity: 0;

    filter: blur(7px);

    transition:
        opacity 1s ease;
}


/* =========================================
   TABLES
========================================= */

.night-tables {
    position: absolute;

    left: 50%;

    bottom: -25px;

    width: 100%;

    height: 180px;

    transform: translateX(-50%);
}


.night-table {
    position: absolute;

    width: 120px;
    height: 90px;
}


.table-1 {
    left: 3%;
    bottom: 0;
}

.table-2 {
    left: 50%;
    bottom: 5px;

    transform: translateX(-50%) scale(.9);
}

.table-3 {
    right: 3%;
    bottom: 0;
}


.table-top {
    position: absolute;

    top: 0;
    left: 50%;

    width: 100px;
    height: 30px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            #5b4a34,
            #30261c
        );

    box-shadow:
        0 12px 20px rgba(0, 0, 0, 0.35);
}


.table-leg {
    position: absolute;

    left: 50%;
    top: 20px;

    width: 8px;
    height: 65px;

    transform: translateX(-50%);

    background: #1a211e;
}


.table-candle {
    position: absolute;

    top: -12px;
    left: 50%;

    width: 10px;
    height: 18px;

    transform: translateX(-50%);

    border-radius: 2px;

    background: #ddd4b8;

    z-index: 5;
}


.table-candle i {
    position: absolute;

    left: 50%;
    top: -7px;

    width: 5px;
    height: 5px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #b0822c;

    box-shadow:
        0 0 15px 5px rgba(176, 130, 44, 0.55);

    opacity: 0;

    transition: opacity 1s ease;
}


/* =========================================
   GROUND
========================================= */

.night-ground {
    position: absolute;

    z-index: 7;

    left: 0;
    right: 0;
    bottom: 0;

    height: 180px;

    background:
        linear-gradient(
            180deg,
            #1a2522,
            #080e0c
        );
}


.ground-glow {
    position: absolute;

    left: 50%;
    top: -20px;

    width: 800px;
    height: 100px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(176, 130, 44, 0.2),
            transparent 70%
        );

    filter: blur(20px);

    opacity: 0;

    transition: opacity 1.5s ease;
}


/* =========================================
   CONTENT
========================================= */

.night-content {
    position: absolute;

    z-index: 15;

    top: 50%;

    right: 8%;

    transform: translateY(-50%);

    width: 390px;

    text-align: right;

    transition:
        color 1s ease;
}


.night-label {
    display: block;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;
}


.night-title {
    margin: 0;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.35;

    font-weight: 900;

    letter-spacing: -2px;
}


.night-title span {
    display: block;

    color: #b0822c;

    transition:
        color 1s ease,
        text-shadow 1s ease;
}


.night-description {
    margin-top: 22px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;

    line-height: 2.2;
}


.night-status {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    padding: 10px 15px;

    border: 1px solid rgba(176, 130, 44, 0.35);

    border-radius: 50px;

    color: #b0822c;

    font-family: Arial, sans-serif;

    font-size: 9px;

    letter-spacing: 2px;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #b0822c;

    box-shadow:
        0 0 10px rgba(176, 130, 44, 0.8);

    animation:
        statusPulse 2s ease-in-out infinite;
}


@keyframes statusPulse {

    0%,
    100% {
        opacity: .45;

        transform: scale(.8);
    }

    50% {
        opacity: 1;

        transform: scale(1.2);
    }
}


/* =========================================
   PROGRESS
========================================= */

.night-progress {
    position: absolute;

    z-index: 20;

    left: 50%;

    bottom: 55px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 14px;

    color: rgba(255, 255, 255, 0.45);

    font-family: Arial, sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}


.progress-line {
    position: relative;

    width: 180px;
    height: 2px;

    background: rgba(255, 255, 255, 0.15);

    overflow: hidden;
}


.progress-fill {
    position: absolute;

    top: 0;
    left: 0;

    width: 15%;
    height: 100%;

    background: #b0822c;

    transition:
        width .15s linear;
}


/* =========================================
   SCROLL
========================================= */

.night-scroll {
    position: absolute;

    z-index: 25;

    left: 50%;

    bottom: 15px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.3);

    font-size: 7px;

    letter-spacing: 3px;
}


.night-scroll-line {
    width: 35px;
    height: 1px;

    background: #b0822c;

    animation:
        nightScrollPulse 2s ease-in-out infinite;
}


@keyframes nightScrollPulse {

    0%,
    100% {
        transform: scaleX(.5);

        opacity: .3;
    }

    50% {
        transform: scaleX(1);

        opacity: 1;
    }
}


/* =========================================
   NIGHT STATE
========================================= */

.night-transition.is-night .night-sky {

    background:
        linear-gradient(
            180deg,
            #07100f 0%,
            #0b1815 45%,
            #14241f 75%,
            #101715 100%
        );
}


.night-transition.is-night .night-sun {

    opacity: 0;

    transform:
        translateY(180px)
        scale(.6);
}


.night-transition.is-night .night-moon {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


.night-transition.is-night .night-stars {

    opacity: 1;
}


.night-transition.is-night .night-ambient {

    opacity: 1;
}


.night-transition.is-night .window-light {

    opacity: 1;

    box-shadow:
        0 0 35px rgba(176, 130, 44, 0.4);
}


.night-transition.is-night .door-light {

    opacity: 1;

    box-shadow:
        inset 0 0 30px rgba(176, 130, 44, 0.35);
}


.night-transition.is-night .restaurant-lamp span {

    opacity: 1;

    box-shadow:
        0 0 25px 8px rgba(176, 130, 44, 0.45);
}


.night-transition.is-night .table-candle i {

    opacity: 1;
}


.night-transition.is-night .ground-glow {

    opacity: 1;
}


.night-transition.is-night .night-title span {

    text-shadow:
        0 0 30px rgba(176, 130, 44, 0.35);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1150px) {

    .night-content {
        right: 5%;

        width: 330px;
    }


    .restaurant-building {
        width: 650px;
    }


    .restaurant-windows {
        width: 550px;
    }


    .restaurant-window {
        width: 115px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .night-transition {

        min-height: 950px;
    }


    .night-sun {

        width: 95px;
        height: 95px;

        top: 12%;
        left: 10%;
    }


    .night-moon {

        width: 75px;
        height: 75px;

        top: 12%;
        right: 10%;
    }


    .night-content {

        top: 10%;

        right: 0;

        width: 100%;

        padding: 0 7%;

        transform: none;

        text-align: center;
    }


    .night-label {

        font-size: 8px;

        letter-spacing: 3px;
    }


    .night-title {

        font-size: clamp(35px, 10vw, 48px);

        letter-spacing: -1px;
    }


    .night-description {

        max-width: 420px;

        margin: 18px auto 0;

        font-size: 12px;

        line-height: 2;
    }


    .night-status {

        margin-top: 20px;
    }


    .night-restaurant {

        bottom: 100px;

        width: 100%;

        height: 330px;
    }


    .restaurant-building {

        width: 90%;

        height: 270px;
    }


    .restaurant-roof {

        left: -10px;

        width: calc(100% + 20px);
    }


    .restaurant-sign {

        top: 22px;
    }


    .restaurant-sign strong {

        font-size: 18px;
    }


    .restaurant-windows {

        top: 70px;

        width: 85%;

        gap: 7px;
    }


    .restaurant-window {

        width: 23%;

        height: 125px;

        border-width: 4px;
    }


    .restaurant-door {

        width: 75px;

        height: 160px;
    }


    .restaurant-lamp {

        top: 65px;

        transform: scale(.7);
    }


    .lamp-1 {

        left: 5%;
    }


    .lamp-2 {

        right: 5%;
    }


    .lamp-3 {

        top: 45px;
    }


    .night-tables {

        display: none;
    }


    .night-ground {

        height: 120px;
    }


    .night-progress {

        bottom: 45px;

        gap: 8px;
    }


    .progress-line {

        width: 110px;
    }


    .night-scroll {

        bottom: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .night-transition {

        min-height: 880px;
    }


    .night-content {

        top: 8%;
    }


    .night-title {

        font-size: 33px;
    }


    .night-description {

        font-size: 11px;
    }


    .night-restaurant {

        bottom: 85px;

        height: 290px;
    }


    .restaurant-building {

        height: 235px;
    }


    .restaurant-window {

        height: 105px;
    }


    .restaurant-door {

        width: 62px;

        height: 140px;
    }


    .night-progress {

        bottom: 35px;
    }


    .progress-line {

        width: 80px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .star,
    .status-dot,
    .night-scroll-line {

        animation: none !important;
    }

}




/* =========================================
   PREMIUM RESTAURANT FOOTER
   Iran Gostaresh Developer Signature
========================================= */

.site-footer {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(176, 130, 44, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(38, 63, 56, 0.55),
            transparent 35%
        ),
        #0b1512;

    color: #fff;

    direction: rtl;

    border-top: 1px solid rgba(176, 130, 44, 0.18);
}


/* =========================================
   DECORATIVE GLOW
========================================= */

.footer-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);

    opacity: .25;
}

.footer-glow-1 {
    top: -250px;
    right: -100px;

    background: #b0822c;
}

.footer-glow-2 {
    bottom: -250px;
    left: -100px;

    background: #29463d;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    position: relative;

    z-index: 2;

    width: min(1400px, 90%);

    margin: auto;

    padding: 90px 0 70px;

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        .9fr
        1.2fr;

    gap: 60px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 340px;
}


.footer-logo {
    display: flex;

    align-items: baseline;

    gap: 10px;

    margin-bottom: 22px;
}


.footer-logo span {
    color: rgba(255, 255, 255, .45);

    font-size: 10px;

    letter-spacing: 4px;
}


.footer-logo strong {
    color: #b0822c;

    font-family: Georgia, serif;

    font-size: 36px;

    letter-spacing: 3px;

    text-shadow:
        0 0 25px rgba(176, 130, 44, .15);
}


.footer-brand-text {
    color: rgba(255, 255, 255, .55);

    font-size: 13px;

    line-height: 2.2;

    margin-bottom: 28px;
}


/* =========================================
   SOCIALS
========================================= */

.footer-socials {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.footer-socials a {
    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 30px;

    color: rgba(255, 255, 255, .55);

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


.footer-socials a:hover {
    color: #fff;

    border-color: #b0822c;

    background: rgba(176, 130, 44, .10);

    transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}


.footer-column h3 {
    position: relative;

    margin: 0 0 10px;

    color: #fff;

    font-size: 14px;

    font-weight: 800;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    right: 0;

    bottom: -8px;

    width: 28px;
    height: 1px;

    background: #b0822c;
}


.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, .48);

    font-size: 12px;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}


.footer-column a:hover {
    color: #b0822c;

    transform: translateX(-5px);
}


/* =========================================
   CTA
========================================= */

.footer-cta {
    padding: 28px;

    border: 1px solid rgba(176, 130, 44, .18);

    background:
        linear-gradient(
            145deg,
            rgba(176, 130, 44, .08),
            rgba(255, 255, 255, .02)
        );

    backdrop-filter: blur(10px);

    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .05),
        0 20px 50px rgba(0, 0, 0, .18);
}


.footer-cta-label {
    display: block;

    margin-bottom: 15px;

    color: #b0822c;

    font-family: Arial, sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}


.footer-cta h3 {
    margin: 0 0 25px;

    color: #fff;

    font-size: 22px;

    line-height: 1.8;
}


.footer-cta h3 span {
    color: #b0822c;
}


.footer-reservation-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 12px 20px;

    border-radius: 50px;

    background: #b0822c;

    color: #fff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(176, 130, 44, .2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.footer-reservation-btn span {
    font-size: 17px;

    transition:
        transform .3s ease;
}


.footer-reservation-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(176, 130, 44, .35);
}


.footer-reservation-btn:hover span {
    transform: translateX(-5px);
}


/* =========================================
   DEVELOPER SIGNATURE
========================================= */

.footer-developer {
    position: relative;

    z-index: 5;

    width: min(1200px, 90%);

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;
}


.developer-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(176, 130, 44, .45),
            transparent
        );
}


.developer-content {
    min-width: 320px;

    text-align: center;

    padding: 15px 25px;

    border: 1px solid rgba(176, 130, 44, .16);

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            rgba(176, 130, 44, .03),
            rgba(176, 130, 44, .09),
            rgba(176, 130, 44, .03)
        );

    box-shadow:
        0 0 50px rgba(176, 130, 44, .04);
}


.developer-small {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, .30);

    font-family: Arial, sans-serif;

    font-size: 7px;

    letter-spacing: 4px;
}


.developer-content p {
    margin: 0 0 3px;

    color: rgba(255, 255, 255, .55);

    font-size: 10px;
}


.developer-brand {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, .45);

    text-decoration: none;

    font-size: 10px;
}


.developer-brand strong {
    color: #b0822c;

    font-size: 15px;

    font-weight: 900;

    transition:
        text-shadow .3s ease;
}


.developer-brand:hover strong {
    text-shadow:
        0 0 20px rgba(176, 130, 44, .5);
}


/* =========================================
   MANAGER
========================================= */

.developer-manager {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-right: 10px;

    padding-right: 10px;

    border-right: 1px solid rgba(255, 255, 255, .12);

    color: rgba(255, 255, 255, .32);

    font-size: 8px;
}


.developer-manager strong {
    color: rgba(255, 255, 255, .72);

    font-size: 9px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    position: relative;

    z-index: 5;

    width: min(1400px, 90%);

    margin: 55px auto 0;

    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, .07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, .28);

    font-family: Arial, sans-serif;

    font-size: 9px;
}


.footer-bottom p {
    margin: 0;
}


.footer-credit span {
    color: #b0822c;

    font-size: 13px;
}


.footer-credit strong {
    color: rgba(255, 255, 255, .5);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .footer-container {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-cta {
        max-width: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .footer-container {
        width: 88%;

        padding: 65px 0 45px;

        grid-template-columns: 1fr;

        gap: 42px;

        text-align: center;
    }


    .footer-brand {
        margin: auto;
    }


    .footer-logo {
        justify-content: center;
    }


    .footer-socials {
        justify-content: center;
    }


    .footer-column {
        align-items: center;
    }


    .footer-column h3::after {
        right: 50%;

        transform: translateX(50%);
    }


    .footer-cta {
        width: 100%;

        max-width: 430px;

        margin: auto;
    }


    .footer-developer {
        width: 88%;

        gap: 10px;
    }


    .developer-content {
        min-width: 0;

        width: 100%;

        padding: 17px 12px;

        border-radius: 20px;
    }


    .developer-manager {
        display: flex;

        justify-content: center;

        margin: 8px 0 0;

        padding: 0;

        border: 0;
    }


    .footer-bottom {
        width: 88%;

        margin-top: 40px;

        padding: 20px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        line-height: 2;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .footer-logo strong {
        font-size: 30px;
    }


    .footer-cta {
        padding: 23px 18px;
    }


    .developer-small {
        font-size: 6px;

        letter-spacing: 3px;
    }


    .developer-content p {
        font-size: 9px;
    }


    .developer-brand strong {
        font-size: 13px;
    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-socials a,
    .footer-column a,
    .footer-reservation-btn,
    .footer-reservation-btn span,
    .developer-brand strong {

        transition: none;
    }

}



/* =====================================
   CAFE GALLERY
===================================== */


.cafe-gallery {

    padding:100px 5%;

    background:#f3f4f3;

}



.cafe-gallery-title {

    text-align:center;

    margin-bottom:55px;

}



.cafe-gallery-title span {

    color:#008f83;

    font-size:12px;

    letter-spacing:3px;

}



.cafe-gallery-title h2 {

    margin-top:15px;

    font-size:48px;

    color:#333;

}



.cafe-gallery-title strong {

    color:#008f83;

}



.cafe-gallery-title p {

    color:#777;

    margin-top:15px;

}





.cafe-gallery-grid {

    max-width:1300px;

    margin:auto;


    display:grid;

    grid-template-columns:
    repeat(4,1fr);


    grid-auto-rows:250px;


    gap:18px;

}



.cafe-gallery-item {

    overflow:hidden;

    position:relative;

    border-radius:22px;

    background:#ddd;

}



.cafe-gallery-item::after {

    content:"";

    position:absolute;

    inset:0;


    background:

    linear-gradient(
    transparent,
    rgba(0,0,0,.35)
    );


    opacity:0;

    transition:.4s;

}



.cafe-gallery-item:hover::after {

    opacity:1;

}




.cafe-gallery-item img {


    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}



.cafe-gallery-item:hover img {

    transform:scale(1.1);

}



.big {

    grid-column:span 2;

    grid-row:span 2;

}



.wide {

    grid-column:span 2;

}





/* TABLET */

@media(max-width:900px){


    .cafe-gallery-grid {

        grid-template-columns:
        repeat(2,1fr);

    }


    .cafe-gallery-title h2 {

        font-size:38px;

    }

}





/* MOBILE */

@media(max-width:600px){


    .cafe-gallery {

        padding:70px 16px;

    }


    .cafe-gallery-grid {

        display:flex;

        flex-direction:column;

        gap:15px;

    }



    .cafe-gallery-item,
    .big,
    .wide {


        height:260px;

        border-radius:18px;


    }



    .big {

        height:380px;

    }



    .cafe-gallery-title h2 {

        font-size:32px;

    }



}