/* RESET AMAN */
*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

:root {
    --pink: #AC7B27;
    --pink-muted:#472c19;
    --pink-light: #c56900;
    --pink-hover: #653e11;
    --white: #fff;
    --grey: #ccc;
    --light-grey: #d4d4d4;
    --dark-grey: #999;
    --dark: #151515;
    --black: #000;
    --vh: 100vh;
}

@supports (height: 100vh) {
    :root {
        --vh: 100dvh;
    }
}




/* ======================
   LOADING SCREEN
====================== */

#loading-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, #111, #000);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

#loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-text {
    font-family: "Playfair Display SC", serif;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.loader-bar {
    width: 220px;
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--pink), var(--pink-muted));
    border-radius: 20px;
    animation: loadBar 2.5s ease forwards;
}

@keyframes loadBar {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7;}
    50% { transform: scale(1.05); opacity: 1;}
    100% { transform: scale(1); opacity: 0.7;}
}



/* bg */
.bg-jawa{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
    pointer-events: none;
    /* overlay gelap */
    /* filter: brightness(0.7) contrast(1.1); */
}



    /* JANGAN set height di body */
    body.locked {
    overflow: hidden !important;
}

body.unlocked {
    overflow-y: auto;
}

#app {
    position: relative;
    z-index: 1;
    min-height: var(--vh);
    overflow-x: hidden;
}

.huruf-sambung {
    font-family: 'Great Vibes', cursive !important;
}

/* font wedding */
.font1 {
    font-family: "Great Vibes", serif;
    font-weight: 500;
    font-style: normal;

}



.font2 {
    font-family: "Playfair Display SC", serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1px;
}

.font3 {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1px;
}


.btn-pink {
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--white);
    background: var(--pink);
}

.btn-pink:hover {
    background: var(--pink-hover);
    color: var(--white);
}

.border-pink {
    border-radius: 15px;
    border: 2px solid var(--pink);
}


/* efek blur */
.card-acara,
.section-title {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 12px;
}
 /* lovestoy */
.section-titlekiri {
    position: relative;
    display: inline-block;
    padding: 6px 24px;
}


.section-titlekiri::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    z-index: 0;
}

/* teks di atas blur */
.section-titlekiri h1 {
    position: relative;
    z-index: 2;
}

/* footer */
.card-acara,
.section-titlebening {
    background: transparent;
}

.sambutan {
    color: var(--white);
}



/* =====================
NAVBAR MOBILE
===================== */
.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--pink);
    display: flex;
    z-index: 10;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.9s ease, opacity 0.4s ease;
}

.nav.show {
    transform: translateY(0);
    opacity: 1;
}


.nav li {
    flex: 1;
}

.nav li a {
    color: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 18px;
}

.nav li a:hover {
    color: var(--white);
}

/* MUSIC BUTTON */
.nav .nav-music {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--black);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.nav li a {
    text-decoration: none;
}

.nav li a.nav-item-music {
    font-size: 28px;
    position: relative;
    top: -35px;
}


.rotate {
    animation: rotateAnimation 5s linear infinite;
}

@keyframes rotateAnimation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* hero section */
#hero-section h1 {
    font-size: 10px;
    text-shadow:
        0 3px 8px rgba(0,0,0,0.5),
        0 0 12px rgba(0, 0, 0, 0.35);
}

#hero-section h4 {
    text-shadow:
        0 2px 5px rgba(0,0,0,0.5);
}

#hero-section .cd-number {
    text-shadow:
        0 2px 6px rgba(0,0,0,0.6);
}

#hero-section .cd-label {
    text-shadow:
        0 1px 3px rgba(0,0,0,0.5);
}



#hero-section::before {
    transform: translateY(-5px) scale(1.1);
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 60%,
            rgba(0, 0, 0, 1) 100%
        ), url('assets/images/fober-jawa.png');
    background-position: center;
    background-size: cover;
    z-index: -5;
    height: 100vh!important;
}


#hero-section {
    width: 100%;
    height: 100vh !important;
    min-height: var(--vh);
    position: fixed !important;
    z-index: 999;
    overflow: hidden!important;
    transition: opacity 1s ease, transform 1s ease;
}


#hero-section .container {
    position: relative;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#hero-section .btn-get-started {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    background: var(--pink);
    color: var(--white);
    font-size: 12px;
    padding: 10px 20px;
}

#hero-section .btn-get-started:hover {
    color: var(--pink-hover);
    background: var(--white);
}

#hero-section .btn-get-started,
#hero-section .btn-get-started * {
    text-shadow: none !important;
}


#hero-section h4:first-child {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 6px;
}


    #hero-section h4 {
        font-size: 13px;
        line-height: 1.4;
    }

    #hero-section h1 {
        font-size: 25px;   
        line-height: 1.1;
        margin: 8px 0;
    }

    #hero-section .huruf-sambung {
        letter-spacing: 1px;
    }

    .hero-content{
    display: flex;
    flex-direction: column;
    min-height: var(--vh);
}

/* Judul di atas */
.hero-title{
    margin-top: 10vh;
    text-align: center;
}

/* Sambutan + tombol di bawah */
.hero-bottom{
    margin-top: auto;
    margin-bottom: 10vh;
    text-align: center;
}

/* Shadow teks agar kebaca di foto */
.hero-title h1,
.sambutan,
.btn-get-started{
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* Perjelas sambutan */
.sambutan{
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Rapatkan semua teks di hero */
.hero-title h1{
    margin-top: 0 !important;
    line-height: 1.05;   /* jarak antar baris lebih mepet */
    font-size: 10px;
}

/* Jarak kecil antara "the wedding of" dan nama */
.hero-title .font1{
    font-size: 10px;
    margin-bottom: 0 !important;
    letter-spacing: 1px;
}

.hero-title .font2{
    font-size: 10px;
}

/* Rapatkan sambutan */
.sambutan p{
    margin: 2px 0;
}

.sambutan hr{
    margin: 6px auto;
    width: 60%;
    opacity: 0.7;
}

.hero-hide {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}










/* pembuka-section */
#pembuka-section{
    display: flex;
    justify-content: center;
    background: url('assets/images/bg-jawa.png') center /cover no-repeat;;
    position: relative;
    height: 100vh !important;
    width: 100vw;
    min-height: var(--vh);   /* full layar */
    overflow: hidden;
    padding: 0 !important;
    z-index: -12;
}


/* ===============================
   BENDERA CINEMATIC OPENING
=============================== */

.bendera {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .4s ease;
    filter:
        drop-shadow(0 6px 10px rgba(0,0,0,0.45))
        drop-shadow(0 18px 30px rgba(0,0,0,0.25));
    transition: transform 1s ease, filter 1s ease;
}

/* gambar bendera */
.bendera img {
    position: absolute;
    margin-top: 70px;
    width: 1000px;
    max-width: none;
    height: auto;
    object-fit: contain;
    transition: transform 3s cubic-bezier(0.77,0,0.175,1);
    z-index: 999;
}

/* posisi awal: TUMPUK + ZOOM BESAR */
.bendera-kiri,
.bendera-kanan {
    transform: scale(2.2);
}

/* arah serong (kebalik dari sebelumnya) */
.bendera-kiri {
    transform-origin: right center;
    transform: rotate(0deg) translateX(0) scale(1.15);
}

.bendera-kanan {
    transform-origin: left center;
    transform: rotate(0deg) translateX(0) scale(1.15);
}

/* saat aktif tampil */
.bendera.show {
    opacity: 1;
}

/* saat membuka */
#pembuka-section.open .bendera-kiri {
    transform: translateX(-140%) scale(0.5);
}

#pembuka-section.open .bendera-kanan {
    transform: translateX(140%) scale(0.5);
}





/* animasi opening */
.ornamen-jawa {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* .bg-kertas {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 80%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.kertas{
    width: 100%;
    height: 100%;
    background: url("assets/images/border_gold_transparent.png") center / contain no-repeat;
} */


.daun-kiri-atas-wrap{
    width: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 3;
}

.daun-kiri-atas {
    width: 180px;
    height: 110px;
    background:url("assets/images/daun-kiri-atas.png") center/cover no-repeat;
}

.lampu-kiri-atas-wrap{
    width: 100%;
    position: absolute;
    top: 0%;
    left: 10%;
    z-index: 2;
}

.lampu-kiri-atas {
    width: 40px;
    height: 150px;
    background:url("assets/images/lampu-kiri-atas.png") center/cover no-repeat;
}

.daun-kanan-atas-wrap{
    width: 100%;
    position: absolute;
    top: 0%;
    right: -77%;
    z-index: 3;
}

.daun-kanan-atas {
    width: 100px;
    height: 100px;
    background:url("assets/images/daun-kanan-atas.png") center/cover no-repeat;
}

.lampu-kanan-atas-wrap{
    width: 100%;
    position: absolute;
    top: 0%;
    right: -81%;
    z-index: 2;
}

.lampu-kanan-atas {
    width: 40px;
    height: 150px;
    background:url("assets/images/lampu-kanan-atas.png") center/cover no-repeat;
}


.wayang-kiri-wrap {
    position:absolute;
    top: 25vh;
    left: -16%;
    z-index: -5;
}

.wayang-kiri {
    width: 260px;
    height: 260px;
    background:url("assets/images/wayang-kiri.png") center/contain no-repeat;
}


.gunung-kiri-wrap {
    position:absolute;
    top: 12vh;
    left: -18%;
    z-index: -5;
}

.gunung-kiri {
    width: 280px;
    height: 280px;
    background:url("assets/images/gunung-kiri.png") center/contain no-repeat;
}

.wayang-kanan-wrap {
    position:absolute;
    top: 15vh;
    right: -22%;
    z-index: -5;
}

.wayang-kanan {
    width: 260px;
    height: 260px;
    background:url("assets/images/wayang-kanan-atas.png") center/contain no-repeat;
}


.daun-kiri-bawah-wrap {
    position:absolute;
    top: 45vh;
    left: 0vw;
    z-index: 2;
    width: 10vw;
}

.daun-kiri-bawah {
    width: 30vw;
    height: 250px;
    background:url("assets/images/daun-kiri-bawah.png") center/cover no-repeat;
}

.daun-kanan-bawah-wrap {
    position:absolute;
    top: 45vh;
    right: 25vw;
    z-index: 2;
    width: 10vw;
}

.daun-kanan-bawah {
    width: 35vw;
    height: 400px;
    background:url("assets/images/daun-kanan-bawah.png") center/cover no-repeat;
}

.awan-kiri-bawah-wrap {
    position:absolute;
    bottom: -5vh;
    left: 0vw;
    z-index: 5;
}

.awan-kiri-bawah {
    width: 130px;
    height: 130px;
    background: url("assets/images/awan-kiri-bawah.png") center/contain no-repeat;
}


.bunga-kiri-bawah-wrap {
    position:absolute;
    bottom: 1vh;
    left: -1vw;
    z-index: 4;
}

.bunga-kiri-bawah {
    width: 150px;
    height: 150px;
    background: url("assets/images/bunga-kiri-bawah.png") center/contain no-repeat;
}




.lampu-kiri-bawah-wrap {
    position:absolute;
    bottom: 9vh;
    left: 3vw;
    z-index: 3;
}

.lampu-kiri-bawah {
    width: 150px;
    height: 150px;
    background: url("assets/images/lampu-kiri-bawah.png") center/contain no-repeat;
}



.lampu-kanan-bawah-wrap {
    position:absolute;
    bottom: 8vh;
    right: -5vw;
    z-index: 3;
}

.lampu-kanan-bawah {
    width: 150px;
    height: 150px;
    background: url("assets/images/lampu-kanan-bawah.png") center/contain no-repeat;
}

.awan-kanan-bawah-wrap {
    position: absolute;
    bottom: -5vh;
    right: 0vw;
    z-index: 999;
}

.awan-kanan-bawah {
    width: 130px;
    height: 130px;
    background:url("assets/images/awan-kanan-bawah.png") center/contain no-repeat;
}

.bunga-kanan-bawah-wrap {
    position: absolute;
    bottom: 50vh;
    right: 50vw;
    z-index: 999;
}

.bunga-kanan-bawah {
    width: 150px;
    height: 150px;
    background:url("assets/images/bunga-kanan-bawah.png") center/contain no-repeat;
}

.bunga-kanan-bawah-wrap {
    position: absolute;
    bottom: 0vh;
    right: 0vw;
    z-index: 4;
}

.bunga-kanan-bawah {
    width: 150px;
    height: 150px;
    background:url("assets/images/bunga-kanan-bawah.png") center/contain no-repeat;
}

.pendopo-wrap {
    width: 100%;
    height: 20vh;
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 40vw;
}

.pendopo {
    width: 200px;
    height: 200px;
    background:url("assets/images/pendopo.png") center/contain no-repeat;
}

.rumput-wrap {
    width: 100%;
    height: 30vh;
    position: absolute;
    z-index: -10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 0vw;
}

.rumput {
    width: 100vw;
    height: 130%;
    background:url("assets/images/rumput-liar.PNG") center/contain no-repeat;
}




/* .kertas, */
.daun-kiri-atas,
.lampu-kiri-atas,
.wayang-kiri,
.wayang-kanan,
.awan-kiri-bawah,
.bunga-kiri-bawah,
.lampu-kiri-bawah,
.daun-kiri-bawah,
.awan-kanan-bawah,
.bunga-kanan-bawah,
.lampu-kanan-bawah,
.daun-kanan-bawah,
.rumput,
.pendopo {
    filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}



/* =========================
   OPENING SEQUENCE ANIMATION
========================= */

/* default semua ornamen & teks HILANG */
.wayang-kiri,
.wayang-kanan,
.awan-kiri-bawah,
.bunga-kiri-bawah,
.lampu-kiri-bawah,
.daun-kiri-bawah,
.awan-kanan-bawah,
.bunga-kanan-bawah,
.lampu-kanan-bawah,
.daun-kanan-bawah,
.rumput,
.pendopo{
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: all 1.2s ease;
}

.lampu-kiri-atas,
.lampu-kanan-atas,
.daun-kanan-atas,
.daun-kiri-atas {
    opacity: 0;
    transform: translateY(-30px) scale(0.96);
    transition: all 1.2s ease;
}

.pembuka-text {
    opacity: 0;
    transform: translateY(0) scale(0);
    transition: all 1s ease;
}

/* AKTIF */
.pembuka-section.show-kertas .kertas {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pembuka-section.show-ornamen .ornamen {
    opacity: 1;
    transform: translateY(0) scale(1);
}



.pembuka-section.show-daun-kiri-atas .daun-kiri-atas,
.pembuka-section.show-lampu-kiri-atas .lampu-kiri-atas,
.pembuka-section.show-lampu-kanan-atas .lampu-kanan-atas,
.pembuka-section.show-daun-kanan-atas .daun-kanan-atas,
.pembuka-section.show-wayang-kiri .wayang-kiri,
.pembuka-section.show-wayang-kanan .wayang-kanan,
.pembuka-section.show-awan-kiri-bawah .awan-kiri-bawah,
.pembuka-section.show-awan-kanan-bawah .awan-kanan-bawah,
.pembuka-section.show-bunga-kiri-bawah .bunga-kiri-bawah,
.pembuka-section.show-bunga-kanan-bawah .bunga-kanan-bawah,
.pembuka-section.show-lampu-kiri-bawah .lampu-kiri-bawah,
.pembuka-section.show-lampu-kanan-bawah .lampu-kanan-bawah, 
.pembuka-section.show-daun-kiri-bawah .daun-kiri-bawah,
.pembuka-section.show-daun-kanan-bawah .daun-kanan-bawah {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pembuka-section.show-rumput .rumput,
.pembuka-section.show-pendopo .pendopo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pembuka-section.show-text .pembuka-text {
    opacity: 1;
    transform: translateY(-40px) scale(1);
}


/* wrapper teks pembuka */
.pembuka-text {
    position: relative;
    z-index: 10;
    max-width: 60%;
    min-height: auto;        /* JANGAN FIX HEIGHT */
    margin: 0 auto;
    margin-top: 24vh;        /* PAKE vh BUKAN % */
    text-align: center;
    padding: 24px 18px;
}


/* salam */
.pembuka-text .salam {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-family: 'Inria Serif', sans-serif;
    color: var(--pink)
}

/* kalimat pembuka */
.pembuka-text .pembuka-kalimat {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    color: #2c2c2c;
}

/* nama pengantin */
.pembuka-text .nama-pengantin {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

/* tanda & */
.pembuka-text .nama-pengantin span {
    display: inline-block;
    margin: 0 6px;
    font-weight: 400;
}

/* responsive tablet */
@media (min-width: 768px) {
    .pembuka-text .salam {
        font-size: 14px;
    }

    .pembuka-text .pembuka-kalimat {
        font-size: 15px;
    }

    .pembuka-text .nama-pengantin {
        font-size: 32px;
    }
}





/* opening section */
#opening-section {
    position: relative;
    height: 100vh !important;
    width: 100vw;
    min-height: var(--vh);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

#opening-section .cd-pria, .cd-wanita {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 12px;
}

#opening-section .dan {
        background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 30%;
}




/* ================================
   COUPLE DIAGONAL (OPENING 2)
================================ */

.couple-diagonal{
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.couple-diagonal p{
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
}

.cd-pria,
.cd-wanita,
.cd-pria *,
.cd-wanita *{
    pointer-events: all;
}

/* PRIA kiri atas */
.cd-pria{
    position: absolute;
    top: 130px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-pria img{
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 10%;
    border: 3px solid var(--pink);
    box-shadow: 0 6px 18px rgba(0,0,0,.6);
}

.cd-pria .cd-nama{
    font-size: 14px;
    font-weight: bold;
}

/* WANITA kanan bawah */
.cd-wanita{
    position: absolute;
    bottom: 130px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: flex-end; /* 🔥 INI KUNCINYA */
    align-items: center;
    gap: 10px;
}


.cd-wanita img{
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 10%;
    border: 3px solid var(--pink);
    box-shadow: 0 6px 18px rgba(0,0,0,.6);
}

/* RAPATKAN TEKS KE FOTO */
.cd-pria div,
.cd-wanita div{
    line-height: 1.2;
}

/* hilangkan jarak bawaan p & a */
.cd-pria p,
.cd-wanita p{
    margin: 4px 0 4px 0;
}

/* Teks di samping foto rata tengah */
.cd-pria > div,
.cd-wanita > div{
    text-align: center;
}

.cd-pria,
.cd-wanita{
    align-items: center;
}

/* TANDA & DI TENGAH */
/* wrapper posisi tengah */
.dan{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
}

/* styling teks & */
.dan span{
    font-size: 68px;
    text-shadow: 0 6px 15px rgba(0,0,0,.5);
}

.tengah-jing{
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

/* tombol IG */
.ig-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
}

/* icon IG */
.ig-link i{
    font-size: 14px;
}






.line-wrap {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 9;
}


.line {
    margin-bottom: 74vh;
    width: 100%;
    height: 20vh;
    background: url("assets/images/line-jawa.png") center/cover no-repeat;
}


.dalang-wrap{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 9;
}


.dalang {
    margin-top: 72vh;
    width: 100%;
    height: 20vh;
    background:url("assets/images/line-dalang.png") center/cover no-repeat;
}


/* SHADOW ORNAMEN OPENING */
.line,
.dalang {
    filter:
        drop-shadow(0 6px 10px rgba(0,0,0,0.45))
        drop-shadow(0 18px 30px rgba(0,0,0,0.25));
    transition: transform 1s ease, filter 1s ease;
}






/* pembuka section2 */
#pembuka-section2 {
    display: flex;
    justify-content: center;
    background: url('assets/images/bg-gold.png') center /cover no-repeat;;
    position: relative;
    height: 100vh !important;
    width: 100vw;
    min-height: var(--vh);   /* full layar */
    overflow: hidden;
    padding: 0 !important;
    z-index: -12;
}


/* content wrapper */
#pembuka-section2 .pembuka-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* card */
#pembuka-section2 .pembuka-card {
    margin-top: 15vh;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
}

/* gambar jawa di atas */
#pembuka-section2 .jawa {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

#pembuka-section2 .jawa img {
    max-width: 160px;
    width: 100%;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.6));
    border-radius: 20%;
}

/* tanggal */
#pembuka-section2 h4 {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    margin: 6px 0;
}

/* countdown */
#pembuka-section2 .countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 20px;
}

#pembuka-section2 .cd-box {
    min-width: 60px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}

#pembuka-section2 .cd-number {
    font-size: 18px;
    font-weight: bold;
}

#pembuka-section2 .cd-label {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.8;
}


.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}



.countdown {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
    color: var(--black);
}

.cd-box {
    min-width: 56px;
    padding: 6px 8px;
    border-radius: 10px;
    text-align: center;
    color: var(--black);
    font-size: 11px;
    backdrop-filter: blur(2px);
}

.cd-number {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    display: block;
}

.cd-label {
    font-size: 15px;
}


/* section pembuka */
.text-pink {
    color: var(--pink);
}

.text-pink-muted {
    color: var(--pink-muted);
}



.pembuka-card .row {
    margin-left: 0;
    margin-right: 0;
}


#content-section {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pink-light);
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-hover);
}


.bg-kertass {
    position: absolute;
    padding: 0 10px;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.kertass {
    width: 100%;
    height: 100%;
    background: url("assets/images/border-oval.png") center / contain no-repeat;
}


.ornamenn-wrap {
    width: 100%;
    position: absolute;
    top: -3%;
    z-index: -20;
}

.ornamenn {
    width: 100%;
    height: 130px;
    background:url("assets/images/batik-atas.png") center/cover no-repeat;
}


.wayang-kirii-wrap {
    position:absolute;
    top: 12vh;
    left: -18%;
    z-index: -5;
}

.wayang-kirii {
    width: 280px;
    height: 280px;
    background:url("assets/images/wayang-kirii.png") center/contain no-repeat;
}

.wayang-kanann-wrap {
    position:absolute;
    top: 12vh;
    right: -18%;
    z-index: -5;
}

.wayang-kanann {
    width: 280px;
    height: 280px;
    background:url("assets/images/wayang-kanan.png") center/contain no-repeat;
}


.wayangg-kiri-wrap {
    width: 100vw;
    height: 50vh;
    position:absolute;
    bottom: 14vh;
    z-index: -2;
}

.wayangg-kiri {
    width: 100vw;
    height: 100vh;
    background: url("assets/images/wayangg-kiri.png") center/contain no-repeat;
}

.wayangg-kanan-wrap {
    width: 100vw;
    height: 50vh;
    position:absolute;
    bottom: 14vh;
    z-index: -2;
}

.wayangg-kanan {
    width: 100vw;
    height: 100vh;
    background:url("assets/images/wayangg-kanan.png") center/contain no-repeat;
}

.wayangg-wrap {
    width: 100vw;
    height: 30vh;
    position: absolute;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 74vh;
}

.wayangg {
    width: 100%;
    height: 100%;
    background:url("assets/images/wayangg.png") center/contain no-repeat;
}




.kertass,
.ornamenn,
.wayang-kirii,
.wayang-kanann,
.wayangg-kiri,
.wayangg-kanan,
.wayangg {
    filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}






/* section-acara */
.acara-section {
    position: relative;
    width: 100%;
    min-height: var(--vh);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
}

.acara-section h1 {
    margin-top: 50px;
}


/* lokasi section */
.lokasi-section {
    display: flex;
    text-align: center;
}


.tiga-kipas-wrap {
    display: flex;
    width: 50vw;
    height: 50vh;
    position: absolute;
    z-index: 2;
    margin-top: 25vh;
    right: 0vw;
}

.tiga-kipas {
    width: 100vw;
    height: 50vh;
    background: url("assets/images/3-kipas.png") center/contain no-repeat;
        filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}




/* ================================
   LOVE STORY TIMELINE (MOBILE FIRST)
================================ */

.timeline {
    list-style: none;
    padding: 20px 0;
    position: relative;
    max-width: 100%;
}


.timeline {
    position: relative;
}

/* garis vertikal */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px;                /* sejajar dengan tengah foto */
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--pink),
        var(--pink-light),
        var(--pink)
    );
    border-radius: 10px;
    opacity: 0.7;
}




/* Item */
/* container tiap item */
.timeline > li {
    position: relative;
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* foto */
.timeline > li > .timeline-badge {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--pink);
    box-shadow: 0 8px 20px rgba(249, 134, 3, 0.4);
}

/* panel card */
.timeline > li > .timeline-panel {
    background: white;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    width: 100%;
}

/* Judul */
.timeline-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}

/* Tanggal */
.timeline-date {
    display: block;
    font-size: 11px;
    color: var(--pink);
    margin-bottom: 8px;
}

/* Isi */
.timeline-body p {
    font-size: 12px;
    line-height: 1.6;
}

/* Hapus arrow desktop */
.timeline > li > .timeline-panel::before,
.timeline > li > .timeline-panel::after {
    display: none;
}

.top-gallery-wrap {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 10vh;
    position: absolute;
    z-index: 2;
    margin-top: -10vh;
}

.top-gallery {
    width: 100vw;
    height: 22vh;
    background: url("assets/images/top-gallery.png") center/contain no-repeat;
        filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}


/* ======================
   MINI GALLERY PREVIEW
====================== */
.gallery-section {
    display: flex;
    text-align: center;
}

/* ===== MASONRY 2–3 KOLOM ===== */
#gallery-section {
    padding: 40px 20px;
}

/* container */
.gallery-grid {
    column-count: 3;
    column-gap: 12px;
}

/* tiap item */
.gallery-grid a {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    break-inside: avoid;
}

/* gambar */
.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* mobile */
@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 10px;
    }
}


.top-gift-wrap {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 10vh;
    position: absolute;
    z-index: 2;
    margin-top: -18vh;
    left: 15vw;
}

.top-gift {
    width: 100vw;
    height: 30vh;
    background: url("assets/images/wayang-kipas.png") center/contain no-repeat;
        filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}








/* gift section */
.gift-section {
    display: flex;
    text-align: center;
}

.credit-card {
    background-color: var(--dark-grey);
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 300px;
    color: var(--white);
    position: absolute;
}

.card-logo {
    width: 75px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.card-container {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.card-sim {
    width: 50px;
    margin-right: 10px;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    text-decoration: none;
}

.card-name {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
}

.copy-button {
    font-family: 'Courier New', monospace;
    position: absolute;
    text-decoration: none;
    top: 5px;
    left: 15px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.copy-button:hover {
    background: var(--pink);
    color: white;
}

.btn-kirim {
    font-weight: bold;
    color: var(--white);
    background: var(--pink);
}

.btn-kirim:hover {
    background: var(--pink-hover);
    color: var(--white);
}


.ucapan-box {
    margin-top: 50px;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 16px;
}

.ucapan-box input,
.ucapan-box textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.ucapan-item {
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}


/* ucapan */
#listUcapan {
    margin-top: 50px;
  max-height: 360px;
  overflow-y: auto; 
    padding-right: 6px;
}

/* biar scrollbar ga jelek */
#listUcapan::-webkit-scrollbar {
  width: 6px;
}

#listUcapan::-webkit-scrollbar-thumb {
  background: var(--pink);    /* gold */
  border-radius: 10px;
}

#listUcapan::-webkit-scrollbar-track {
  background: transparent;
}

#btnKirim:disabled {
    background: var(--dark-grey);
    opacity: 0.4;
    cursor: not-allowed;
}





/* penutup section */
#penutup-section {
    position: relative;
    min-height: var(--vh);
    color: var(--white);
    display: flex;
    align-items: center;
}

#penutup-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 1) 100%
        ),
        url('assets/images/footer.jpeg');
    background-position: center;
    background-size: cover;
    z-index: -1;
}



/* footer */
.footer {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .social {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}

/* WhatsApp */
.footer .wa {
    background: #25D366;
}

/* Instagram */
.footer .ig {
    background: radial-gradient(circle at 30% 30%,
        #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* TikTok */
.footer .tt {
    background: #000;
}

/* Hover effect */
.footer .social:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}


.ttd img {
    max-width: 150px;
    opacity: 0.9;
    filter: drop-shadow(0 5px 15px rgba(255,255,255,0.3));
}




/* mode ipad */
@media (min-width: 767px) and (max-width: 1024px) {

    /* =====================
       GLOBAL
    ===================== */
    body {
        background: #050505;
    }

    section,
    main,
    .nav {
        margin-left: auto;
        margin-right: auto;
    }

    /* =====================
       HERO (FIXED)
    ===================== */
    #hero-section {
        left: 50%;
        transform: translateX(-50%);
    }

    /* =====================
       VIDEO BACKGROUND
       (tetap full layar)
    ===================== */
    .video-bg {
        width: 100vw;
        height: 100vh;
        left: 0;
        transform: none;
    }

    /* =====================
       PEMBUKA SECTION
       (BENDERA & BOUNTY)
    ===================== */
    #pembuka-section {
        margin: 0 auto;
    }

    .bendera img {
        width: 1600px; /* cinematic desktop */
    }



.top-gallery-wrap {
    display: flex;
    justify-content: center;
    width: 38vw;
    position: absolute;
    z-index: 2;
    margin-top: -10vh;
}


#pembuka-section2 .pembuka-card {
    width: 100%;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
}




    /* =====================
       OPENING SECTION
       (COUPLE DIAGONAL)
    ===================== */
    .cd-pria,
    .cd-wanita {
        left: 10px;
        right: 10px;
    }

    /* =====================
       SECTION KONTEN
    ===================== */
    .pembuka-section2,
    .acara-section,
    .opening-section,
    .lokasi-section,
    .love-story-section,
    .gallery-section,
    .gift-section,
    .rsvp-section {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =====================
       NAVBAR MOBILE
    ===================== */
    .nav {
        transform: translateY(100%);
        border-radius: 18px 18px 0 0;
    }

    .nav.show {
        transform: translateY(0);
    }



    /* wrapper teks pembuka */
.pembuka-text {
    position: relative;
    z-index: 10;
    max-width: 40%;
    min-height: auto;        /* JANGAN FIX HEIGHT */
    margin: 0 auto;
    margin-top: 24vh;        /* PAKE vh BUKAN % */
    text-align: center;
    padding: 24px 18px;
}


/* salam */
.pembuka-text .salam {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    opacity: 0.85;
    font-family: 'Poppins', sans-serif;
}

/* kalimat pembuka */
.pembuka-text .pembuka-kalimat {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

/* nama pengantin */
.pembuka-text .nama-pengantin {
    font-size: 36px;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin: 0;
}

/* tanda & */
.pembuka-text .nama-pengantin span {
    display: inline-block;
    margin: 0 6px;
    font-weight: 400;
}


#pembuka-section2 .pembuka-card {
    width: 80%;
    height: 80%;
    max-width: 400px;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
}
/* content wrapper */
#pembuka-section2 .pembuka-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}


/* gambar jawa di atas */
#pembuka-section2 .jawa {
    width: 100%;
    display: flex;
    justify-content: center;
}

#pembuka-section2 .jawa img {
    max-width: 160px;
    width: 100%;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.6));
    border-radius: 20%;
}

/* tanggal */
#pembuka-section2 h4 {
    font-size: 24px;
    line-height: 1.4;
    margin: 6px 0;
}

/* countdown */
#pembuka-section2 .countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 20px;
}

#pembuka-section2 .cd-box {
    min-width: 60px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}

#pembuka-section2 .cd-number {
    font-size: 28px;
    font-weight: bold;
}

#pembuka-section2 .cd-label {
    font-size: 21px;
    letter-spacing: 1px;
    opacity: 0.8;
}


.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}



.countdown {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
    color: var(--black);
}

.cd-box {
    min-width: 56px;
    padding: 6px 8px;
    border-radius: 10px;
    text-align: center;
    color: var(--black);
    font-size: 11px;
    backdrop-filter: blur(2px);
}

.cd-number {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    display: block;
}

.cd-label {
    font-size: 15px;
}




.pengantin-wrap {
    display: flex;
    width: 50%;
    height: 30%;
    position: absolute;
    z-index: 2;
    margin-top: 20%;
    right: 5%;
}

.pengantin {
    width: 100%;
    height: 30vh;
}


.top-gallery-wrap {
    display: flex;
    justify-content: center;
    width: 38%;
    position: absolute;
    z-index: 2;
    margin-bottom: 4vh;
    right: 31%;
}




    /* paksa layout acara jadi vertikal */
    #acara-section .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* semua kolom full width */
    #acara-section [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* jarak antar card */
    #acara-section .card-acara {
        margin-bottom: 20px;
    }



    /* gift section tetap normal */
    #gift-section {
        margin: 0 auto;
        text-align: center;
    }

    /* JANGAN flex section */
    #gift-section.gift-section {
        display: block;
    }

    /* pastikan collapse tetap bootstrap */
    #gift-section .collapse {
        width: 100%;
    }

    /* CREDIT CARD DI TENGAH */
    #gift-section .credit-card {
        width: 300px;
    }

}












/* =========================================
   DESKTOP MODE
   FORCE MOBILE VIEW PER SECTION (AMAN)
========================================= */
@media (min-width: 992px) {

    /* =====================
       GLOBAL
    ===================== */
    body {
        background: #050505;
    }

    section,
    main,
    .nav {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =====================
       HERO (FIXED)
    ===================== */
    #hero-section {
        width: 430px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* =====================
       VIDEO BACKGROUND
       (tetap full layar)
    ===================== */
    .video-bg {
        width: 100vw;
        height: 100vh;
        left: 0;
        transform: none;
    }

    /* =====================
       PEMBUKA SECTION
       (BENDERA & BOUNTY)
    ===================== */
    #pembuka-section {
        width: 430px;
        margin: 0 auto;
    }

    .bendera img {
        width: 1600px; /* cinematic desktop */
    }


    /* wrapper teks pembuka */
.pembuka-text {
    position: relative;
    z-index: 10;
    max-width: 60%;
    min-height: auto;        /* JANGAN FIX HEIGHT */
    margin: 0 auto;
    margin-top: 24vh;        /* PAKE vh BUKAN % */
    text-align: center;
    padding: 24px 18px;
}


/* salam */
.pembuka-text .salam {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 14px;
    opacity: 0.85;
    font-family: 'Poppins', sans-serif;
}

/* kalimat pembuka */
.pembuka-text .pembuka-kalimat {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

/* nama pengantin */
.pembuka-text .nama-pengantin {
    font-size: 26px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin: 0;
}

/* tanda & */
.pembuka-text .nama-pengantin span {
    display: inline-block;
    margin: 0 6px;
    font-weight: 400;
}



.daun-kiri-bawah-wrap {
    position:absolute;
    top: 35%;
    left: 68%;
    z-index: -10;
    width: 10vw;
}


.pinggir-kanan-wrap {
    position:absolute;
    top: 35vh;
    right: 89%;
    z-index: -10;
    width: 10vw;
}


.melati-kiri-wrap {
    position:absolute;
    bottom: 0vh;
    left: -5%;
    z-index: -2;
}


.melati-kanan-wrap {
    position: absolute;
    bottom: 0vh;
    right: -5%;
    z-index: -2;
}


.pendopo-wrap {
    width: 100%;
    height: 20%;
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 6%;
}



.line-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 9;
}


.line {
    width: 100%;
    height: 20vh;
    background: url("assets/images/line-jawa.png") center/cover no-repeat;
}


.dalang-wrap{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 9;
}


.dalang {
    margin-top: 69vh;
    width: 100%;
    height: 20vh;
    background:url("assets/images/line-dalang.png") center/cover no-repeat;
}


.bg-kertass {
    position: absolute;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin-top: 30px;
}

.kertass {
    width: 100%;
    height: 90%;
    background: url("assets/images/border-oval.png") center / contain no-repeat;
}



.wayangg-kiri-wrap {
    width: 90%;
    height: 90%;
    position:absolute;
    bottom: -30%;
    z-index: -2;
}

.wayangg-kiri {
    width: 100%;
    height: 100%;
    background: url("assets/images/wayangg-kiri.png") center/contain no-repeat;
}

.wayangg-kanan-wrap {
    width: 100%;
    height: 100%;
    position:absolute;
    bottom: -33%;
    z-index: -2;
}

.wayangg-kanan {
    width: 100%;
    height: 100%;
    background:url("assets/images/wayangg-kanan.png") center/contain no-repeat;
}

.wayangg-wrap {
    width: 100%;
    height: 30vh;
    position: absolute;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 74vh;
}

.wayangg {
    width: 100%;
    height: 100%;
    background:url("assets/images/wayangg.png") center/contain no-repeat;
}


.tiga-kipas-wrap {
    display: flex;
    width: 50%;
    height: 50%;
    position: absolute;
    z-index: 2;
    margin-top: 30vh;
    right: 0vw;
}

.tiga-kipas {
    width: 100%;
    background: url("assets/images/3-kipas.png") center/contain no-repeat;
        filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}

.top-gallery-wrap {
    display: flex;
    justify-content: center;
    width: 38vw;
    position: absolute;
    z-index: 2;
    margin-top: -8vh;
}

.top-gift-wrap {
    display: block;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    margin-top: 18vh;
    left: 2%;
}

.top-gift {
    width: 50%;
    height: 30%;
    background: url("assets/images/wayang-kipas.png") center/contain no-repeat;
        filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}








#pembuka-section2 .pembuka-card {
    width: 80%;
    height: 50%;
    max-width: 280px;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
}




    /* =====================
       OPENING SECTION
       (COUPLE DIAGONAL)
    ===================== */
    .cd-pria,
    .cd-wanita {
        left: 10px;
        right: 10px;
    }

    /* =====================
       SECTION KONTEN
    ===================== */
    .acara-section,
    .lokasi-section,
    .love-story-section,
    .gallery-section,
    .gift-section,
    .rsvp-section,
    .penutup-section {
        width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =====================
       NAVBAR MOBILE
    ===================== */
    .nav {
        width: 430px;
        transform: translateY(100%);
        border-radius: 18px 18px 0 0;
    }

    .nav.show {
        transform: translateY(0);
    }


    /* paksa layout acara jadi vertikal */
    #acara-section .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* semua kolom full width */
    #acara-section [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* jarak antar card */
    #acara-section .card-acara {
        margin-bottom: 20px;
    }




.top-gift-wrap {
    display: flex;
    justify-content: center;
    width: 50vw;
    height: 10vh;
    position: absolute;
    z-index: 2;
    margin-top: -20%;
    left: 0%;
}

.top-gift {
    width: 50vw;
    height: 30vh;
    background: url("assets/images/nyapa.png") center/contain no-repeat;
        filter:
        drop-shadow(0 8px 12px rgba(0,0,0,0.35))
        drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}





    /* gift section tetap normal */
    #gift-section {
        width: 430px;
        margin: 0 auto;
        text-align: center;
    }

    /* JANGAN flex section */
    #gift-section.gift-section {
        display: block;
    }

    /* pastikan collapse tetap bootstrap */
    #gift-section .collapse {
        width: 100%;
    }

    /* CREDIT CARD DI TENGAH */
    #gift-section .credit-card {
        right: 40%;
        width: 320px;
    }

}
