@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) translateX(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes slideInUpAccent {
    from {
        opacity: 0;
        transform: translateY(50px) translateX(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

/* Mengatur delay agar elemen muncul bergantian */

/* Variasi delay untuk elemen berurutan (stagger effect) */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* --- Penerapan pada Elemen --- */

/* Delay berbeda untuk setiap daun agar lebih dinamis */


/* 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;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
    /* Mencegah scroll horizontal seluruh halaman */
    margin: 0;
    padding: 0;
    width: 100%;
}

.wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Reset & Base Font */
body,
html {

    color: #6d5d4b;
    background-color: #1a2a33;

}

.wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    /* Mencegah seluruh halaman scroll */
}

/* Class khusus untuk nama pengantin */

/* --- BAGIAN KIRI (FIXED/STATIS) --- */
/* --- Sidebar Kiri (Desktop) --- */
.left-section {
    color: #ffffff;
    /* Mengganti ke putih agar lebih kontras di navy */
    flex: 1.4;
    background: url('images.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Konten di bawah sesuai gambar referensi */
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Overlay Gradasi Biru Gelap (Vignette) */
.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradasi dari transparan ke biru gelap pekat sesuai tema Gift Section */
    background: linear-gradient(to top, rgb(255 235 217 / 40%) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.left-content {
    position: relative;
    z-index: 2;
    text-align: left;
    /* Sesuai layout visual gambar */
    padding-bottom: 20px;
}

.left-content h2 {
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.left-content h1 {
    font-family: 'Playfair Display', serif;
    /* Font utama tema */
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #bfa37e;
    /* Menggunakan aksen Gold/Bronze dari tema Save The Date */
}

/* Dekorasi Tambahan: Bunga di pojok bawah */
.left-section::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Ukuran font diperbesar agar Beau Rivage terlihat jelas */

/* --- BAGIAN Kanan (SCROLLABLE) --- */
.right-section {
    position: relative;
    /* Penting sebagai acuan video container */
    flex: 1;
    overflow-y: auto;
    background-color: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.video-bg-container {
    position: absolute;
    /* Mengikuti tinggi total konten scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Di belakang konten */
    pointer-events: none;
    /* Video tidak bisa di-klik */
}

#bg-video {
    position: fixed;
    /* Membuat video tetap diam saat di-scroll */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Agar video memenuhi layar tanpa distorsi */
    z-index: -1;
}

/* Overlay Dark di atas Video */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Sesuaikan kegelapan (0.5 = 50%) */
    z-index: 0;
    pointer-events: none;
}

.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); */
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
        /* Sembunyikan bagian kiri */
    }

    .right-section {
        flex: 1;
        width: 100%;
    }
}

/* first/ */
/* Container Utama */
.first-screen {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Menaruh konten di bawah */
    align-items: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;

    /* Foto Sampul */
    /* background: url('images-2.jpg') no-repeat center center;
    background-size: cover; */
}

/* Overlay Gelap Transparan di bagian bawah */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    /* Jarak dari bawah layar */
    width: 90%;
}

/* Typography */
.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.couple-names {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffebd9;
    font-weight: 100;
}

.to-label {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 5px;
}

.guest-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Button Style */
.btn-open {
    background-color: #ffffff;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-open:hover {
    transform: scale(1.05);
}

/* --- Animasi --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content>* {
    opacity: 0;
    /* Sembunyikan dulu sebelum animasi */
    animation: fadeInUp 1.2s ease-out forwards;
}

/* Delay agar elemen muncul bergantian */
.subtitle {
    animation-delay: 0.3s;
}

.couple-names {
    animation-delay: 0.6s;
}

.guest-container {
    animation-delay: 0.9s;
}

.btn-open {
    animation-delay: 1.2s;
}

/* opening */
.opening-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    /* Sesuai permintaan */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    overflow: hidden;
    color: #ffffff;
}

.opening-content {
    max-width: 500px;
    width: 100%;
    text-align: left;
    /* Mengikuti layout gambar */
}

/* Typography Header */
.the-wedding {
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

.couple-names-opening {
    font-size: 2rem;
    line-height: 1.1;
    color: #FFEBD9;
    /* Warna oranye sesuai gambar */
    font-family: 'Georgia', serif;
    /* Gunakan font yang tebal */
    margin-bottom: 10px;
}

.wedding-date {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Photo Styling */
.photo-frame {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Frame tipis */
    padding: 5px;
}

.main-photo {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    /* Memberi kesan estetik */
}

/* Quote Styling */
.quote-text {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
}

.line-separator {
    width: 60%;
    height: 1px;
    background: #ffffff;
    margin: 0 auto 20px;
}

/* --- LOGIKA ANIMASI (REVEAL) --- */

/* Keadaan awal sebelum discroll */
.header-opening,
.photo-frame,
.quote-container {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Saat class .reveal ditambahkan oleh Observer */
.opening-section.reveal .header-opening {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.opening-section.reveal .photo-frame {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.opening-section.reveal .quote-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* quotes  */
/* --- Quotes Section Layout --- */
.quotes-section {
    min-height: 50vh;
    position: relative;
    padding: 100px 30px;
    background-color: #0a0a2e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.quotes-container {
    max-width: 600px;
    width: 100%;
    position: relative;
}

/* --- Tipografi --- */
.quotes-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* Warna emas muda/bronze untuk aksen title */
    margin-bottom: 20px;
}

.quotes-line {
    width: 40px;
    height: 1px;
    background-color: #bfa37e;
    margin: 0 auto 30px;
}

.quotes-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.quotes-subtext {
    font-family: sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #bfa37e;
}

/* --- State Awal Animasi (Hidden) --- */
.quotes-section .quotes-title,
.quotes-section .quotes-line,
.quotes-section .quotes-text,
.quotes-section .quotes-subtext {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- State Saat Reveal (Visible) --- */
.quotes-section.reveal .quotes-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.quotes-section.reveal .quotes-line {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
    width: 60px;
    /* Garis sedikit memanjang saat muncul */
}

.quotes-section.reveal .quotes-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.quotes-section.reveal .quotes-subtext {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Dekorasi Tambahan (Opsional) */
.quotes-decor {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    border: 1px solid #1a2a4e;
    border-radius: 50%;
    z-index: 0;
}

.quotes-decor.top {
    top: -20px;
    left: -20px;
}

.quotes-decor.bottom {
    bottom: -20px;
    right: -20px;
}

/* --- State Awal (Elemen Tersembunyi) --- */

/* Judul muncul dengan sedikit scale */
.quotes-section .quotes-title {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Garis pembatas melebar dari tengah */
.quotes-section .quotes-line {
    opacity: 0;
    width: 0;
    /* Mulai dari lebar 0 */
    transition: all 1s ease-out 0.4s;
}

/* Teks kutipan muncul dengan efek blur halus */
.quotes-section .quotes-text {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s;
}

/* Keterangan ayat/sumber muncul terakhir */
.quotes-section .quotes-subtext {
    opacity: 0;
    transform: translateY(10px);
    transition: all 1s ease-out 1s;
}

/* --- State Saat Reveal (Pemicu IntersectionObserver) --- */

.quotes-section.reveal .quotes-title {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.quotes-section.reveal .quotes-line {
    opacity: 1;
    width: 60px;
    /* Melebar ke ukuran tujuan */
}

.quotes-section.reveal .quotes-text {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.quotes-section.reveal .quotes-subtext {
    opacity: 1;
    transform: translateY(0);
}

/* couple/ */
/* --- Couple Section Layout --- */
/* =========================================
   COUPLE SECTION - FULL STYLES
   ========================================= */

.couple-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    color: #ffffff;
}

.couple-container {
    max-width: 600px;
    width: 100%;
}

.couple-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

/* Photo Styling */
.couple-photo-wrapper {
    width: 200px;
    height: 250px;
    margin-bottom: 20px;
    border: 2px solid #FFEBD9;
    /* Aksen oranye dari opening */
    padding: 10px;
    border-radius: 100px 100px 0 0;
    /* Bentuk kubah/dome */
    overflow: hidden;
}

.couple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 90px 90px 0 0;
}

/* Text Styling */
.couple-name {
   font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #FFEBD9;
    margin-bottom: 5px;
}

.child-of {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.parent-names {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.ig-link:hover {
    background: #FFEBD9;
    border-color: #FFEBD9;
}

.couple-divider {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    text-align: center;
    margin: 20px 0 40px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- ANIMASI ON-SCROLL (REVEAL) --- */

/* Sembunyikan elemen sebelum reveal */
.couple-item.bride,
.couple-item.groom,
.couple-divider {
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.couple-item.bride {
    transform: translateX(-50px);
}

.couple-item.groom {
    transform: translateX(50px);
}

.couple-divider {
    transform: scale(0.5);
}

/* Saat class .reveal ditambahkan */
.couple-section.reveal .couple-item.bride,
.couple-section.reveal .couple-item.groom {
    opacity: 1;
    transform: translateX(0);
}

.couple-section.reveal .couple-divider {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

/* Delay untuk membedakan waktu muncul bride & groom */
.couple-section.reveal .bride {
    transition-delay: 0.2s;
}

.couple-section.reveal .groom {
    transition-delay: 0.4s;
}

@media (min-width: 768px) {
    .couple-container {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

/* save-date/ */
/* --- Save The Date Layout --- */
.save-the-date {
    position: relative;
    padding: 120px 20px;
    min-height: 70vh;
    background-color: #f9fbfd;
    /* Putih sedikit kebiruan agar aset bunga menyatu */
    overflow: hidden;
    text-align: center;
}

.std-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Tipografi & Elemen Visual --- */
.std-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a2a4e;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.std-divider {
    width: 60px;
    height: 2px;
    background-color: #bfa37e;
    /* Aksen Gold */
    margin: 0 auto 25px;
}

.std-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

/* --- Countdown Styling --- */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.countdown-item {
    background: #ffffff;
    width: 80px;
    padding: 15px 5px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 42, 78, 0.08);
    border: 1px solid rgba(26, 42, 78, 0.05);
}

.countdown-item .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a4e;
}

.countdown-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bfa37e;
}

/* --- Dekorasi Aset --- */
.std-decor {
    position: absolute;
    opacity: 0.2;
    z-index: 1;
    transition: all 1.5s ease;
}

.top-right {
    width: 200px;
    top: -40px;
    right: -50px;
    transform: rotate(15deg);
}

.bottom-left {
    width: 180px;
    bottom: -40px;
    left: -50px;
}

/* --- Button --- */
.btn-calendar {
    display: inline-block;
    padding: 12px 30px;
    background: #1a2a4e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-calendar:hover {
    background: #bfa37e;
    transform: translateY(-3px);
}

/* --- Animasi On-Scroll (Reveal) --- */
.save-the-date {
    position: relative;
    min-height: 80vh;
    /* Sedikit lebih pendek dari opening */
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    color: #ffffff;
    overflow: hidden;
}

.std-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
}

/* Typography */
.std-title {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    letter-spacing: 5px;
    color: #FFEBD9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.std-intro {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Date Layout */
.date-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.date-line {
    width: 50px;
    height: 2px;
    background-color: #FFEBD9;
}

.date-main {
    display: flex;
    flex-direction: column;
}

.date-main .day {
    font-size: 1.2rem;
    letter-spacing: 4px;
    font-weight: 600;
}

.date-main .date-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    color: #ffffff;
    margin: 10px 0;
}

.date-main .month-year {
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.std-location {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    border: 1px solid rgba(243, 169, 82, 0.5);
    display: inline-block;
    padding: 8px 20px;
}

/* --- LOGIKA ANIMASI (REVEAL) --- */

/* Keadaan awal (Hidden) */
.std-title,
.std-intro,
.date-wrapper,
.std-location {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Reveal State */
.save-the-date.reveal .std-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.save-the-date.reveal .std-intro {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.save-the-date.reveal .date-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.save-the-date.reveal .std-location {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

/* Container untuk tombol agar ada jarak */
.remind-wrapper {
    margin-top: 30px;
}

.btn-remind {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #FFEBD9;
    /* Warna oranye emas */
    border: 1px solid #FFEBD9;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    /* Bentuk pill */
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    /* Efek blur kaca tipis */
}

.btn-remind i {
    font-size: 1.1rem;
}

/* Efek Hover */
.btn-remind:hover {
    background-color: #FFEBD9;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(243, 169, 82, 0.4);
    transform: translateY(-3px);
}

/* Tambahkan ke Animasi Reveal agar muncul terakhir */
.save-the-date.reveal .remind-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 1s;
    /* Muncul setelah lokasi */
}

/* Pastikan state awal disembunyikan */
.remind-wrapper {
    opacity: 0;
    transform: translateY(20px);
}

/* event/ */
/* --- Event Section Layout --- */
.event-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 80px 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.event-container {
    max-width: 600px;
    width: 100%;
}

.event-main-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Arial', sans-serif;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    /* Efek outline seperti di gambar */
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.event-box {
    margin-bottom: 80px;
    display: flex;
    width: 100%;
}

/* Mengatur aligment teks sesuai layout gambar */
.event-right {
    justify-content: flex-end;
    text-align: right;
}

.event-left {
    justify-content: flex-start;
    text-align: left;
}

.event-type {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-date {
    font-size: 1.2rem;
    line-height: 1;
    color: #FFEBD9;
    /* Aksen oranye emas */
    margin-bottom: 15px;
    font-family: 'Arial Black', sans-serif;
}

.event-time,
.event-venue,
.event-address {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 300;
}

/* Button Maps */
.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.btn-maps:hover {
    background: #FFEBD9;
    border-color: #FFEBD9;
}

/* --- ANIMASI REVEAL --- */

.event-main-title,
.event-box {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-right {
    transform: translateX(50px);
}

.event-left {
    transform: translateX(-50px);
}

.event-section.reveal .event-main-title {
    opacity: 1;
    transform: translateY(0);
}

.event-section.reveal .event-box {
    opacity: 1;
    transform: translateX(0);
}

/* Delay animasi berurutan */
.event-section.reveal .event-right {
    transition-delay: 0.3s;
}

.event-section.reveal .event-left {
    transition-delay: 0.6s;
}

/* story/ */
/* --- Story Section Layout --- */
.story-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 60px 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.story-container {
    max-width: 500px;
    width: 100%;
}

/* Foto Utama Styling */
.story-main-photo {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-main-photo img {
    width: 100%;
    display: block;
    filter: brightness(0.9);
}

/* Text Content - Right Aligned */
.story-content {
    text-align: right;
}

.story-title {
    font-size: 3.5rem;
    line-height: 0.9;
    font-family: 'Arial', sans-serif;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.story-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0.8;
}

/* Story Items */
.story-item {
    margin-bottom: 40px;
}

.story-event {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFEBD9;
    font-family: 'Georgia', serif;
    /* Warna aksen oranye */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.story-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 15px;
}

.story-line {
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
    /* Agar garis tetap di kanan */
}

/* --- ANIMASI REVEAL --- */

.story-main-photo,
.story-title,
.story-subtitle,
.story-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-section.reveal .story-main-photo {
    opacity: 1;
    transform: translateY(0);
}

.story-section.reveal .story-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.story-section.reveal .story-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Animasi item cerita muncul satu persatu */
/* Berikan aturan umum untuk semua story-item di dalam section yang sudah reveal */
.story-section.reveal .story-item {
    opacity: 1;
    transform: translateY(0);
}

/* Berikan delay otomatis tanpa harus hafal urutan */
.story-section.reveal .story-item:nth-of-type(1) {
    transition-delay: 0.7s;
}

.story-section.reveal .story-item:nth-of-type(2) {
    transition-delay: 0.9s;
}

.story-section.reveal .story-item:nth-of-type(3) {
    transition-delay: 1.1s;
}

/* --- Tambahan untuk Foto Cerita --- */
.story-img-wrapper {
    width: 100%;
    height: 180px;
    /* Sesuaikan tinggi foto */
    margin-bottom: 20px;
    border-radius: 60px 60px 15px 15px;
    /* Bentuk arch mini */
    overflow: hidden;
    position: relative;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-img {
    transform: scale(1.1);
    /* Efek zoom saat kartu di-hover */
}

/* Menambahkan gradasi halus pada foto agar teks di bawahnya lebih fokus */
.story-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsif untuk Mobile */
@media (max-width: 480px) {
    .story-img-wrapper {
        height: 150px;
    }
}

/* gallery/ */
/* --- Gallery Section Layout --- */
.gallery-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 80px 20px;
    color: #ffffff;
}

.gallery-container {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .gallery-container {
        max-width: 320px;
        margin: 0 auto;
    }
}

.gallery-title {
    text-align: center;
    font-size: 3.5rem;
    line-height: 0.9;
    font-family: 'Arial', sans-serif;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Video Styling */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Photo Grid Styling */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* Layout Variasi Grid */
.photo-item.tall {
    grid-row: span 2;
}

.photo-item.wide {
    grid-column: span 2;
}

/* --- LOGIKA ANIMASI (REVEAL) --- */

.gallery-title,
.video-wrapper,
.photo-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- ANIMASI REVEAL GALLERY (PERBAIKAN) --- */

/* Sembunyikan semua elemen di awal */
.gallery-title,
.video-wrapper,
.photo-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Munculkan Judul */
.gallery-section.reveal .gallery-title {
    opacity: 1;
    transform: translateY(0);
}

/* Munculkan Video */
.gallery-section.reveal .video-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Munculkan Item Foto di dalam Grid satu persatu */
/* Kita gunakan selector yang lebih dalam agar tepat sasaran */
.gallery-section.reveal .photo-grid .photo-item {
    opacity: 1;
    transform: translateY(0);
}

/* Pengaturan Delay spesifik per item foto */
.gallery-section.reveal .photo-grid .photo-item:nth-child(1) {
    transition-delay: 0.5s;
}

.gallery-section.reveal .photo-grid .photo-item:nth-child(2) {
    transition-delay: 0.6s;
}

.gallery-section.reveal .photo-grid .photo-item:nth-child(3) {
    transition-delay: 0.7s;
}

.gallery-section.reveal .photo-grid .photo-item:nth-child(4) {
    transition-delay: 0.8s;
}

.gallery-section.reveal .photo-grid .photo-item:nth-child(5) {
    transition-delay: 0.9s;
}

/* Pastikan tag 'a' berperan sebagai block/flex container */
.photo-item {
    display: block;
    /* Penting agar layout grid tidak hancur */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    cursor: zoom-in;
    /* Memberi indikasi bahwa foto bisa diklik */
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Overlay saat hover agar lebih interaktif */
.photo-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.photo-item:hover::after {
    opacity: 1;
}

.photo-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* --- Media Queries untuk Layout Grid yang Adaptif --- */

/* gift/ */
/* --- Gift Section Styling --- */
.gift-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 80px 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.gift-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.gift-title {
    font-size: 3rem;
    line-height: 0.9;
    font-family: 'Arial', sans-serif;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gift-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Card Styling */
.gift-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bank-logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #FFEBD9;
}

.account-number {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.account-name {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gift-icon {
    font-size: 2rem;
    color: #FFEBD9;
    margin-bottom: 15px;
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button Copy */
.btn-copy {
    background: #e0a46e;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-copy:hover {
    background: #e0923a;
    transform: translateY(-2px);
}

/* --- ANIMASI REVEAL --- */

/* --- ANIMASI REVEAL GIFT (PERBAIKAN) --- */

/* Sembunyikan elemen di awal */
.gift-header,
.gift-content .gift-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Munculkan Header (Judul & Subtitle) */
.gift-section.reveal .gift-header {
    opacity: 1;
    transform: translateY(0);
}

/* Munculkan Kartu di dalam Gift Content */
.gift-section.reveal .gift-content .gift-card {
    opacity: 1;
    transform: translateY(0);
}

/* Pengaturan Delay spesifik per kartu */
/* Urutan dihitung berdasarkan posisi di dalam .gift-content */
.gift-section.reveal .gift-content .gift-card:nth-of-type(1) {
    transition-delay: 0.4s;
}

.gift-section.reveal .gift-content .gift-card:nth-of-type(2) {
    transition-delay: 0.6s;
}

.gift-section.reveal .gift-content .gift-card:nth-of-type(3) {
    transition-delay: 0.8s;
}

/* rsvp/ */
/* --- RSVP Section Styling --- */
.rsvp-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 80px 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.rsvp-container {
    max-width: 600px;
    width: 100%;
}

.rsvp-title {
    text-align: center;
    font-size: 3rem;
    line-height: 0.9;
    font-family: 'Arial', sans-serif;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rsvp-subtitle {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Form Styling */
.rsvp-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 15px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
}

.rsvp-form select option {
    color: #333;
}

.btn-send {
    width: 100%;
    padding: 12px;
    background: #e0a46e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    background: #e0923a;
}

/* Guestbook Area */
.guestbook-area {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.total-wishes {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wishes-list {
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar Custom */
.wishes-list::-webkit-scrollbar {
    width: 5px;
}

.wishes-list::-webkit-scrollbar-thumb {
    background: #FFEBD9;
    border-radius: 10px;
}

.wish-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.wish-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.wish-name {
    font-weight: bold;
    color: #FFEBD9;
}

.wish-status {
    font-size: 0.75rem;
    background: rgba(243, 169, 82, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
}

.wish-text {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 300;
}

/* --- ANIMASI REVEAL RSVP --- */

.rsvp-header,
.rsvp-form,
.guestbook-area {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rsvp-section.reveal .rsvp-header {
    opacity: 1;
    transform: translateY(0);
}

/* Menggunakan selector spesifik ke dalam rsvp-content */
.rsvp-section.reveal .rsvp-content .rsvp-form {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.rsvp-section.reveal .rsvp-content .guestbook-area {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* closing/ */
/* --- Closing Section Styling --- */
.closing-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    padding: 100px 20px 40px;
    /* Padding bawah untuk footer */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.closing-container {
    max-width: 600px;
    width: 100%;
}

/* Photo Styling */
.closing-photo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 40px;
    border-radius: 200px 200px 0 0;
    /* Bentuk Kubah */
    overflow: hidden;
    border: 2px solid #FFEBD9;
    padding: 10px;
}

.closing-photo img {
    width: 100%;
    display: block;
    border-radius: 190px 190px 0 0;
    filter: grayscale(20%);
}

/* Content Styling */
.closing-text {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.closing-couple-names {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #FFEBD9;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.closing-hashtag {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 60px;
}

/* Amorra Footer */
.amorra-footer {
    margin-top: 40px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

.amorra-footer i {
    color: #ff4d4d;
    /* Warna merah untuk hati */
    margin: 0 3px;
}

/* --- ANIMASI REVEAL CLOSING (PERBAIKAN) --- */

/* Sembunyikan elemen awal */
.closing-photo,
.closing-content .closing-text,
.closing-content .closing-couple-names,
.closing-content .closing-hashtag,
.amorra-footer {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Trigger Reveal */
.closing-section.reveal .closing-photo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.closing-section.reveal .closing-content .closing-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.closing-section.reveal .closing-content .closing-couple-names {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.closing-section.reveal .closing-content .closing-hashtag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.closing-section.reveal .amorra-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.4s;
}