/* =====================================================
   GLOBAL THEME CONFIGURATION
   Single source of truth for all color/typography/effect settings
   Used across: index.html, menu.html, reservasi.html, contact.html, admin
===================================================== */

:root {

    /* =========================
       PRIMARY PALETTE - MAROON
    ========================== */

    --maroon-deep: #3A0B14;
    --maroon-dark: #48101A;
    --maroon: #57121D;
    --maroon-light: #721C2A;


    /* =========================
       SECONDARY PALETTE - GOLD
    ========================== */

    --gold-deep: #8A6418;
    --gold-dark: #B38A2E;
    --gold: #D4AF37;
    --gold-light: #E8CC72;


    /* =========================
       NEUTRAL PALETTE
    ========================== */

    --cream: #F5EBD7;
    --cream-light: #FBF6EC;
    --white: #FFFFFF;
    --text-dark: #2A1719;
    --text-muted: #8F7777;


    /* =========================
       EFFECTS & OPACITY
    ========================== */

    --border-gold: rgba(212, 175, 55, 0.45);
    --border-gold-light: rgba(212, 175, 55, 0.25);
    --gold-glow: rgba(212, 175, 55, 0.25);
    --glass-dark: rgba(36, 7, 13, 0.75);
    --glass-light: rgba(255, 255, 255, 0.06);
    --overlay-maroon-dark: rgba(36, 7, 13, 0.92);
    --overlay-maroon-medium: rgba(54, 11, 20, 0.65);
    --overlay-maroon-light: rgba(54, 11, 20, 0.18);


    /* =========================
       SEMANTIC COLOR SYSTEM
       High-level abstraction for UI components
    ========================== */

    /* Primary */
    --color-primary: var(--maroon);
    --color-primary-dark: var(--maroon-deep);
    --color-primary-light: var(--maroon-light);

    /* Secondary */
    --color-secondary: var(--gold);
    --color-secondary-dark: var(--gold-dark);
    --color-secondary-light: var(--gold-light);

    /* Background */
    --color-background: var(--maroon);
    --color-background-dark: var(--maroon-deep);

    /* Surface */
    --color-surface: var(--maroon-dark);
    --color-surface-dark: var(--maroon-deep);

    /* Text */
    --color-text: var(--white);
    --color-text-light: var(--cream);
    --color-text-muted: var(--text-muted);
    --color-heading: var(--gold);

    /* Border */
    --color-border: var(--border-gold);
    --color-border-light: var(--border-gold-light);

    /* Button */
    --color-button: var(--gold);
    --color-button-text: var(--maroon-deep);
    --color-button-hover: var(--gold-light);

    /* Accent */
    --color-accent: var(--gold);
    --color-accent-light: var(--gold-light);
    --color-accent-glow: var(--gold-glow);

    /* Legacy compatibility - maps to new names */
    --color-maroon-deep: var(--maroon-deep);
    --color-maroon-dark: var(--maroon-dark);
    --color-maroon: var(--maroon);
    --color-maroon-medium: var(--maroon-light);
    --color-maroon-light: var(--maroon-light);
    --color-gold-dark: var(--gold-dark);
    --color-gold: var(--gold);
    --color-gold-light: var(--gold-light);
    --color-white: var(--white);
    --color-cream: var(--cream);
    --color-cream-dark: var(--cream);
    --color-gray: var(--text-muted);
    --color-gray-dark: var(--text-muted);


    /* =========================
       TYPOGRAPHY
    ========================== */

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Montserrat", sans-serif;


    /* =========================
       LAYOUT
    ========================== */

    --container-width: 1280px;
    --logo-width: 120px;


    /* =========================
       EFFECTS & TRANSITIONS
    ========================== */

    --transition: all 0.4s ease;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--color-maroon-deep);

    color: var(--color-white);

    font-family: var(--font-body);

    overflow-x: hidden;


    /* PAGE LOAD ANIMATION */

    opacity: 0;

    visibility: hidden;

    transition:

        opacity 0.8s ease,

        visibility 0.8s ease;

}


body.page-loaded {

    opacity: 1;

    visibility: visible;

}


img {

    width:100%;

    display:block;

    border-radius:30px;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    border: none;

    background: none;

    font-family: inherit;

    cursor: pointer;

}


/* =====================================================
   GLOBAL
===================================================== */

.container {

    width: min(90%, var(--container-width));

    margin: 0 auto;

}


.section {

    padding: 120px 0;

}


.section-label {

    color: var(--color-gold-light);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;

}


h1,
h2,
h3,
h4 {

    font-family: var(--font-heading);

    font-weight: 500;

}


h2 {

    font-size: clamp(42px, 5vw, 76px);

    line-height: 0.95;

}


h1 span,
h2 span {

    color: var(--color-gold-light);

    font-style: italic;

}


p {

    line-height: 1.8;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    font-size: 11px;

    font-weight: 600;
 border-radius:
        50px;
    letter-spacing: 2px;

    text-transform: uppercase;

    transition: var(--transition);

}


.btn-gold {

    background: var(--color-gold);

    color: var(--color-maroon-deep);

}


.btn-gold:hover {

    background: var(--color-gold-light);

    transform: translateY(-3px);

}


.btn-outline {


    border:
        1px solid rgba(212,177,106,.6);


    background:
        transparent;


    color:
        var(--color-gold-light);

}

.btn-outline:hover {


    background:
        var(--color-gold);


    color:
        var(--color-maroon-deep);

}


.btn-dark {

    background: var(--color-maroon-deep);

    color: var(--color-white);

}


.btn-dark:hover {

    background: var(--color-maroon-medium);

    transform: translateY(-3px);

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 25px 0;

    background:

        linear-gradient(

            to bottom,

            rgba(36, 7, 13, 0.92),

            transparent

        );

    transition:

        background 0.4s ease,

        padding 0.4s ease,

        box-shadow 0.4s ease;

}


.navbar-container {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    position: relative;

    z-index: 1002;

}


.logo img {

    width: var(--logo-width);

    height: auto;

    border-radius: 0 !important;

}

/* Force navbar logo size to override page-specific rules */
.navbar .logo img,
.logo > img {
    width: var(--logo-width) !important;
    max-width: var(--logo-width) !important;
    height: auto !important;
}

/* Explicit class for site logo to avoid generic img rules */
.site-logo {
    width: var(--logo-width) !important;
    max-width: var(--logo-width) !important;
    height: auto !important;
}

.nav-menu {

    display:
        flex;

    align-items:
        center;

    gap:
        35px;

}



.nav-menu a {

        position:
            relative;

        font-family:
            var(--font-body);

        font-size:
            14px;

        letter-spacing:
            1px;

        color:
            rgba(244,241,235,.8);

        text-decoration:
            none;

        transition:
            color .3s ease;

    }

.nav-menu a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        -6px;

    width:
        100%;

    height:
        2px;

    background:
        var(--color-gold-light);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform .3s ease;

}



.nav-menu a:hover,
.nav-menu a.active {

    color:
        var(--color-gold-light);

}



.nav-menu a:hover::after,
.nav-menu a.active::after {

    transform:
        scaleX(1);

}


.navbar > .container > .btn {

        position: relative;

        z-index: 1002;

        display: inline-flex;

    }


.navbar-actions {

    position: relative;

    z-index: 1002;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 8px;

}

.navbar-hours {

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--color-secondary-light);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    line-height: 1.2;

}

.navbar-hours p {

    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;

}

.navbar-hours p::before,
.navbar-hours p::after {

    content: "";

    width: 18px;

    height: 1px;

    background: var(--color-secondary-light);

    opacity: 0.75;

    display: block;

}


    .mobile-menu-btn {

        display: none;

        position: relative;

        z-index: 1003;

        background: transparent;

        border: 0;

        color: #D4B16A !important;

        font-family: var(--font-body);

        font-size: 28px;

        cursor: pointer;

    }
/* =====================================================
   NAVBAR AFTER SCROLL
===================================================== */

.navbar.navbar-scrolled {

    padding: 15px 0;

    background: rgba(54, 11, 20, 0.97);

    box-shadow:

        0 5px 30px rgba(36, 7, 13, 0.45);

    backdrop-filter: blur(10px);

}


/* =====================================================
   MOBILE OVERLAY
===================================================== */

.mobile-overlay {

    display: none;

}


/* =====================================================
   HERO
   Page-specific hero background only; shared hero layout is in global-hero.css
===================================================== */

.hero {
    background-image: url("../images/hero/hero.png");
}

.scroll-indicator {

    position: absolute;

    right: 5%;

    bottom: 40px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--color-gray);

    font-size: 9px;

    letter-spacing: 3px;

}


.scroll-line {

    width: 70px;

    height: 1px;

    background: var(--color-gold);

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background:

        linear-gradient(

            135deg,

            var(--color-maroon-dark),

            var(--color-maroon-deep)

        );

}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

}


.about-image {

    position: relative;

}


.about-image::after {

    content: "";

    position: absolute;

    inset: 20px -20px -20px 20px;

    border: 1px solid var(--color-gold);

    z-index: 0;

}


.about-image img {

    position: relative;

    z-index: 1;

    height: 600px;

    object-fit: cover;

}


.about-content h2 {

    margin-bottom: 35px;

}


.about-content p {

    color: var(--color-gray);

    font-size: 14px;

    margin-bottom: 20px;

}


.text-link {

    display: inline-block;

    margin-top: 20px;

    color: var(--color-gold-light);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: var(--transition);

}


.text-link:hover {

    letter-spacing: 4px;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    max-width: 700px;

    margin-bottom: 70px;

}


.section-heading.centered {

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.section-heading > p:last-child {

    margin-top: 25px;

    color: var(--color-gray);

    font-size: 14px;

}


/* =====================================================
   DISCOVER OUR SPACE
===================================================== */

.floors {

    background:

        linear-gradient(

            rgba(36, 7, 13, 0.94),

            rgba(36, 7, 13, 0.94)

        ),

        url("../images/restaurant/lt1.png");

    background-size: cover;

    background-position: center;

}


/* =====================================================
   OUR SPACES SLIDER
===================================================== */

.spaces-section {
    background:
        linear-gradient(
            rgba(36, 7, 13, 0.96),
            rgba(36, 7, 13, 0.96)
        ),
        url("../images/restaurant/lt1.png");
    background-size: cover;
    background-position: center;
}

.space-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.space-slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
}

.space-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.space-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.space-card:hover img {
    transform: scale(1.08);
}

.space-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.space-card-label {
    color: var(--color-gold-light);
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.space-card h3 {
    font-size: clamp(24px, 2.3vw, 32px);
    color: var(--color-cream);
}

.space-card p {
    color: rgba(244,241,235,0.78);
    line-height: 1.75;
}

.space-card .text-link {
    margin-top: auto;
    color: var(--color-gold);
    font-weight: 600;
}

.space-slider-prev,
.space-slider-next {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--color-cream);
    font-size: 24px;
    border: 1px solid rgba(212,177,106,0.25);
    flex-shrink: 0;
}


/* =====================================================
   FLOOR CARDS
===================================================== */

.floor-card {

    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--color-maroon-dark);

}


.floor-card-large {

    min-height: 600px;

}


.floor-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;

}


.floor-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to top,

            rgba(36, 7, 13, 0.94),

            rgba(54, 11, 20, 0.12) 70%

        );

}


.floor-card:hover img {

    transform: scale(1.08);

}


.floor-card-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 35px;

}


.floor-number {

    color: var(--color-gold-light);

    font-family: var(--font-heading);

    font-size: 52px;

}


.floor-card-overlay p {

    color: var(--color-gold-light);

    font-size: 10px;

    letter-spacing: 3px;

}


.floor-card h3 {

    margin: 5px 0;

    font-size: 42px;

}


.floor-description {

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;

    letter-spacing: 1px;

}


/* =====================================================
   FLOOR POSITION
===================================================== */


/* FLOOR 01 — RESTAURANT */

.floor-card:nth-child(1) {

    grid-column: 1;

    grid-row: 1;

}


/* FLOOR 02 — SIMA CAFE */

.floor-card:nth-child(2) {

    grid-column: 2;

    grid-row: 1;

}


/* FLOOR 03 — VIP & PRIVATE ROOM */

.floor-card:nth-child(3) {

    grid-column: 1;

    grid-row: 2;

}


/* FLOOR 04 — HALL & EVENT
   BERADA DI BAWAH SIMA CAFE */

.floor-card:nth-child(4) {

    grid-column: 2;

    grid-row: 2;

}


/* =====================================================
   FEATURED MENU
===================================================== */

.featured-menu {

    background: var(--color-cream);

    color: var(--color-maroon-deep);

}


.featured-menu .section-label {

    color: var(--color-maroon);

}


.featured-menu h2 span {

    color: var(--color-maroon);

}


.featured-menu .section-heading > p:last-child {

    color: var(--color-gray-dark);

}


.menu-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.menu-card {

    overflow: hidden;

    background: var(--color-white);

    box-shadow:

        0 12px 35px rgba(54, 11, 20, 0.08);

    transition: var(--transition);

}


.menu-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 20px 45px rgba(54, 11, 20, 0.16);

}


.menu-card img {

    height: 360px;

    object-fit: cover;

}


.menu-card-content {

    padding: 25px;

}


.menu-card h3 {

    color: var(--color-maroon);

    font-size: 32px;

}


.menu-card p {

    margin-top: 10px;

    color: var(--color-gray-dark);

    font-size: 13px;

}


.section-button {

    margin-top: 50px;

    text-align: center;

}


/* =====================================================
   EXPERIENCE SECTIONS
===================================================== */

.experience-section {

    padding: 130px 0;

}


/* =====================================================
   RESTAURANT SECTION — FLOOR 01
===================================================== */

.restaurant-section {

    background:

        linear-gradient(

            135deg,

            var(--color-maroon-dark),

            var(--color-maroon-deep)

        );

}


.restaurant-section
.experience-content
p:not(.section-label) {

    color: var(--color-gray);

    font-size: 14px;

    margin-bottom: 20px;

}


/* =====================================================
   SPACE FEATURES
===================================================== */

.space-features {

    display: flex;

    gap: 40px;

    margin: 35px 0;

}


.space-feature {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.space-feature strong {

    color: var(--color-gold-light);

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 500;

}


.space-feature span {

    color: var(--color-gray);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =====================================================
   CAFE
===================================================== */

.cafe-section {

    background:

        linear-gradient(

            135deg,

            var(--color-maroon),

            var(--color-maroon-dark)

        );

}


/* =====================================================
   PRIVATE ROOM
===================================================== */

.private-section {

    background: var(--color-cream);

    color: var(--color-maroon-deep);

}


.private-section
.experience-content
p:not(.section-label) {

    color: var(--color-gray-dark);

}


.private-section .section-label {

    color: var(--color-maroon);

}


.private-section h2 span {

    color: var(--color-maroon);

}


/* =====================================================
   EXPERIENCE GRID
===================================================== */

.experience-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

}


.experience-grid.reverse {

    grid-template-columns: 1fr 1fr;

}


.experience-content {

    max-width: 500px;

}


.experience-content h2 {

    margin-bottom: 30px;

}


.experience-content p:not(.section-label) {

    margin-bottom: 35px;

    color: var(--color-gray);

    font-size: 14px;

}


.experience-image {

    position: relative;

    overflow: hidden;

}


.experience-image img {

    height: 600px;

    object-fit: cover;

    transition: transform 0.8s ease;

}


.experience-image:hover img {

    transform: scale(1.05);

}


/* =====================================================
   EVENT BANNER
===================================================== */

.event-section {

    background: var(--color-maroon-deep);

}


/* =====================================================
   RESERVATION CTA
===================================================== */

.reservation-cta {

    padding: 130px 0;

    text-align: center;

    background:

        linear-gradient(

            rgba(87, 18, 29, 0.91),

            rgba(87, 18, 29, 0.91)

        ),

        url("../images/restaurant/reservation.png");

    background-size: cover;

    background-position: center;

}


.reservation-cta h2 {

    margin-bottom: 40px;

}



/* =====================================================
   FOOTER
===================================================== */


.footer {


    background:
        var(--color-primary-dark);


    padding-top:
        80px;

}

.footer-grid {


    display:
        grid;


    grid-template-columns:
        repeat(3,1fr);


    gap:
        50px;

}

.footer-column {


    display:
        flex;


    flex-direction:
        column;


    gap:
        12px;

}

.footer-column h4 {


    font-family:
        "Cormorant Garamond",
        serif;


    font-size:
        32px;


    color:
        var(--color-gold);


    margin-bottom:
        25px;

}

.footer-column a,
.footer-column p {


    color:
        rgba(244,241,235,.7);


    font-size:
        14px;
        
   transition:   .35s ease;
}

.footer-column a:hover {


    color:
        var(--color-gold);
transform: translateX(8px);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(244, 241, 235, 0.7);
    font-weight: 500;
    width: fit-content;
}

.footer-map-link:hover {
    background: transparent;
    transform: translateX(8px);
    color: var(--color-gold);
}


.footer-bottom {


    margin-top:
        60px;


    padding:
        25px 0;


    text-align:
        center;


    border-top:
        1px solid rgba(255,255,255,.1);

}

.footer-bottom p {


    color:
        rgba(244,241,235,.5);

}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition:

        opacity 0.8s ease,

        transform 0.8s ease;

}


.reveal-visible {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   STAGGER FLOOR CARDS
===================================================== */

.floor-card:nth-child(1) {

    transition-delay: 0.1s;

}


.floor-card:nth-child(2) {

    transition-delay: 0.2s;

}


.floor-card:nth-child(3) {

    transition-delay: 0.3s;

}


.floor-card:nth-child(4) {

    transition-delay: 0.4s;

}


/* =====================================================
   IMAGE LOADING
===================================================== */

img[data-src] {

    opacity: 0;

}


img.loaded {

    opacity: 1;

    transition: opacity 0.5s ease;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {


    /* =========================
       NAVIGATION
    ========================== */

    .nav-menu {

        gap: 20px;

    }


    /* =========================
       GRID SPACING
    ========================== */

    .about-grid,
    .experience-grid,
    .experience-grid.reverse {

        gap: 50px;

    }

.floor-card h3{

    font-size:24px;
    line-height:1.1;
    white-space:nowrap;

}
    /* =========================
       IMAGES
    ========================== */

    .about-image img,
    .experience-image img {

        height: 500px;

    }


    /* =========================
       FOOTER
    ========================== */

    .footer-grid {

        grid-template-columns: 2fr 1fr 1fr;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {


    /* =========================
       GLOBAL
    ========================== */

    .section {

        padding: 80px 0;

    }


    /* =========================
       NAVBAR
    ========================== */

    .navbar {

        padding: 20px 0;

    }

    .navbar-hours {

        opacity: 0;

        max-height: 0;

        overflow: hidden;

        pointer-events: none;

        transition: opacity 0.25s ease, max-height 0.25s ease;

    }

    .navbar.navbar-scrolled .navbar-hours {

        opacity: 1;

        max-height: 30px;

    }

    /* Reduce logo size on tablet/large-mobile */
    :root {
        --logo-width: 100px;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
        z-index: 1002;
    }

    .navbar .logo img,
    .site-logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: var(--logo-width) !important;
        max-width: var(--logo-width) !important;
        height: auto !important;
    }


    .navbar-container {

        position: relative;

    }


    .nav-menu {

        position: fixed;

        top: 0;

        right: -100%;

        width: 80%;

        height: 100vh;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 25px;

        padding: 40px;

        background:

            linear-gradient(

                135deg,

                var(--color-maroon-dark),

                var(--color-maroon-deep)

            );

        z-index: 1001;

        transition: right 0.4s ease;

    }


    .nav-menu.active {

        right: 0;

    }


    .nav-menu a {

        font-size: 14px;

    }

.navbar-container > .btn {
        display: inline-flex;

    }

    body.menu-open {
        overflow: hidden;

    }


    .mobile-menu-btn {

        display: block;

    }


    /* =========================
       MOBILE OVERLAY
    ========================== */

    .mobile-overlay {

        display: block;

        position: fixed;

        inset: 0;

        z-index: 1000;

        background: rgba(36, 7, 13, 0.78);

        opacity: 0;

        visibility: hidden;

        transition:

            opacity 0.4s ease,

            visibility 0.4s ease;

    }


    .mobile-overlay.active {

        opacity: 1;

        visibility: visible;

    }


    /* =========================
       HERO
    ========================== */

    .scroll-indicator {

        display: none;

    }


    /* =========================
       ABOUT
    ========================== */

    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


  .about-image img {

    height:300px;

}


    /* =========================
       FLOORS
    ========================== */

    .space-slider-container {
        padding: 0 8px;
    }

    .space-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 15px;
        padding-bottom: 8px;
        grid-template-columns: none;
    }

    .space-slider::-webkit-scrollbar {
        display: none;
    }

    .space-card {
        min-width: 100%;
        width: 100%;
        scroll-snap-align: start;
    }

    .space-card img {
        height: 220px;
    }

    .space-slider-prev,
    .space-slider-next {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(36, 7, 13, 0.8);
        color: #fff;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    .space-slider-prev {
        left: 10px;
    }

    .space-slider-next {
        right: 10px;
    }

    .menu-grid {

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}
.menu-card img {

    height:220px;

    object-fit:cover;
}


.menu-card-content {

    padding:15px;

}


.menu-card h3 {

    font-size:24px;

}


.menu-card p {

    display:none;

}

    /* =========================
       EXPERIENCE
    ========================== */

    .experience-grid,
    .experience-grid.reverse {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .experience-grid.reverse .experience-image {

        order: -1;

    }


    .experience-image img {

        height: 320px;

    }


    /* =========================
       EVENT
    ========================== */

    /* =========================
       FOOTER
    ========================== */

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 50px 30px;

    }


    .footer-brand {

        grid-column: span 2;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {


    /* =========================
       CONTAINER
    ========================== */

    .container {

        width: 88%;

    }

    /* Reduce logo size on small mobile */
    :root {
        --logo-width: 80px;
    }


    /* =========================
       HERO
    ========================== */


    /* =========================
       HEADINGS
    ========================== */

    h2 {

        font-size: 48px;

    }


    /* =========================
       FLOOR CARDS
    ========================== */

   .floor-card-overlay {

    padding:15px;

}


.floor-number {

    font-size:30px;

}


.floor-card h3 {

     font-size:16px;
    line-height:1.1;
    white-space:nowrap;

}


.floor-description {

    font-size:9px;

}


    /* =========================
       FLOOR 1 FEATURES
    ========================== */

    .space-features {

        gap: 20px;

        justify-content: space-between;

    }


    .space-feature strong {

        font-size: 32px;

    }


    .space-feature span {

        font-size: 9px;

    }


    /* =========================
       FOOTER
    ========================== */

    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }

}
/* =====================================================
   CINEMATIC IMAGE HOVER ZOOM
===================================================== */


/* =====================================================
   IMAGE RADIUS + CINEMATIC IMAGE HOVER ZOOM
===================================================== */

/* Container gambar */
.zoom-image {
    overflow: hidden;
    border-radius: 30px;
}

/* Semua image di dalam zoom container */
.zoom-image img {
    width: 100%;
    border-radius: 0 !important;

    transition: transform 1.2s ease;
    transform: scale(1);
}

/* Hover zoom */
.zoom-image:hover img {
    transform: scale(1.08);
}


/* =====================================================
   GLOBAL IMAGE RADIUS
===================================================== */




/* =====================================================
   GLOBAL IMAGE BORDER RADIUS
   Semua image = 30px
   KECUALI: logo
===================================================== */



.navbar img,
.footer img {

    border-radius:0;

}
.navbar img,
.footer img {

    border-radius:0;

}


/* Navbar Reservation Button */
.navbar-container > .btn{

    padding:0 30px !important;

    min-height:52px !important;

    width:auto !important;

    min-width:0 !important;

    max-width:none !important;

    flex:0 0 auto !important;

}
