/* RESET & BOX-SIZING */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../font/ABCArizonaFlareVariable-Trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* lebih baik untuk performa */
}

/* Light */
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../font/ABCArizonaFlareVariable-Trial.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../font/ABCArizonaFlareVariable-Trial.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../font/ABCArizonaFlareVariable-Trial.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../font/ABCArizonaFlareVariable-Trial.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Italic */
@font-face {
    font-family: 'ABCArizonaFlare';
    src: url('../font/ABCArizonaFlareVariable-Trial.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


/* BASE & TYPOGRAPHY */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ================= Preloader Wrapper ================= */
#preloader {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 9999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.preloader-logo {
    z-index: 10;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 24px 0px;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.preloader-logo img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    /* biar responsive di mobile */
    width: 180px;
    /* tetap jaga ukuran di desktop */
    height: auto;
}

/* 4 BOXES yang menutup seluruh layar */
.preloader-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 5;
}

.preloader-boxes .box {
    flex: 1;
    background: #ffffff;
    transform: translateY(0);
}

/* PROGRESS BAR & % (di atas kotak) */
.preloader-progress {
    position: relative;
    z-index: 10;
    text-align: center;
    margin: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

#preloader-percentage {
    font-family: 'K2D', sans-serif;
    font-size: 1.5rem;
    color: #1e352c;
    margin-bottom: .5rem;
}

.preloader-bar {
    width: 60%;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

#preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: #1e352c;
    transition: width .3s ease;
}

/* =============== Slide-Up Animation =============== */

#preloader.animate-on .preloader-logo {
    opacity: 0;
    transform: translateY(-40px);
    /* delay supaya persis bersamaan dengan kotak mulai slide */
    transition-delay: 0s;
}

#preloader.animate-on .preloader-progress {
    opacity: 0;
    transform: translateY(-40px);
    /* delay supaya persis bersamaan dengan kotak mulai slide */
    transition-delay: 0s;
}

/* aktifkan saat selesai loading */
#preloader.animate-on .preloader-boxes .box {
    animation: slideUp 0.8s ease forwards;
}

/* stagger dari kanan (nth-child(4) paling cepat) */
#preloader.animate-on .preloader-boxes .box:nth-child(4) {
    animation-delay: 0s;
}

#preloader.animate-on .preloader-boxes .box:nth-child(3) {
    animation-delay: 0.1s;
}

#preloader.animate-on .preloader-boxes .box:nth-child(2) {
    animation-delay: 0.2s;
}

#preloader.animate-on .preloader-boxes .box:nth-child(1) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        transform: translateY(-100%);
    }
}

/******** HEADER *********/
/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    z-index: 1000;
}

.blur-zone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 999;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
    .blur-zone {
        height: 80px;
    }
}


.container {
    position: relative;
    padding: 8px 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper-logo-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ukuran icon */
.menu-toggle .hamburger-icon {
    width: 34px;
    /* sesuaikan kalau perlu lebih besar/kecil */
    height: auto;
    display: block;
}

/* hover state (opsional) */
.menu-toggle:hover .hamburger-icon {
    opacity: 0.8;
}


.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 8px;
    background: #fff;
    z-index: 900;
}


/* LOGO */
.logo-icon {
    width: 110px;
    height: auto;
}

/* NAV */
.main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 48px;
}

.nav-link {
    text-align: center;
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffffb4;
    text-decoration: none;
    transition: color .2s;
}

.nav-link.active,
.nav-link:hover {
    color: #13ff1e;
}

.site-header.nav-white .nav-link {
    color: #fff !important;
}

.site-header.nav-white .nav-link:hover,
.site-header.nav-white .nav-link.active {
    color: #fff !important;
}

.has-dropdown {
    position: relative;
}

/* sesudah dihapus */
.white-nav .nav-link {
    color: #fff !important;
}

.white-nav .logo svg path {
    fill: #fff !important;
}

/* —————————————————————————————————————————————— */
/* 1. Sembunyikan dropdown default (override!)    */
/* —————————————————————————————————————————————— */

.main-nav .has-dropdown::before,
.main-nav .has-dropdown::after,
.main-nav .has-dropdown .dropdown-menu::before,
.main-nav .has-dropdown .dropdown-menu::after {
    content: none !important;
}

.main-nav .has-dropdown .dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

/* 2) Define animasi keyframes */
@keyframes dropdownIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.main-nav .has-dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownIn 0.25s ease-out forwards;
}

.main-nav .has-dropdown>a.nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

/* —————————————————————————————————————————————— */
/* 2. Tampilkan saat hover pada LI yang benar-benar di-hover */
/* —————————————————————————————————————————————— */
.main-nav .has-dropdown:hover>.dropdown-menu {
    display: block !important;
    /* override kalau ada rule display lain */
    opacity: 1;
    visibility: visible;
}

/* —————————————————————————————————————————————— */
/* 3. Styling dropdown box                        */
/* —————————————————————————————————————————————— */
.main-nav .has-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 108%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    min-width: 220px;
    padding: 8px 0;
    z-index: 200;
    /* cukup tinggi supaya muncul di atas video/section */
}

/* —————————————————————————————————————————————— */
/* 4. Item‐item & hover state                     */
/* —————————————————————————————————————————————— */
.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 12px 16px;
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #2D3A45;
    text-decoration: none;
    transition: background .2s;
}

.dropdown-link:hover {
    background: #F5F5F5;
}

/* —————————————————————————————————————————————— */
/* 5. Chevron default & rotate on hover           */
/* —————————————————————————————————————————————— */
.chevron-icon {
    width: 20px;
    height: auto;
    margin-left: 4px;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform .2s ease;
}

.has-dropdown:hover>.nav-link .chevron-icon {
    transform: rotate(180deg);
    /* atau 90deg sesuai kebutuhan SVG kau */
}


/* ============================= */
/*  ELEGANT FULL-ROUNDED BUTTON */
/* ============================= */

.actions .btn {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
    font-family: 'K2D', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;

    /* smooth transitions */
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

/* Hover & Focus: lembut, elegan */
.actions .btn:hover,
.actions .btn:focus {
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Active/Pressed: “tekan” tanpa shadow berlebih */
.actions .btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.reservation.section2-active {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: none !important;
}

/* ============================= */
/*  RESPONSIVE HEADER (<768px)   */
/* ============================= */
@media (max-width: 768px) {

    /* Kurangi padding kiri-kanan container */
    .container {
        padding: 12px 20px;
        height: auto;
    }

    /* Sembunyikan navigation links */
    .main-nav {
        display: none;
    }

    /* Resize logo */
    .logo-icon {
        width: 80px;
        height: auto;
    }

    .footer-title {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 32px;
        text-align: left;
    }

    /* Resize tombol reservation */
    .actions .btn {
        /* hapus height/line-height statis */
        height: 32px;
        line-height: normal;
        padding: 12px 12px;
        font-size: 11px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .menu-toggle {
        display: inline-flex;
    }

    /* style hamburger */
    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-nav {
        display: block;
        /* must always be render-able */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        clip-path: circle(0% at var(--cx, 50%) var(--cy, 50%));
        transition: clip-path 0.4s ease-in-out;
        pointer-events: none;
        z-index: 900;
    }

    /* 1) MOBILE NAV HEADER */
    .mobile-nav-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    /* 1a) Tombol Close (X) */
    .close-btn {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .3s;
        z-index: 910;
    }

    .close-btn:hover {
        background: rgba(0, 0, 0, 0.2);
    }

    .close-icon {
        font-size: 1.25rem;
        line-height: 1;
        color: #0d1a4f;
    }

    /* 1b) Logo di Mobile Nav */
    .logo-mobile img {
        width: 80px;
    }

    .site-header.open .mobile-nav {
        clip-path: circle(150% at var(--cx) var(--cy));
        pointer-events: auto;
    }



    .mobile-nav ul {
        list-style: none;
        padding: 80px 20px;
        margin: 0;
        text-align: center;
    }

    .mobile-nav li+li {
        margin-top: 1rem;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #0d1a4f;
        font-size: 1.25rem;
        font-weight: 500;
    }

    /* when open: expand circle & allow click */
    .site-header.open .menu-toggle .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.open .menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .site-header.open .menu-toggle .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-header.open .mobile-nav {
        clip-path: circle(150% at var(--cx) var(--cy));
        pointer-events: auto;
    }
}


/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding-top: 100px;
    /* ruang untuk header fixed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.section-1 {
    background: #f8f9fa;
}

.section-2 {
    background: #e9ecef;
}

.section-3 {
    background: #dee2e6;
}

.section-4 {
    background: #ced4da;
}

.section-5 {
    background: #ffffff;
}



/* ============================= */
/*  SECTION-1                    */
/* ============================= */

.overview-section {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    background: #FFF;
    overflow: hidden;
}

.overview-purpose-wrapper {
    display: flex;
    z-index: 1;
    width: 100vw;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.purpose__content {
    display: flex;
    height: auto;
    width: 100%;
    padding: 0px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #E6E6E6;
    border-top: 1px solid #E6E6E6;
}

.purpose__content-inner {
    display: flex;
    width: 100%;
    padding: 80px 200px 150px 200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;
    flex: 1 0 0;
    align-self: stretch;
    border-right: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
}

.purpose__label {
    color: #66A375;
    text-align: center;
    font-family: 'ABCArizonaFlare';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.5px;
}

.purpose__texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purpose__heading {
    color: var(--Option-A-Text-Title, #1C1E21);
    text-align: center;
    font-family: 'ABCArizonaFlare';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -1px;
}

.purpose__subheading {
    color: var(--Option-A-Text-Title, #1C1E21);
    text-align: center;
    font-family: 'ABCArizonaFlare';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.5px;
}

/* ICON ROW */
.purpose__icons {
    position: relative;
    display: flex;
    top: -70px;
    justify-content: center;
    gap: 60px;
}

.purpose__icons .icon-block img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.icon-block {
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}    

/* cukup CSS untuk label, SVG styling bebas */
.icon-label {
    color: #5E5E5E;
    font-size: 18px;
    line-height: 1.6;
    white-space: nowrap;
}

@media (max-width: 680px) {

    .purpose__content {
        padding: 0px 16px;
    }

    .purpose__content-inner {
        padding: 80px 32px;
        gap: 28px;
    }

    .icon-block {
        width: 82px;
    }

    .purpose__label {
        font-size: 18px;
    }

    .purpose__heading {
        font-size: 20px;
        line-height: 140%;
    }

    .purpose__subheading {
        font-size: 16px;
        line-height: 140%;
    }

    .purpose__icons {
        top: -40px;
        gap: 26px;
    }

    .purpose__icons .icon-block img {
        width: 82px;
        height: 82px;
    }

    .icon-label {
        font-size: 14px;
    }

}


.overview-wrapper-1 {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 120px;
    padding-left: 20%;
    padding-right: 20%;
    align-self: stretch;
}

.overview-wrapper-1>img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .overview-wrapper-1>img {
        width: 60vw;
    }

    .overview-wrapper-1 {
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

.explore-btn {
    display: flex;
    padding: 10px 10.13px 10px 25px;
    justify-content: flex-end;
    align-items: center;
    gap: 12.79px;
    border-radius: 60px;
    border: 1px solid rgba(222, 222, 222, 0.50);
    background: #FFF;
    backdrop-filter: blur(12px);
    text-decoration: none;

}

.explore-btn p {
    color: #485359;
    font-family: 'K2D', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    /* di bawah konten Overview */
    pointer-events: none;
    /* supaya klik element lain tidak terhalang */
}

.overview-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 48px;
    gap: 8px;
}

.overview-title {
    font-family: 'ABCArizonaFlare', serif;
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 32px;
    text-align: center;
    color: #1e352c;
}

.overview-text {
    font-family: 'ABCArizonaFlare', serif;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgb(45, 45, 45);
    text-align: center;
    max-width: 1000px;
    font-weight: 900;
}

@media (max-width: 680px) {

    .overview-content {
        padding: 24px 24px;
        margin-right: 24px;
        margin-left: 24px;
    }

    .overview-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .overview-title {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .overview-wrapper-1 {
        gap: 2rem;
        padding: 2rem 1rem;
    }
}


/* ============================= */
/*  DESTINATION    */
/* ============================= */
#destination {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* wrapper bisa full-width */
    justify-content: flex-start;
    background: #ffffff;
}

.destination-header {
    text-align: center;
    margin-bottom: 1rem;
}

.destination-title {
    font-family: 'ABCArizonaFlare', serif;
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 32px;
    text-align: center;
    color: #1e352c;
}

.destination-text {
    font-family: 'K2D', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    color: #345247;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 2em;
}

/* — Marquee container — */
.destination-marquee-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* — Marquee track — */
.destination-marquee {
    display: flex;
    white-space: nowrap;
}

.destination-item {
    position: relative;
    flex: 0 0 auto;
    width: 300px;
    height: 450px;
    margin-right: 24px;
    cursor: pointer;
    border-radius: 0px;
    overflow: hidden;
}

/* — Image & overlay — */
.destination-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* isi penuh lalu crop */
    object-position: center;
    /* fokus di tengah */
    transform: scale(1);
    transition: transform 0.5s ease;
}

.destination-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.774), transparent);
    color: #fff;
}

.overlay-wrapper {
    display: flex;
    width: 100%;
    height: 85px;
    align-items: center;
    padding: 1.5rem;
    gap: 7px;
}

.destination-item .overlay h3 {
    margin: 0;
    flex: 1 0 0;
    font-family: 'K2D', sans-serif;
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

/* — Icon arrow (hidden default) — */
.destination-item .overlay img {
    width: 16px;
    height: 16px;
    float: right;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* — Hover state — */
.destination-item:hover img {
    transform: scale(1.5);
}

.destination-item:hover .overlay img {
    opacity: 1;
}

/* — Responsive: mobile swipe carousel — */
@media (max-width: 680px) {

    #destination {
        min-height: auto !important;
        height: auto !important;
        padding: 48px 0px;
    }

    .destination-header {
        margin-bottom: 12px;
        margin-right: 32px;
        margin-left: 32px;
    }

    .destination-title {
        font-size: 1.6rem;
        line-height: 1.5;
        font-weight: 400;
        margin-bottom: 24px;
    }

    .destination-text {
        font-family: 'K2D', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 400;

    }

    .destination-marquee-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .destination-marquee {
        display: flex;
        scroll-snap-type: x mandatory;
    }

    .destination-item {
        scroll-snap-align: start;
        /* pastikan width sesuai, misal: */
        flex: 0 0 80vw;
        margin-right: 16px;
    }
}

/* ============================= */
/*  EXPERIENCES                  */
/* ============================= */

.experinces-sec {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFF;
    overflow: hidden;
}

/* ================================
   Experiences Section (BEM-style)
   ================================ */

/* Block */
.experiences {
    overflow: hidden;
    height: auto;
    width: 100%;
    padding: 32px 0px;
    position: relative;
}

/* ============================= */
/*  Gallery Activity    */
/* ============================= */

/* Section wrapper */
.gallery-activity {
    position: relative;
    padding: 80px 0;
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

/* Header */
.gallery-activity__header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-activity__header h2 {
    font-size: 2.5rem;
    color: #345247;
}

.gallery-activity__header p {
    font-size: 1.1rem;
    color: #556;
    margin-top: 8px;
}

/* Viewport & track */
.gallery-activity__container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow-x: auto;
    overflow-y: hidden;
    perspective: 1200px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;

}

.gallery-activity__track {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 80px;
    /* negative right padding “works” but cleaner as margin:
       margin-right: -200px; */
    padding-right: -200px;
}

/* Items */
.gallery-activity__item {
    flex: 0 0 auto;
    margin-left: -80px;
    scroll-snap-align: center;
    transition: z-index .3s;
}

.gallery-activity__item:first-child {
    margin-left: 0;
}

.gallery-activity__item img {
    --tx: 0px;
    --oy: 0px;
    --tz: 0px;
    --scale: 1;
    width: 460px;
    display: block;
    box-shadow: 0 10px 40px rgba(95, 47, 17, 0.4);
    filter: saturate(40%) sepia(30%) hue-rotate(5deg);
    transform:
        perspective(1200px) translateX(var(--tx)) translateY(var(--oy)) translateZ(var(--tz)) scale(var(--scale));
    transform-origin: center center;
    transition: transform .6s ease, filter .6s ease;
    backface-visibility: hidden;
}

.gallery-activity__item:hover {
    z-index: 10;
}

.gallery-activity__item:hover img {
    --scale: 1.2;
    filter: none;
}

/* Scrollbar (optional styling) */
.gallery-activity__container::-webkit-scrollbar {
    height: 8px;
}

.gallery-activity__container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {

    .gallery-activity {
        height: auto;
        padding: 40px 0;
    }

    .gallery-activity__container {
        height: 50vh;
    }

    .gallery-activity__track {
        padding-left: 40px;
        padding-right: -100px;
    }

    .gallery-activity__item {
        margin-left: -40px;
    }

    .gallery-activity__item img {
        width: 80vw;
        border-width: 6px;
    }
}


/* ===================================================================
   Culinary Section Styles
   =================================================================== */

#culinary {
    height: auto;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px;
    pointer-events: visible;
    background: #ffffff;
}

.culinary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.culinary-title {
    font-family: 'ABCArizonaFlare', serif;
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 8px;
    text-align: center;
    color: #1e352c;
}

.culinary-desc {
    font-family: 'K2D', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    color: #345247;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 2em;
}

/* =============================
     Mosaic Gallery Layout
     ============================= */
.culinary-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 8px;
    width: 100%;
}

/* Define row spans */
.gallery-item.small {
    grid-row: span 1;
}

.gallery-item.medium {
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 3;
}

/* Lock columns via nth-child */
.culinary-gallery .gallery-item:nth-child(1) {
    grid-column: 1;
}

.culinary-gallery .gallery-item:nth-child(2) {
    grid-column: 2;
}

.culinary-gallery .gallery-item:nth-child(3) {
    grid-column: 3;
}

.culinary-gallery .gallery-item:nth-child(4) {
    grid-column: 4;
}

.culinary-gallery .gallery-item:nth-child(5) {
    grid-column: 1;
}

.culinary-gallery .gallery-item:nth-child(6) {
    grid-column: 2;
}

.culinary-gallery .gallery-item:nth-child(7) {
    grid-column: 3;
}

.culinary-gallery .gallery-item:nth-child(8) {
    grid-column: 4;
}

/* =============================
     Gallery Item & Overlay
     ============================= */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

/* Black gradient overlay always visible */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    pointer-events: none;
}

.gallery-item .overlay h3 {
    margin: 0;
    font-family: 'K2D', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Zoom-in effect on hover */
.gallery-item:hover img {
    transform: scale(1.2);
}


/* ============================= */
/*  RESPONSIVE                  */
/* ============================= */
@media (max-width: 768px) {
    #culinary {
        padding: 16px;
    }

    .culinary-header {
        padding-top: 24px;
        margin-bottom: 1.5rem;
    }

    .culinary-title {
        font-size: 1.5rem;
    }

    .culinary-desc {
        font-size: 1rem;
    }

    .culinary-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    /* lepas lock agar mengalir natural */
    .culinary-gallery .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        gap: 8px;
    }
}

/* ============================= */
/*  Promotion                   */
/* ============================= */

#promo {
    height: auto;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px;
    pointer-events: visible;
    background: #ffffff;
}

.promo-title {
    font-family: 'ABCArizonaFlare', serif;
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 32px;
    text-align: center;
    color: #1e352c;
}

.promo-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* opsional: ngunci per item */
    -webkit-overflow-scrolling: touch;
    /* smooth di iOS */
}

/* tiap item */
.promo-item {
    flex: 0 0 25%;
    scroll-snap-align: start;
}

.promo-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* sembunyikan scrollbar di modern browser */
.promo-gallery::-webkit-scrollbar {
    display: none;
}

.promo-gallery {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* RESPONSIVE */
/* tablet: 2 per view */
@media (max-width: 1024px) {
    .promo-item {
        flex: 0 0 50%;
    }
}

/* HP: 1 per view */
@media (max-width: 640px) {
    #promo {
        padding: 24px 16px;
    }

    .promo-item {
        flex: 0 0 80%;
        margin-right: 16px;
    }

    .promo-title {
        font-size: 1.6rem;
        line-height: 1.5;
        font-weight: 400;
        margin-bottom: 24px;
    }
}

/* ============================= */
/*  Testimony                    */
/* ============================= */

#stories {
    height: auto;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 80px 100px 80px;
    gap: 80px;
    pointer-events: visible;
    background: #e5e9e7;
    background-image:
        repeating-linear-gradient(to right,
            rgba(0, 0, 0, 0.1) 0px,
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px,
            transparent 80px);
}

.stories-title {
    font-family: 'ABCArizonaFlare', serif;
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px;
    text-align: center;
    color: #1e352c;
}

.stack-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    margin: 50px auto;
    perspective: 1000px;
    overflow: visible;
}

/* Card dasar */
.card {
    --rot: 0deg;
    --tx: 0px;
    --ty: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform-origin: center center;
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

/* Gaya gambar */
.card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* hover effect pada kartu depan */
.card.front {
    /* pastikan transition box-shadow juga smooth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.front:hover {
    /* skid up sedikit dan membesar */
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1.1);
}

.card.front:hover img {
    /* shadow lebih lebar + blur sedikit */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Animasi keluar (front card) */
@keyframes fly-out {
    0% {
        opacity: 1;
        filter: blur(0);
    }

    50% {
        filter: blur(4px);
    }

    100% {
        /* ubah relatif dari titik tengah */
        transform: translate(-50%, -50%) translate(250px, -180px) rotate(20deg) scale(0.5);
        opacity: 0;
        filter: blur(8px);
    }
}

/* Animasi masuk kembali di belakang */
@keyframes fly-in {
    0% {
        transform: translate(-50%, -50%) translate(-250px, 180px) rotate(-20deg) scale(0.5);
        opacity: 0;
        filter: blur(8px);
    }

    50% {
        filter: blur(4px);
    }

    100% {
        transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

/* Kelas trigger */
.card.out {
    animation: fly-out 0.6s ease forwards;
}

.card.in {
    animation: fly-in 0.6s ease forwards;
}

/* Responsive tweak */
@media (max-width: 768px) {

    #stories {
        padding: 32px 32px 100px 32px;
        gap: 40px;
    }

    .stack-gallery {
        max-width: 90vw;
    }

    .card {
        width: 90%;
    }

    .stories-title {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}

.section-6 {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    z-index: 3;
    background: #ebebeb;
}

/* ============================= */
/*  FOOTER   */
/* ============================= */
/* footer.css */
.site-footer {
    width: 100vw;
    margin: 0 auto;
    padding: 48px 80px;
    background: #1C1A10;
    display: flex;
    flex-direction: column;
    gap: 53px;
}

/* Top Section */
.site-footer__top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 74px;
}

/* Columns Wrapper */
.site-footer__columns {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 74px;
}

/* Brand / Title */
.site-footer__brand-title {
    color: #fff;
    font-family: 'ABCArizonaFlare', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Contact & Social Sections */
.site-footer__contact,
.site-footer__social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Ensure contact box is fixed width */
.site-footer__contact {
    width: 274px;
}

/* Headings in contact/social */
.site-footer__heading {
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

/* Contact text */
.site-footer__text {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'K2D', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

/* Social icons row */
.site-footer__icons {
    display: flex;
    gap: 16px;
}

/* Individual icon placeholder */
.site-footer__icon {
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Logo area beside columns */
.site-footer__logo {
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 400;
    align-self: flex-start;
}

.site-footer__divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Bottom Section */
.site-footer__bottom {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 47px;
}

/* Rights text stretches */
.site-footer__rights {
    flex: 1;
    color: #fff;
    font-family: 'K2D', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.site-footer__credit {
    color: #fff;
    font-family: 'K2D', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* -- Responsive Example -- */
@media (max-width: 768px) {
    .site-footer {
        padding: 24px 16px;
        gap: 48px;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer__columns {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer__contact {
        width: 100%;
    }

    .site-footer__bottom {
        flex-direction: column;
        justify-content: flex-start;
        gap: 16px;
    }
}



/* Floating Button – posisi fixed di kanan bawah */
.float-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1001;
    /* pastikan di atas elemen lain */
    display: block;
    /* atau inline-block */
    width: 60px;
    /* sesuaikan ukuran */
    height: 60px;
    cursor: pointer;
    transition: transform .2s ease;
}

.float-button img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hover effect (opsional) */
.float-button:hover {
    transform: scale(1.1);
}

/* Override margin di layar mobile */
@media (max-width: 767px) {
    .float-button {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
    }
}

/* Popup Promo */

.popup-offers-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-offers {
    position: relative;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    max-width: min(100vw, 400px);
    /* max width untuk poster vertikal */
    width: auto;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-offers img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: unset;
    border-radius: 12px;
}

/* Close Button */
.popup-offers-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* MOBILE (≤680px) */
@media (max-width: 680px) {
    .popup-offers {
        max-width: 70vw;
    }
}