/*overall website shaped, etc css*/

body {
    background-color: #eadac6;
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

.map-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("../images/indonesia_map.webp");
    background-repeat: no-repeat;
    background-position: center calc(50% + 90px);
    background-size: min(1500px, 125%) auto;
    opacity: 0.07;
    pointer-events: none;
}


.dest-bg {
    position: relative;
}

.dest-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*background css*/

.bg-sumatra::before {
    background-image: url("../images/sumatrabg.webp");
    background-position: center bottom;
    background-size: 112% auto;
}

.bg-java::before {
    background-image: url("../images/java_bg.webp");
    background-position: center bottom;
    background-size: 100%;
    opacity: 40%;
}

.bg-kalimantan::before {
    background-image: url("../images/kalimantan.bg.webp");
    background-position: left bottom;
    background-size: 100%;
    opacity: 40%;
}

.bg-sulawesi::before {
    background-image: url("../images/sulawesibg.webp");
    background-position: center;
    background-size: 100%;
    opacity: 40%;
}

.bg-papua::before {
    background-image: url("../images/papua_bg.webp");
    background-position: left bottom;
    background-size: 100%;
    opacity: 40%;
}


.bg-gallery::before {
    position: fixed;
    background-image: url("../images/galary_bg.webp");
    background-position: calc(100% + 35vh) calc(100% + 8vh);
    background-size: auto 100vh;
}

.bg-home::before {
    background-image: url("../images/home_bg.webp");
    background-repeat: repeat;
    background-position: center top;
    background-size: 1100px auto;
    opacity: 80%;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    margin-top: 60px;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(1.5rem, 4.5vw + 1rem, 3.5rem);
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: italic;
    margin-top: 0;
    text-align: center;
    font-size: clamp(1rem, 3.5vw + 1rem, 2.5rem);
    margin-bottom: 50px;
}


/*navbar*/

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url("../images/navbar.bg.webp"),
                      url("../images/navbar_background.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: right top, center;
    background-size: auto 125%, cover;
    padding: 18px 48px;
    flex-wrap: wrap;
    margin: 0;
    border-radius: 0 0 25px 25px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c2a1f;
}

.nav-logo img {
    height: 40px;
    width: auto;
    margin-right: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    margin-left: 20px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2c2a1f;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.nav-links a:hover {
    opacity: 0.7;
}


.chevron {
    font-size: 0.7em;
    margin-left: 3px;
    margin-right: -7px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background-color: #e8dcc4;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 20px;
    white-space: nowrap;
    font-weight: 500;
}

.dropdown-menu a:hover {
    opacity: 1;
    background-color: #d6c4a4;
}


/*choose repeatdly to reszie*/

@media (max-width: 1200px) {
    .navbar {
        background-size: 190px auto, cover;
    }
}

@media (max-width: 480px) {
    .navbar {
        background-size: 200px auto, cover;
    }
}

/* Di layar HP keempat menu tidak muat sebaris dengan ukuran normal:
   "About Me" pecah dua baris dan "Gallery" terpotong keluar layar.
   Huruf, jarak, dan logonya dikecilkan supaya keempatnya muat sebaris. */
@media (max-width: 700px) {
    .navbar {
        padding: 12px 16px;
        position: relative;
    }

    .nav-logo img {
        height: 30px;
        margin-right: 10px;
    }

    .nav-links {
        width: 100%;
        margin-left: 0;
        gap: 14px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .nav-links a {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Menu Destinations dipatok selebar navbar. Kalau tetap menempel di
       item "Destinations", lebar 220px-nya menjulur keluar layar dan
       halaman jadi bisa digeser ke samping. */
    .dropdown {
        position: static;
    }

    .dropdown-menu {
        left: 16px;
        right: 16px;
        min-width: 0;
    }
}



/*hero image at homepage*/

.carousel {
    position: relative;
    max-width: 1800px;
    margin: 50px auto;
    padding: 0 60px;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 24 / 8;
    overflow: hidden;
}

.carousel-track {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background-color: #ddd0bb;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    will-change: transform;
}

.carousel-slide:not(.active) {
    filter: brightness(0.7);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.carousel-caption {
    position: absolute;
    left: 28px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.carousel-caption h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
}

.carousel-caption p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.15rem;
}

.carousel-arrow {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 5;
}

.carousel-arrow img {
    width: clamp(20px, 2vw + 8px, 44px);
    height: auto;
    display: block;
}

.carousel-arrow:hover {
    opacity: 0.7;
}

.carousel-arrow-left {
    left: 30px;
}

.carousel-arrow-right {
    right: 30px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid #8a7a63;
    cursor: pointer;
}

.dot.active {
    background-color: #8a7a63;
}

@media (max-width: 800px) {
    .carousel-viewport {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 500px) {
    .carousel-viewport {
        aspect-ratio: 7 / 5;
    }
}

.about {
    max-width: 2000px;
    margin: 50px auto;
    background-image: url("../images/aboutme_background.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/*travel map js */

.travel-map {
    text-align: center;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.map-interactive {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 1227 / 645;
}

.map-base {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.region {
    position: absolute;
    border: none;
    background: transparent;
    padding: 0;
    cursor: default;
}

.region.is-active {
    z-index: 5;
}

.region-highlight {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    opacity: 0;
    filter: brightness(1.3) saturate(1.15);
    transition: opacity 0.18s ease, filter 0.18s ease;
}

.region.is-active .region-highlight {
    opacity: 1;
    filter: brightness(1.3) saturate(1.15)
            drop-shadow(0 5px 6px rgba(30, 40, 20, 0.45));
}

@media (prefers-reduced-motion: reduce) {
    .region.is-active .region-highlight {
        filter: brightness(1.3) saturate(1.15);
    }
}

.travel-map-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
    color: #3a3323;
}

.travel-map-thin {
    font-weight: 300;
    font-style: italic;
}

/*aboutme page css*/

.about-inner {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 60px 100px;
}

.about-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: left;
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    color: #3a3323;
}

.about-title-thin {
    font-weight: 300;
    font-style: italic;
}

.about-text {
    max-width: 1000px;
}

.about-desc {
    margin-top: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: #5b5236;
}

.about-photos {
    position: relative;
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    align-self: center;
}

.about-photo {
    position: absolute;
    display: block;
    width: 240px;
    height: auto;
    align-items: center;
    margin-top: 5px;
}

.about-photo-front {
    top: 0;
    left: 40px;
    transform: rotate(-5deg);
    z-index: 2;
}

.about-photo-back {
    top: 70px;
    left: 120px;
    width: 300px;
    transform: rotate(10deg);
    z-index: 1;
}

@media (max-width: 600px) {
    .about-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 90px 5ch;
    }
    .about-text {
        max-width: 100%;
    }
    .about-title {
        margin-top: 10px;
        text-align: center;
    }
    .about-photos {
        width: 300px;
        height: 230px;
        margin-top: 10px;
    }
    .about-photo {
        width: 180px;
    }
}
@media (max-width: 1000px) {
    .about-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 80px 70px;
    }
    .about-text {
        text-align: left;
        max-width: 100%;
    }
    .about-photos {
        width: 380px;
        height: 300px;
        margin-top: 5px;
    }
    .about-photo {
        width: 250px;
        margin-top: 0;
    }
    .about-photo-back {
        width: 300px;
    }
}

.meet-inner {
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 70px clamp(30px, 6vw, 70px);
}

.meet-text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 820px;
}

.meet-title {
    margin: 0 0 26px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    color: #3a3323;
}

.meet-title-thin {
    font-weight: 400;
    font-style: italic;
}

.meet-desc {
    margin: 0 0 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: #5b5236;
}

.meet-desc:last-child {
    margin-bottom: 0;
}

.meet-photo {
    flex: 0 1 auto;
    width: 50%;
    max-width: 550px;
    min-width: 0;
    transform: translateY(6%);
}

.meet-photo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .meet-inner {
        gap: 40px;
    }
    .meet-photo {
        width: 45%;
    }
}

@media (max-width: 850px) {
    .meet-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 50px 40px;
    }
    .meet-text {
        max-width: 100%;
    }
    .meet-photo {
        width: 75%;
        max-width: 420px;
    }
}

/*gallery page css*/

.gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px clamp(24px, 5vw, 80px) 90px;
}

.gallery-grid {
    position: relative;
    width: 100%;
    aspect-ratio: 802 / 544;
    container-type: inline-size;
}

.gallery-title {
    position: absolute;
    left: 60.8%;
    top: 3%;
    margin: 0;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 6.6cqw;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #4a3f26;
}

.gallery-item {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    background-color: #d8c9ae;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


.gallery-item img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.gallery-item img.is-visible {
    opacity: 1;
}


.gallery-item img.gallery-stamp {
    inset: auto;
    right: 5%;
    bottom: 4%;
    width: 23%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:nth-of-type(1) { left: 11.2%; top: 15.1%; width: 12.8%; height: 26.7%; }
.gallery-item:nth-of-type(2) { left: 25.2%; top: 14.3%; width: 34.4%; height: 58.3%; }
.gallery-item:nth-of-type(3) { left: 3.4%;  top: 43.6%; width: 20.6%; height: 29.0%; }
.gallery-item:nth-of-type(4) { left: 60.8%; top: 27.2%; width: 17.8%; height: 22.8%; }
.gallery-item:nth-of-type(5) { left: 60.8%; top: 51.8%; width: 20.7%; height: 41.0%; }
.gallery-item:nth-of-type(6) { left: 9.0%;  top: 74.4%; width: 33.6%; height: 15.1%; }
.gallery-item:nth-of-type(7) { left: 43.8%; top: 74.4%; width: 14.0%; height: 20.6%; }


@media (max-width: 1024px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        aspect-ratio: auto;
        container-type: normal;
    }
    .gallery-title {
        position: static;
        grid-column: 1 / -1;
        text-align: center;
        font-size: clamp(1.75rem, 6vw, 3rem);
        margin-bottom: 10px;
    }
    .gallery-item:nth-of-type(n) {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


@media (max-width: 1024px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        aspect-ratio: auto;
    }

    .gallery-title {
        grid-column: 1 / -1;
        grid-row: 1;
    }

  
    .gallery-item:nth-of-type(1) {
        grid-column: 1;
        grid-row: 2 / 4;
        aspect-ratio: auto;
    }

   
    .gallery-item:nth-of-type(6) {
        grid-column: 2 / 5;
        grid-row: 2;
        aspect-ratio: 3 / 1;
    }

    
    .gallery-item:nth-of-type(4) {
        grid-column: 2;
        grid-row: 3;
        aspect-ratio: auto;
    }

    
    .gallery-item:nth-of-type(7) {
        grid-column: 3 / 5;
        grid-row: 3;
        aspect-ratio: 16 / 11;
    }

   
    .gallery-item:nth-of-type(2),
    .gallery-item:nth-of-type(3),
    .gallery-item:nth-of-type(5) {
        grid-column: span 2;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 0.9fr 1fr 1.35fr;
    }

    .gallery-item:nth-of-type(6) {
        grid-column: 2 / 4;
        aspect-ratio: 23 / 9;
    }

    .gallery-item:nth-of-type(4) {
        grid-column: 2;
        aspect-ratio: 95 / 110;
    }

    .gallery-item:nth-of-type(7) {
        grid-column: 3;
        aspect-ratio: 130 / 110;
    }

    .gallery-item:nth-of-type(2),
    .gallery-item:nth-of-type(3),
    .gallery-item:nth-of-type(5) {
        grid-column: 1 / -1;
    }
}


/* bali page css*/

.bali,
.dest {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px clamp(30px, 6vw, 90px) 90px;
}

.bali-inner,
.dest-inner {
    display: flex;
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
}

.bali-text,
.dest-text {
    flex: 1 1 0;
    min-width: 0;
}

.bali-title,
.dest-title {
    margin: 0 0 30px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 4vw + 1rem, 4rem);
    line-height: 1.05;
    color: #44553a;
}

.bali-desc,
.dest-desc {
    margin: 0 0 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
    color: #5b5236;
}

.bali-desc:last-child,
.dest-desc:last-child {
    margin-bottom: 0;
}

.photo-frame {
    position: relative;
    flex: 0 0 40%;
    box-sizing: border-box;
    padding: clamp(10px, 1.2vw, 18px);
    border-radius: 30px;
    background-color: #e3d7c0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}


.photo-frame-stack {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.2vw, 18px);
    transform: rotate(8deg);
}


.photo-stack-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background-color: #d8c9ae;
    aspect-ratio: 1 / 1;
}

.photo-stack-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}


@media (max-width: 900px) {
    .photo-frame-stack {
        flex: 0 0 auto;
        align-self: center;
        width: min(88%, 430px);
        transform: rotate(4deg);
    }
}

.photo-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background-color: #d8c9ae;
    aspect-ratio: 20 / 21;
}

.photo-carousel:has(img) {
    aspect-ratio: auto;
}

.photo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.photo-carousel:has(img) .photo-slide:first-child {
    position: relative;
}

.photo-slide.is-visible {
    opacity: 1;
}

.photo-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-carousel:has(img) .photo-slide:first-child img {
    height: auto;
}

.photo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.photo-dots .dot {
    padding: 0;
    background: none;
}

.photo-dots .dot.active {
    background-color: #8a7a63;
}

@media (max-width: 900px) {
    .bali-inner,
    .dest-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .photo-frame {
        flex: 0 0 auto;
        align-self: center;
        width: min(100%, 460px);
    }
    .bali-title,
    .dest-title {
        text-align: center;
    }
}

.bali-showcase,
.dest-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(30px, 6vw, 90px) 100px;
}

.dest-showcase {
    position: relative;
    z-index: 2;
}


.bg-kalimantan .dest-showcase,
.bg-sulawesi .dest-showcase {
    margin-top: -190px;
}

.bg-kalimantan .dest-tilt-single,
.bg-sulawesi .dest-tilt-single {
    width: 54%;
}


@media (max-width: 900px) {
    .bg-kalimantan .dest-showcase,
    .bg-sulawesi .dest-showcase {
        margin-top: 0;
    }
    .bg-kalimantan .dest-tilt-single,
    .bg-sulawesi .dest-tilt-single {
        width: 45.1%;
    }
}

.bali-showcase-inner,
.dest-showcase-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 736 / 340;
}


/* all ornament al in one css*/

.bali-title-ornament,
.dest-title-ornament {
    width: 0.9em;
    height: auto;
    margin-left: -0.3em;
    vertical-align: 0.1em;
}

.ornament-java {
    width: 1.05em;
    margin-left: -0.28em;
    vertical-align: 0.002em;
}

.ornament-kalimantan {
    width: 1.6em;
    margin-left: -0.9em;
    vertical-align: -0.3em;
}

.ornament-papua {
    width: 1.8em;
    margin-left: -0.35em;
    margin-right: -0.25em;
    vertical-align: -0.25em;
}

.ornament-sumatra {
    width: 3.1em;
    margin-left: -0.7em;
    margin-right: -1.4em;
    vertical-align: -0.4em;
}


.bali-ornament {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -10px;
    width: 32%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.bali-tilt,
.dest-tilt {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    background-color: #d8c9ae;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.bali-tilt img,
.dest-tilt img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.dest-tilt-single {
    left: 6.5%;
    top: 1.5%;
    width: 45.1%;
    height: 92%;
    transform: rotate(-2deg);
    z-index: 2;
}

.bali-tilt-left,
.dest-tilt-left {
    left: 6.5%;
    top: 1.5%;
    width: 45.1%;
    height: 73.5%;
    transform: rotate(-2deg);
    z-index: 2;
}

.bali-tilt-right,
.dest-tilt-right {
    left: 48.2%;
    top: 19%;
    width: 44.8%;
    height: 69%;
    transform: rotate(5deg);
    z-index: 3;
}


/*all in one food pannel*/

.food {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(30px, 6vw, 90px) 100px;
}


.food-panel {
    max-width: 1350.62px;
    margin: 0 auto;
    aspect-ratio: 1350.62 / 531.95;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    container-type: inline-size;
    background-image: url("../images/food.bg.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 46px) clamp(34px, 4vw, 52px);
}

.food-title {
    margin: 0 0 clamp(20px, 2.5vw, 32px);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1.25rem, 1.6vw + 0.75rem, 2rem);
    color: #3f5133;
    margin-top: 20px;
}

.food-title-thin {
    font-weight: 300;
    font-style: italic;
}

.food-marquee {
    overflow: hidden;
}

.food-track {
    display: flex;
    gap: clamp(14px, 1.6vw, 24px);
    width: max-content;
    animation: food-scroll 32s linear infinite;
    will-change: transform;
}

@keyframes food-scroll {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}


.food-card {
    flex: 0 0 auto;
    width: 38cqw;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: clamp(18px, 2.2vw, 30px);
    background-color: #d8c9ae;
}

.food-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 700px) {
    .food-panel {
        aspect-ratio: auto;
    }
    .food-card {
        width: 78cqw;
    }
}


@media (prefers-reduced-motion: reduce) {
    .food-track {
        animation: none;
    }
}


@media (max-width: 700px) {
    .bali-showcase-inner,
    .dest-showcase-inner {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }
    .bali-outline {
        display: none;
    }
    
    .bali-tilt,
    .dest-tilt {
        position: relative;
        left: auto;
        top: auto;
        width: 90%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
   
    .bg-kalimantan .dest-tilt-single,
    .bg-sulawesi .dest-tilt-single {
        width: 90%;
    }
}


/*csslightbox*/

.photo-slide img,
.food-card img,
.bali-tilt img,
.dest-tilt img,
.gallery-item img {
    cursor: zoom-in;
}

.photo-slide:not(.is-visible) {
    pointer-events: none;
}

.gallery-item img:not(.is-visible) {
    pointer-events: none;
}


.food-marquee:hover .food-track {
    animation-play-state: paused;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 70px);
    background-color: rgba(234, 218, 198, 0.97);
    cursor: zoom-out;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: clamp(16px, 2vw, 28px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.lightbox-close {
    position: absolute;
    top: clamp(14px, 2vw, 26px);
    right: clamp(16px, 2.5vw, 34px);
    border: none;
    background: none;
    padding: 0 6px;
    font-size: 2.5rem;
    line-height: 1;
    color: #4a3f26;
    cursor: pointer;
}

.lightbox-close:hover {
    opacity: 0.6;
}

body.lightbox-open {
    overflow: hidden;
}


/*aboutme journey photo css*/

.journey {
    padding: 20px 0 90px clamp(30px, 6vw, 100px);
    margin-left: 0;

}

.journey-title {
    margin: 0 0 30px;
    padding-right: clamp(30px, 6vw, 100px);
    text-align: right;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    color: #3a3323;
}

.journey-title-thin {
    font-weight: 300;
    font-style: italic;
}

.journey-photo {
    display: block;
    width: 100%;
    aspect-ratio: 1485 / 830;
    height: auto;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 850px) {
    .journey {
        padding: 10px 0 60px 30px;
    }
    .journey-title {
        padding-right: 30px;
        text-align: center;
    }
}

/*footer css*/

.footer {
    margin-top: 90px;
    padding: 26px clamp(24px, 4vw, 48px) 34px;
    text-align: center;
    background-image: url("../images/navbar_background.webp");
    background-size: cover;
    background-position: center;
    border-radius: 25px 25px 0 0;
}


.footer-title {
    margin: 0 0 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1rem, 0.6vw + 0.8rem, 1.3rem);
    color: #4a3f26;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-links a {
    display: inline-flex;
    color: #4a3f26;
}

.footer-links a:hover {
    opacity: 0.65;
}

.footer-links svg {
    width: clamp(26px, 2vw + 14px, 34px);
    height: auto;
}
