
@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;1,600&display=swap');

/* Mengatur delay agar elemen muncul bergantian */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* State dasar sebelum animasi */
.animate-hidden {
    opacity: 0;
    transform: translateY(40px);
    /* Muncul dari bawah */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

/* State saat elemen masuk ke viewport */
.animate-show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* --- Animasi Pesan Penutup (Fade In saja) --- */


/* --- Animasi Thank You (Expand Letter Spacing) --- */
.thank-you-text.animate-hidden {
    opacity: 0;
    letter-spacing: 10px;
    transform: scale(1.1);
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.thank-you-text.animate-show {
    opacity: 1;
    letter-spacing: -2px;
    /* Kembali ke gaya rapat sesuai gambar */
    transform: scale(1);
}

/* --- Animasi Foto Closing (Zoom Out ke Frame) --- */
.closing-photo.animate-hidden {
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.5s ease-out;
}

.closing-photo.animate-show {
    opacity: 1;
    transform: scale(1);
}

/* Mengaktifkan scroll halus untuk seluruh halaman */
html {
    scroll-behavior: smooth;
}

/* --- CUSTOM SCROLLBAR --- */
/* Ukuran scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* Bagian jalur (track) scrollbar */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Bagian batang (thumb) scrollbar */
::-webkit-scrollbar-thumb {
    background: #8da1b9;
    /* Warna biru sesuai Save The Date Anda */
    border-radius: 10px;
}

/* Batang scrollbar saat diarahkan kursor (hover) */
::-webkit-scrollbar-thumb:hover {
    background: #343638;
    /* Warna gelap sesuai tema card Anda */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
    /* Mencegah scroll horizontal seluruh halaman */
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Kunci total scroll */


body.locked {
    overflow: hidden !important;
    touch-action: none;
    /* Cegah scroll di mobile */
    position: fixed;
    /* Kunci posisi di beberapa browser mobile */
    width: 100%;
}

/* First Screen sebagai Overlay Fixed */
.first-screen {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    /* Pastikan di atas segalanya */
    background-color: #210404;
    /* Maroon sesuai tema */
    transition: transform 1.6s cubic-bezier(0.7, 0, 0.3, 1),
        opacity 1.6s ease;
    will-change: transform, opacity;
}

/* Animasi Tirai Terangkat */
.first-screen.fade-out {
    transform: translateY(-100%);
    opacity: 0.8;
    /* Sedikit transparan saat terangkat agar halus */
    pointer-events: none;
}

/* Opening Section State Awal */
.opening-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
}

.opening-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', serif;
    background-color: #1a2a33;
    color: white;
}

.wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    /* Mencegah seluruh halaman scroll */
}

/* Class khusus untuk nama pengantin */
.bride-name {
    font-family: "Beau Rivage", cursive;
    font-weight: 400;
    line-height: 1.2;
}

/* --- BAGIAN KIRI (FIXED/STATIS) --- */
.left-section {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px;
    position: relative;
}

.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.left-content {
    position: relative;
    bottom: -363px;
    z-index: 2;
}

.left-content h2 {
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.left-content h1 {
    font-size: 5rem;
}

/* Ukuran font diperbesar agar Beau Rivage terlihat jelas */

/* --- BAGIAN Kanan (SCROLLABLE) --- */
.right-section {
    flex: 1;
    overflow-y: auto;
    background-color: #1a2a33;
    scroll-behavior: smooth;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.0); */
}

/* Tampilan Pertama di Kanan (Mobile View lookalike) */
/* Styling Section Utama */
/* Container Utama */

/* Google Fonts */

.first-screen {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Ganti URL di bawah dengan path gambar background Anda */
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Efek Overlay agar teks terbaca */
.main-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
}

.invitation-card {
    position: relative;
    z-index: 2;
    background: rgba(46, 5, 5, 0.9);
    /* Warna merah gelap dengan sedikit transparansi */
    width: 100%;
    max-width: 400px;
    padding: 50px 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* Sentuhan emas tipis */
    border-radius: 5px;
    /* Sedikit lengkungan agar tidak terlalu kaku */
}

.title-wedding {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Frame Foto Oval/Elegan */
.image-container {
    position: relative;
    margin-bottom: 20px;
}

.image-frame {
    width: 220px;
    height: 320px;
    margin: 0 auto;
    border-radius: 110px 110px 110px 110px;
    overflow: hidden;
    /* border: 4px solid #fff; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nama Pengantin Modern */
.bride-name-display {
    font-family: 'Beau Rivage', cursive;
    font-size: 3rem;
    margin-top: -50px;
    font-weight: 100;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 5;
    position: relative;
}

.bride-name-display span {
    display: block;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: -15px 0;
}

/* Informasi Detail */
.wedding-info {
    margin-top: 20px;
}

.wedding-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.dot {
    color: #ffd700;
    /* Titik pemisah warna emas */
    font-weight: bold;
}

.invitation-to {
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.dear-text {
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.9;
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-top: 5px;
    color: #ffd700;
}

/* Tombol Mewah */
.open-button {
    background: #ffffff;
    color: #2e0505;
    border: none;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
}

.open-button:hover {
    transform: scale(1.05);
    background: #ffd700;
    color: #2e0505;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Animasi Sederhana */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1.2s ease-out;
}

/* Perbaikan untuk Right Section agar scrollnya pas */
.right-section {
    flex: 1;
    overflow-y: auto;
    background-color: #2e0505;
    /* Konsistensi warna */
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
        /* Sembunyikan bagian kiri */
    }

    .right-section {
        flex: 1;
        width: 100%;
    }
}

.parallax-group {
    position: relative;
    width: 100%;
    /* Perspektif diletakkan di container paling luar */
    perspective: 1px;
    height: auto;
    overflow-x: hidden;
}

.parallax-bg-shared {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Akan mengikuti tinggi total group */
    background: url('images.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Opsional: menambah kestabilan di beberapa browser */
    z-index: -1;
    /* transform: translateZ(-1px) scale(2); */
    filter: brightness(0.6);
}

/* Overlay tunggal yang menyambung */
.parallax-overlay-shared {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradasi dari atas ke bawah secara total */
    z-index: 0;
}

/* Import Font yang Mirip dengan Contoh */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;600&family=Lora:ital@1&display=swap');

.opening-section {
    background-color: #210404;
    min-height: 100vh;
    /* Gunakan min-height agar fleksibel jika konten panjang */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    overflow-x: hidden;
    padding-bottom: 60px;
}

/* --- Area Foto (Atas) --- */
.photo-hero-wrapper {
    position: relative;
    width: 100%;
    /* Membatasi lebar maksimal di layar besar agar foto tidak pecah */
    max-width: 600px;
    margin: 0 auto;
    /* Mengunci rasio gambar agar konsisten (4:5 adalah rasio portrait standar) */
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    /* Object-fit: cover memastikan gambar tidak gepeng (terpotong secara proporsional) */
    object-fit: cover;
    /* Memastikan wajah tetap terlihat (fokus potongan di tengah atas) */
    object-position: center 15%;
    display: block;
}

.photo-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Gradasi sedikit lebih tinggi agar transisi lebih halus */
    background: linear-gradient(to bottom, transparent, #210404);
    z-index: 1;
}

/* --- Area Konten (Bawah) --- */
.content-body {
    /* width: 90%; */
    max-width: 450px;
    text-align: center;
    /* Menarik konten ke atas agar menyatu dengan gradasi foto */
    margin-top: -40px;
    z-index: 2;
    padding: 0 15px;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: #ffd700;
    margin-bottom: 12px;
    opacity: 0.9;
}

.bride-name-display {
    font-size: clamp(2rem, 8vw, 2.8rem);
    /* Ukuran font dinamis sesuai layar */
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.date-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.date-divider .line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 215, 0, 0.3);
}

.wedding-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    white-space: nowrap;
}

.meaning {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}



/* Responsivitas untuk layar sangat kecil */
@media (max-width: 360px) {
    .bride-name-display {
        font-size: 1.8rem;
    }

    .photo-hero-wrapper {
        aspect-ratio: 1 / 1.2;
    }
}

/* Quote Section */
.quote-section {
    padding: 0 10px;
}


.surah {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5vh;
}


/* --- SECTION QUOTES --- */
.quotes-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 150px;
    padding: 80px 20px;
    perspective: 1px;
}

/* Background Parallax untuk Quotes */


/* Overlay Gradasi agar teks terbaca */
.overlay-quotes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.quotes-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    text-align: center;
}

/* Style Polaroid sesuai Gambar Referensi */
.polaroid-frame {
    background: #e3dcd2;
    /* Warna kertas vintage putih tulang */
    padding: 15px 15px 60px 15px;
    /* Bagian bawah lebih lebar khas polaroid */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: rotate(-3deg);
    /* Efek miring seperti gambar */
    margin-bottom: 50px;
    transition: transform 1.5s ease-out;
}

.polaroid-frame img {
    width: 100%;
    max-width: 320px;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Typography */
.surah-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #c5a059;
    margin-bottom: 20px;
    font-weight: 400;
}

.quote-text {
    font-family: 'Lora', 'Georgia', serif;
    /* Font serif yang lembut */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
    font-style: normal;
    padding: 0 20px;
}

/* --- Animasi Reveal saat Scroll --- */


/* Responsive */
@media (max-width: 768px) {
    .surah-title {
        font-size: 1.8rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .polaroid-frame img {
        max-width: 260px;
        height: 300px;
    }
}

/* --- SECTION BRIDE & GROOM --- */
.couple-section {
    background-color: #fdfaf7;
    /* Warna putih gading/krem sangat muda */
    color: #210404;
    /* Teks cokelat gelap/maroon */
    padding: 30px 0 0 0;
    text-align: left;
}

/* Header LOVE */
.love-header-container {
    text-align: center;
    padding: 100px 0 60px 0;
    position: relative;
    background-color: #fdfaf7;
    /* Background krem agar maroon menonjol */
}

.love-wrapper {
    display: inline-block;
    position: relative;
}

/* Teks melayang di atas "LOVE" */
.celebrating-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #ffd700;
    /* Warna emas agar mewah */
    background-color: #210404;
    /* Maroon gelap */
    padding: 8px 25px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Judul LOVE Utama */
.love-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(7rem, 25vw, 11rem);
    /* Ukuran dinamis sesuai layar */
    line-height: 0.75;
    color: #210404;
    letter-spacing: -6px;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-weight: 900;
}

/* Efek Outline pada baris kedua (VE) agar lebih artistik */
.text-bottom {
    color: transparent;
    -webkit-text-stroke: 2px #210404;
    /* Efek garis tepi saja */
    margin-top: -10px;
}

/* Aksen Garis di Bawah */
.love-accent-line {
    width: 40px;
    height: 2px;
    background-color: #ffd700;
    margin: 30px auto 15px;
}

/* Teks Penutup */
.with-you-text {
    font-family: 'Beau Rivage', cursive;
    font-size: 2.8rem;
    color: #a52a2a;
    margin: 0;
    line-height: 1;
}

/* Responsif Mobile */
@media (max-width: 480px) {
    .love-title {
        letter-spacing: -4px;
    }

    .celebrating-text {
        font-size: 0.6rem;
        letter-spacing: 4px;
        padding: 6px 15px;
    }

    .with-you-text {
        font-size: 2.2rem;
    }
}

/* Layout Profil Pengantin */
.couple-profile {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.couple-image-wrapper {
    position: relative;
    width: 80%;
    /* Sedikit lebih kecil agar elegan */
    height: 500px;
    z-index: 1;
}

/* Frame Dekoratif di Belakang Foto */
.couple-image-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #210404;
    z-index: -1;
}

.couple-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Label Melayang "The Bride / Groom" */
.side-label {
    position: absolute;
    font-family: 'Beau Rivage', cursive;
    font-size: 3.5rem;
    color: rgba(165, 42, 42, 0.4);
    /* Efek transparan agar lebih modern */
    z-index: 2;
    white-space: nowrap;
}

/* Info Section */
.couple-info {
    padding: 40px 20px;
    z-index: 3;
    background-color: transparent;
}

.instagram-link {
    text-decoration: none;
    color: #a52a2a;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.fullname {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: #210404;
}

.parent-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.5px;
}

/* Pengaturan Layout Spesifik */

/* BRIDE (Wanita) */
.bride-layout .couple-image-wrapper {
    align-self: flex-start;
    margin-left: 5%;
}

.bride-layout .couple-image-wrapper::before {
    top: 20px;
    left: 20px;
    /* Offset frame ke kanan bawah */
}

.bride-layout .side-label {
    bottom: -20px;
    right: -10%;
}

.bride-layout .couple-info {
    text-align: left;
    margin-left: 5%;
}

/* GROOM (Pria) */
.groom-layout .couple-image-wrapper {
    align-self: flex-end;
    margin-right: 5%;
}

.groom-layout .couple-image-wrapper::before {
    top: 20px;
    right: 20px;
    /* Offset frame ke kiri bawah */
}

.groom-layout .side-label {
    bottom: -20px;
    left: -10%;
}

.groom-layout .couple-info {
    text-align: right;
    margin-right: 5%;
}

/* Responsif Mobile */
@media (max-width: 480px) {
    .couple-image-wrapper {
        width: 85%;
        height: 400px;
    }

    .fullname {
        font-size: 2.5rem;
    }

    .side-label {
        font-size: 2.5rem;
    }
}


/* --- SECTION SAVE THE DATE --- */
.save-the-date {
    background-color: #210404;
    /* Kembali ke maroon gelap agar sinkron */
    color: white;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container Header */
.save-the-date-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Tulisan "Don't Forget" kecil di atas */
.dont-forget {
    font-family: 'Beau Rivage', cursive;
    font-size: 1.8rem;
    color: #c5a059;
    /* Warna emas/bronze */
    margin-bottom: -15px;
    /* Menarik teks ke bawah agar dekat dengan judul utama */
    position: relative;
    z-index: 2;
}

/* Tulisan "SAVE THE DATE" Besar */
.big-save-title {
    font-family: 'Playfair Display', serif;
    /* Pastikan menggunakan font Serif tebal */
    font-size: 5.5rem;
    /* Ukuran sangat besar sesuai gambar */
    font-weight: 700;
    line-height: 0.85;
    /* Jarak antar baris sangat rapat agar teks menumpuk estetik */
    color: #fff;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* Penyesuaian responsif untuk layar HP agar tidak berantakan */
@media (max-width: 480px) {
    .big-save-title {
        font-size: 4rem;
    }

    .dont-forget {
        font-size: 1.5rem;
    }
}

.save-date-container {
    max-width: 500px;
    width: 100%;
}

/* Judul Pakai Font Script Seperti Nama Pengantin */
.event-title-save {
    font-family: 'Beau Rivage', cursive;
    font-size: 4rem;
    margin-bottom: 40px;
    color: #fff;
}

/* Bagian Tanggal */
.date-info-v2 {
    margin-bottom: 50px;
}

.day-name {
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 15px;
}

.big-date-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.line-gold {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
}

.date-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
}

.month-year-detail {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Countdown Style */
.countdown-container-v2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    /* Sentuhan emas transparan */
    padding: 15px;
    min-width: 75px;
    border-radius: 8px;
}

.countdown-box span {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.countdown-box label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Lokasi & Tombol */
.location-text-v2 {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-remind-v2 {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #c5a059;
    /* Warna Emas */
    border: 1px solid #c5a059;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-remind-v2:hover {
    background-color: #c5a059;
    color: #210404;
}

/* --- SECTION EVENT (AKAD & RESEPSI) --- */
.event-section {
    background-color: #fdfaf7;
    /* Warna krem terang sesuai referensi */
    color: #210404;
    /* Warna maroon gelap untuk teks */
    padding: 80px 20px;
    text-align: center;
}

.event-container {
    max-width: 500px;
    margin: 0 auto;
}

.event-card {
    margin-bottom: 80px;
}

/* Judul Script (Marriage Contract / Reception) */
.event-type-title {
    font-family: 'Beau Rivage', cursive;
    font-size: 3.5rem;
    color: #a52a2a;
    /* Warna cokelat kemerahan/bronze */
    font-weight: 400;
    margin-bottom: 20px;
}

/* Detail Tanggal dan Jam */
.event-day-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-time {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Lokasi dengan Ikon */
.event-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

.event-location i {
    font-size: 1.2rem;
    color: #a52a2a;
    margin-bottom: 5px;
}

/* Inisial Besar di Bagian Bawah */
.event-footer-initial {
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.big-initial {
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    /* Ukuran sangat besar sesuai gambar */
    line-height: 0.8;
    color: #210404;
    letter-spacing: -5px;
    opacity: 1;
}

/* Responsif untuk Mobile */
@media (max-width: 480px) {
    .event-type-title {
        font-size: 2.8rem;
    }

    .big-initial {
        font-size: 7rem;
    }
}

/* Styling Tombol Peta */
.btn-maps {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #210404;
    /* Warna maroon gelap */
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #210404;
}

.btn-maps:hover {
    background-color: transparent;
    color: #210404;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Memastikan spasi yang baik di container lokasi */
.event-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- SECTION LOVE STORY (POLAROID STYLE) --- */
.story-section {
    background-color: #210404;
    /* Maroon gelap konsisten */
    color: white;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    min-height: 80vh;
}

.story-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

/* Header Story */
.story-header {
    margin-bottom: -30px;
    /* Menarik konten bawah ke atas agar menumpuk */
    position: relative;
    z-index: 10;
    text-align: left;
    padding-left: 20px;
}

.our-beloved {
    font-family: 'Beau Rivage', cursive;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: -20px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    opacity: 0.9;
}

/* Card Story */
.story-card {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #210404;
}

.story-image {
    width: 100%;
    height: 500px;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Gelap agar teks terbaca */
.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(33, 4, 4, 0.9) 95%);
}

/* Konten Teks di Dalam Gambar */
.story-content {
    position: absolute;
    bottom: 60px;
    left: 20px;
    right: 20px;
    z-index: 5;
}

.story-moment-title {
    font-family: 'Beau Rivage', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.story-description {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

/* Progress Bar Style */
/* Sembunyikan semua item kecuali yang aktif */
.story-item {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.story-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Progress Bar Container */
.story-progress-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.progress-bar-wrapper {
    height: 3px;
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: white;
}

/* Jika bar tersebut sudah terlewati, isi penuh */
.progress-bar-wrapper.completed .progress-fill {
    width: 100%;
}

.progress-bar.active {
    background: white;
}

/* Responsif Mobile */
@media (max-width: 480px) {
    .story-title {
        font-size: 4rem;
    }

    .story-image {
        height: 450px;
    }
}

.story-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 20;
    /* Harus di atas gambar dan konten */
}

.nav-area {
    height: 100%;
    flex: 1;
    cursor: pointer;
}

/* Optional: beri sedikit feedback saat di klik di layar sentuh */
.nav-area:active {
    background: rgba(255, 255, 255, 0.05);
}

/* --- SECTION GALLERY MODERN --- */
.gallery-section {
    background-color: #fdfaf7;
    /* Kembali ke krem terang agar Galeri menonjol */
    padding: 50px 20px 0 20px;
    color: #210404;
}

.gallery-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styling */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-memories {
    font-family: 'Beau Rivage', cursive;
    font-size: 2rem;
    color: #a52a2a;
    margin-bottom: -15px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    /* Sudut membulat halus */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Variasi Ukuran Grid */
.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item.horizontal {
    grid-column: span 2;
}

/* Footer Initial */
.gallery-footer {
    margin-top: 60px;
    text-align: center;
    /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
    /* padding-top: 40px; */
}

.footer-initial {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 0.8;
    letter-spacing: -5px;
    opacity: 0.1;
    /* Transparan halus seperti watermark */
}

/* Responsive Mobile */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .gallery-title {
        font-size: 3.5rem;
    }
}

/* Styling Lightbox */
.lightbox {
    display: none;
    /* Sembunyi secara default */
    position: fixed;
    z-index: 9999;
    /* Pastikan di atas segalanya */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* Latar belakang hitam transparan */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    /* Sudut membulat halus */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #c5a059;
    /* Warna emas saat hover */
}

/* Animasi membesar */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- SECTION WEDDING GIFT --- */
.gift-section {
    background-color: #210404;
    /* Latar bawah Maroon */
    position: relative;
    padding-bottom: 100px;
    text-align: center;
    color: white;
}

.gift-section {
    color: #ffffff !important;
    /* Semua teks di section ini putih secara default */
}

.transfer-instruction,
.for-bride {
    color: #ffffff !important;
}

/* Styling indikator "Disalin" */
.copy-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-status {
    font-size: 0.7rem;
    color: #210404;
    /* Warna gelap agar kontras dengan kartu krem */
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-status.show {
    opacity: 1;
}

/* Kartu tetap menggunakan warna teks gelap */
.account-card {
    color: #210404 !important;
}

/* Membuat area atas berwarna krem */
.gift-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* Tinggi area krem */
    background-color: #fdfaf7;
    z-index: 1;
}

.gift-container {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

/* Judul GIFT Besar */
.big-gift-title {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -5px;
    color: #210404;
    /* Warna gelap agar kontras dengan krem */
    margin-bottom: 0;
}

.for-bride {
    font-family: 'Beau Rivage', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-top: -20px;
    margin-bottom: 40px;
}

.transfer-instruction {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Kartu Rekening Putih Gading */
.account-card {
    background-color: #fdfaf7;
    color: #210404;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bank-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.account-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    margin-bottom: 10px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #210404;
    opacity: 0.6;
    transition: 0.3s;
}

.copy-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.account-holder {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsif */
@media (max-width: 480px) {
    .big-gift-title {
        font-size: 6rem;
    }

    .for-bride {
        font-size: 2rem;
    }
}

/* --- ANIMASI GIFT SECTION --- */
.gift-section h2,
.gift-intro {
    transform: translateY(-20px);
    transition: all 1s ease-out;
    text-shadow: -4px 5px 12px #dedede;
}

/* Kartu bank muncul dari kiri dan kanan secara selang-seling */
.bank-card {
    opacity: 0;
    transition: all 1s ease-out;
}

.bank-card:nth-of-type(1) {
    transform: translateX(-50px);
}

.bank-card:nth-of-type(2) {
    transform: translateX(50px);
}

/* Kartu alamat muncul dengan efek zoom kecil */
.address-card {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Class pemicu saat di-scroll */
.gift-section.reveal h2,
.gift-section.reveal .gift-intro {
    opacity: 1;
    transform: translateY(0);
}

.gift-section.reveal .bank-card {
    opacity: 1;
    transform: translateX(0);
}

.gift-section.reveal .address-card {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Delay staggered agar kartu muncul bergantian */
.gift-section.reveal .bank-card:nth-of-type(1) {
    transition-delay: 0.3s;
}

.gift-section.reveal .bank-card:nth-of-type(2) {
    transition-delay: 0.8s;
}

.gift-section.reveal .address-card {
    transition-delay: 1.0s;
}

/* Memberi jarak antar kartu */
.send-gift-card {
    margin-top: 30px !important;
}

.address-detail {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

.address-detail strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* Penyesuaian tombol salin untuk alamat */
.address-detail .copy-btn {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: rgba(33, 4, 4, 0.05);
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
}

.address-detail .copy-btn:hover {
    background-color: rgba(33, 4, 4, 0.1);
}

/* --- SECTION RSVP --- */
/* Container Utama */
.rsvp-section {
    background-color: #fdfaf7;
    /* Krem terang agar kontras dengan section maroon lainnya */
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.rsvp-container {
    max-width: 550px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* Header Typography */
.give-best {
    font-family: 'Beau Rivage', cursive;
    font-size: 2.2rem;
    color: #a52a2a;
    margin-bottom: -10px;
}

.big-wish-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #210404;
    letter-spacing: -2px;
    line-height: 0.9;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: #ffd700;
    margin: 20px auto;
}

.for-groom-bride {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Wishes List Design */
.wish-display-wrapper {
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(33, 4, 4, 0.05);
    margin-bottom: 40px;
}

.wish-list {
    max-height: 450px;
    overflow-y: auto;
    padding: 15px;
}

/* Custom Scrollbar */
.wish-list::-webkit-scrollbar {
    width: 4px;
}

.wish-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.wish-list::-webkit-scrollbar-thumb {
    background: #210404;
    border-radius: 10px;
}

.wish-item {
    background-color: #210404;
    /* Tetap Maroon */
    color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    border-left: 4px solid #ffd700;
    /* Aksen Emas */
}

.wish-item:hover {
    transform: translateY(-5px);
}

.wish-sender {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffd700;
}

.wish-location {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}

.wish-text {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Modern Form RSVP */
.modern-form {
    text-align: left;
}

.input-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #210404;
    margin-bottom: 8px;
    margin-left: 5px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #f1edea;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #210404;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #a52a2a;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(165, 42, 42, 0.1);
}

/* Button Styling */
.btn-rsvp-send {
    width: 100%;
    padding: 18px;
    background-color: #210404;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.4s;
}

.btn-rsvp-send:hover {
    background-color: #a52a2a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 4, 4, 0.3);
}

/* Form Status */
.form-status {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
}

.form-status.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.form-status.error {
    background-color: #ffebee;
    color: #c62828;
}

@media (max-width: 480px) {
    .big-wish-title {
        font-size: 3.5rem;
    }
}

/* --- SECTION PENUTUP --- */
/* --- ANIMASI CLOSING SECTION --- */


.closing-text,
.hashtag,
.closing-names,
.social-links,
.footer-logo {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

/* --- SECTION CLOSING MODERN --- */
.closing-section {
    background-color: #210404;
    /* Maroon gelap konsisten */
    color: #ffffff;
    padding: 100px 20px 40px 20px;
    /* Padding bawah lebih kecil untuk kredit */
    text-align: center;
    position: relative;
}

.closing-container {
    max-width: 450px;
    margin: 0 auto;
}

.closing-message {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Tipografi THANK YOU Besar */
.thank-you-text {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -2px;
    margin-bottom: -40px;
    /* Membuat teks menimpa foto sedikit */
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Foto Penutup */
.closing-photo {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.closing-photo img {
    width: 100%;
    height: auto;
    /* border: 15px solid #ffffff; */
    /* Frame putih tebal sesuai gambar */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Nama Script di bawah foto */
.closing-bride-name {
    font-family: 'Beau Rivage', cursive;
    font-size: 3.5rem;
    margin-top: -50px;
    /* Overlap di atas frame putih bawah */
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Footer Credits */
.credits {
    margin-top: 80px;
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.credits i {
    color: #ff4d4d;
    /* Warna hati merah */
    margin: 0 3px;
}

/* Responsive penyesuaian */
@media (max-width: 480px) {
    .thank-you-text {
        font-size: 4rem;
    }

    .closing-bride-name {
        font-size: 2.8rem;
    }
}

/* Khusus untuk elemen story-card agar muncul dengan efek zoom halus */
.story-card.animate-hidden {
    transform: translateY(40px) scale(0.95);
    transition: all 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.story-card.animate-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* --- Animasi Gallery: Scale & Reveal --- */
.gallery-item.animate-hidden {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Efek membal halus */
}

.gallery-item.animate-show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* --- Animasi Gift: Fade Up & Blur --- */
.gift-container.animate-hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50px);
    transition: all 1.2s ease-out;
}

.gift-container.animate-show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Delay Staggered untuk Gallery Grid */
.gallery-item:nth-child(1) {
    transition-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    transition-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    transition-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* --- Animasi Header Wishes (Slide dari Atas) --- */

/* --- Animasi Wish Items (Slide dari Samping Bergantian) --- */
.wish-item.animate-hidden {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-in-out;
}

.wish-item.animate-show {
    opacity: 1;
    transform: translateX(0);
}

/* --- Animasi Form RSVP (Zoom In Halus) --- */
.rsvp-form-container.animate-hidden {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rsvp-form-container.animate-show {
    opacity: 1;
    transform: scale(1);
}

/* Keadaan awal elemen sebelum scroll sampai ke posisi */