@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;1,300&display=swap');

/* --- Definisi Animasi --- */
/* Slide dari Pojok untuk Daun */
/* --- Definisi Animasi --- */
@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 */


/* --- Penerapan pada Elemen --- */

/* Delay berbeda untuk setiap daun agar lebih dinamis */

.couple-photo-container {
    /* Gabungkan slideDown (masuk) dan floatAnim (mengambang) */
    animation:
        slideInDown 1.5s cubic-bezier(0.22, 1, 0.36, 1) backwards,
        floatAnim 4s ease-in-out infinite 1.5s;
    /* float dimulai setelah slide selesai */
}

.content-wrapper .sub-title,
.content-wrapper .couple-names,
.content-wrapper .guest-info,
.content-wrapper .btn-open {
    animation: slideInUp 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* Staggered delay untuk teks agar muncul bergantian */
.sub-title {
    animation-delay: 0.8s;
}

.couple-names {
    animation-delay: 1s;
}

.guest-info {
    animation-delay: 1.2s;
}

.btn-open {
    animation-delay: 1.4s;
}



/* 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%;
}

.wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Reset & Base Font */
body,
html {

    font-family: 'Serif', 'Georgia', serif;
    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) --- */
.left-section {
    color: #000000;
    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: linear-gradient(to bottom, #f5f1eb30 70%, #fdfaf7 100%);
    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: url('../images/bg-koran2.webp') no-repeat center center;
    background-size: cover;
    overflow-x: hidden;
    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) */

/* Palette Warna: 
   - Hijau Utama: #4A5D4E (Sage Dark)
   - Hijau Muda: #86A789
   - Putih Bersih: #FFFFFF
   - Background: #F7F8F6 (Off White)
*/
/* Container Utama: Muncul dengan efek zoom-in lembut */
.first-screen .newspaper-container {
    animation: newspaperEntrance 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Header: Muncul dari atas */
.first-screen .header-text {
    animation: fadeInDown 1s ease-out 0.5s both;
}

/* Area Foto: Muncul dengan efek scale dan rotasi vintage */
.first-screen .photo-area {
    animation: photoEntrance 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s both;
}

/* Footer & Tombol: Muncul dari bawah */
.first-screen .footer-text {
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* Keyframes Definitions */
@keyframes newspaperEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes photoEntrance {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Animasi Tombol Berdenyut (Subtle Pulse) */
.btn-open {
    animation: pulse 2s infinite 2.5s;
}

@keyframes pulse {
    0% {
        box-shadow: 4px 4px 0px #333;
    }

    50% {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 4px 4px 0px #333;
    }
}

.first-screen {
    height: 100vh;
    width: 100%;
    background: url('../images/bg-koran-awal.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.newspaper-container {
    width: 90%;
    max-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Header di Atas Frame */
.journal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    color: #222;
    letter-spacing: -1px;
}

.edition-line {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 3px 0;
    margin-top: 5px;
}

/* Container Frame Foto */
.photo-frame-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame-img {
    width: 100%;
    z-index: 2;
    /* Frame menimpa foto agar terlihat menjepit */
    pointer-events: none;
    /* Agar tidak menghalangi klik jika ada */
}

.photo-wrapper {
    position: absolute;
    width: 75%;
    /* Sesuaikan agar pas di lubang frame-koran.png */
    height: 75%;
    z-index: 1;
    overflow: hidden;
}

.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.1);
    /* Efek foto koran jadul */
}

/* Footer di Bawah Frame */
.couple-names {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 10px 0;
    color: #222;
}

.newspaper-container {
    width: 85%;
    /* Perkecil max-width dari 450px ke 320px - 350px agar terlihat compact */
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgb(255 255 255 / 90%);
    /* Opsional: efek kertas tipis */
    border-radius: 8px;
}

/* Mengatur ukuran area foto agar lebih kecil dari teks */
.photo-area {
    width: 70%;
    /* Mengecilkan bingkai relatif terhadap container */
    margin: 0 auto;
    /* Menjaga tetap di tengah */
}

.photo-frame-container {
    position: relative;
    width: 100%;
}

.frame-img {
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.photo-wrapper {
    position: absolute;
    /* Sesuaikan persentase ini agar foto pas di dalam lubang frame */
    top: 12%;
    left: 12%;
    width: 76%;
    height: 76%;
    z-index: 1;
}

/* Tipografi yang disesuaikan ukurannya agar tetap harmoni */
.journal-title {
    font-size: 1.5rem;
    /* Sedikit diperkecil */
    letter-spacing: 1px;
}

.couple-names {
    font-size: 1.8rem;
    /* Sedikit diperkecil */
    margin: 10px 0 5px 0;
}

.guest-name {
    font-size: 1.2rem;
}

.btn-open {
    padding: 10px 20px;
    font-size: 0.75rem;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
        /* Sembunyikan bagian kiri */
    }

    .right-section {
        flex: 1;
        width: 100%;
    }
}

/* Import Google Fonts (Tambahkan di bagian head HTML) */

/* --- 1. RESET & BASE --- */
.opening-section {
    padding: 40px 20px;
    /* background: #f5f6f6; */
    /* Warna kertas koran yang lebih cerah */
    min-height: 100vh;
}

.news-wrapper {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 20px;
    background: rgb(255 255 255);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Header Koran */
.news-header {
    text-align: center;
    border-bottom: 4px solid #222;
    margin-bottom: 25px;
}

.main-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 0;
    border-top: 1px solid #222;
}

/* Foto & Caption */
.opening-photo-container {
    margin-bottom: 30px;
    border: 1px solid #ccc;
    padding: 10px;
}

.opening-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    /* Efek hitam putih koran */
}

.photo-caption {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.8rem;
    margin-top: 8px;
    color: #555;
    text-align: left;
    border-left: 3px solid #333;
    padding-left: 10px;
}

/* Styling Nama Mempelai */
.wedding-announcement {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: #444;
    margin-bottom: 20px;
}

.couple-names-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.nick-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: bold;
    display: block;
}

.role {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
}

.ampersand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #888;
}

/* Tanggal Acara */
.event-details {
    margin-top: 30px;
}

.save-the-date-1 {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 5px;
}

.save-the-date-1 {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.event-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 10px 0;
}

.news-hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 5px auto;
    width: 80%;
}

/* State awal: Tersembunyi dan sedikit turun */
.reveal-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth transition */
}

/* State akhir: Muncul saat di-scroll */
.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Menambahkan sedikit delay pada elemen internal agar muncul bergantian */
.news-header {
    transition-delay: 0.2s;
}

.opening-photo-container {
    transition-delay: 0.4s;
}

.news-content {
    transition-delay: 0.6s;
}

/* --- SECTION QUOTES --- */
.quotes-section {
    padding: 60px 20px;
    background: #f5f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.quotes-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Garis pembatas tebal-tipis khas koran lama */
.editorial-line {
    border-top: 3px solid #333;
    border-bottom: 1px solid #333;
    height: 6px;
    margin: 20px 0;
}

.quotes-content {
    padding: 20px 0;
}

.editorial-tag {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    font-weight: bold;
    background: #333;
    color: #fff;
    padding: 3px 15px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 30px;
}

.quote-wrapper {
    position: relative;
    padding: 0 20px;
}

/* Simbol kutipan besar yang artistik */
.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #ccc;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.5;
}

.quote-text {
    font-family: 'Georgia', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #333;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.quote-author {
    margin-top: 15px;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
}

/* Efek bercak tinta tipis (opsional untuk kesan vintage) */
.quotes-container::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#000 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
    pointer-events: none;
}

/* State awal untuk Container Quote */
.quotes-container.reveal-content {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* State aktif saat di-scroll */
.quotes-container.reveal-content.active {
    opacity: 1;
    transform: scale(1);
}

/* Animasi khusus untuk garis editorial agar memanjang dari tengah */
.editorial-line {
    transform: scaleX(0);
    transition: transform 1s ease-out;
    transition-delay: 0.3s;
}

.active .editorial-line {
    transform: scaleX(1);
}

/* --- SECTION BRIDE & GROOM --- */
.couple-section {
    padding: 60px 20px;
    background: #f0f0f0;
    position: relative;

    overflow: hidden;
}

/* Pastikan konten utama berada di atas dekorasi */
.couple-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Header Bergaya Koran */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.double-line {
    border: none;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    height: 4px;
    margin: 5px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    font-weight: 800;
    margin: 10px 0;
}

/* Layout Flex untuk Desktop, Stack untuk Mobile */
.couple-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.couple-profile {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

/* Frame Foto Profil */
.profile-frame {
    width: 200px;
    height: 250px;
    margin: 0 auto 20px;
    border: 1px solid #333;
    padding: 8px;
    background: #fff;
    box-shadow: 5px 5px 0px #ccc;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.1);
    /* Nuansa vintage */
}

/* Info Text */
.profile-info .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.profile-info .parents {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.social-link {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
}

/* Pembatas Vertikal (Hanya muncul di Desktop) */
.vertical-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 50px;
}

.vertical-divider .line {
    width: 1px;
    height: 150px;
    background: #333;
}

.vertical-divider .dot {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .vertical-divider {
        /* display: none; */
        /* Sembunyikan garis vertikal di HP */
    }

    .couple-profile:first-child {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px dashed #ccc;
    }
}


/* Base Style Dekorasi */
.decor-paper {
    position: absolute;
    width: 250px;
    /* Sesuaikan ukuran */
    height: auto;
    opacity: 0.6;
    /* Membuatnya terlihat menyatu dengan background */
    z-index: 0;
    pointer-events: none;
    /* Agar tidak menghalangi klik pada teks/tombol */
    filter: sepia(0.2);
}

/* Posisi di pojok kiri atas */
.decor-top-left {
    top: -50px;
    left: -50px;
    transform: rotate(-15deg);
}

/* Posisi di pojok kanan bawah */
.decor-bottom-right {
    bottom: -18px;
    right: -5px;
    transform: rotate(165deg) scaleX(-1);
    /* Diputar dan dibalik agar variatif */
}


/* Responsif untuk HP agar dekorasi tidak menutupi teks */
@media (max-width: 768px) {
    .decor-paper {
        width: 175px;
        opacity: 0.4;
    }
}

/* State awal untuk profil pria (masuk dari kiri) */
.couple-profile:first-child.reveal-content {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s ease-out;
}

/* State awal untuk profil wanita (masuk dari kanan) */
.couple-profile:last-child.reveal-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease-out;
}

/* State aktif untuk keduanya */
.couple-profile.reveal-content.active {
    opacity: 1;
    transform: translateX(0);
}

/* Animasi untuk pembatas vertikal (muncul dari atas) */
.vertical-divider.reveal-content {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
    transition-delay: 0.5s;
}

.vertical-divider.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi dekorasi kertas koran */
.decor-paper.reveal-content {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.decor-paper.reveal-content.active {
    opacity: 0.6;
    /* Kembali ke opacity base */
}

/* --- SECTION SAVE THE DATE --- */
.reminder-action {
    margin-top: 25px;
    text-align: center;
}

.btn-remind {
    background-color: transparent;
    border: 2px solid #333;
    padding: 10px 25px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px #333;
    /* Efek bayangan kaku retro */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.btn-remind:hover {
    background-color: #333;
    color: #fdfaf3;
    box-shadow: 0px 0px 0px #333;
    transform: translate(4px, 4px);
}

.small-print {
    font-family: 'Georgia', serif;
    font-size: 0.65rem;
    font-style: italic;
    margin-top: 10px;
    color: #666;
    letter-spacing: 0.5px;
}

.save-the-date {
    padding: 80px 20px;
    /* background: #fdfaf352; */
    /* background: url(bg-koran2.webp) no-repeat center center; */
    background: transparent !important;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;

}

.save-date-container {
    max-width: 400px;
    width: 100%;
    background: rgb(255 255 255 / 86%);
    border: 1px solid #333;
    padding: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
}

.notice-header {
    text-align: center;
    margin-bottom: 30px;
}

.notice-label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid #333;
    padding: 2px 10px;
}

.notice-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-top: 15px;
    letter-spacing: 2px;
}

/* Kalender Style */
.calendar-wrapper {
    border: 2px solid #333;
    padding: 20px;
    background: #fff;
}

.calendar-month {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-family: 'Georgia', serif;
    gap: 10px 0;
}

.day-name {
    font-weight: bold;
    font-size: 0.8rem;
    padding-bottom: 10px;
}

/* Lingkaran Tinta pada Tanggal */
.special-date {
    position: relative;
    color: #b22222;
    /* Warna merah tinta gelap */
    font-weight: bold;
}

.ink-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #b22222;
    stroke-width: 3;
    stroke-linecap: round;
    opacity: 0.7;
}

/* Reminder Footer */
.event-reminder {
    margin-top: 30px;
    text-align: center;
}

.reminder-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.countdown-minimal {
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1rem;
    border-top: 1px dashed #333;
    padding-top: 10px;
}

/* Dekorasi */
.decor-save-date {
    position: absolute;
    width: 300px;
    right: -50px;
    bottom: -50px;
    opacity: 0.3;
    transform: rotate(-20deg);
}

/* State awal: Kontainer kalender tersembunyi */
.save-date-container.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.save-date-container.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi khusus untuk Lingkaran Tinta (Stempel) */
.ink-circle path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.5s ease-in-out;
    transition-delay: 0.8s;
    /* Muncul setelah kalender stabil */
}

/* Ketika section aktif, "gambar" lingkaran tintanya */
.active .ink-circle path {
    stroke-dashoffset: 0;
}

/* Animasi untuk tombol Remind Me */
.reminder-action.reveal-content {
    opacity: 0;
    transition: opacity 1s ease-in;
    transition-delay: 1.2s;
}

.reminder-action.reveal-content.active {
    opacity: 1;
}

/* --- SECTION EVENT (AKAD & RESEPSI) --- */
.event-section {
    padding: 80px 20px;
    background: #f0f0f0;
}

.event-container {
    max-width: 800px;
    margin: 0 auto;
}

.event-header {
    text-align: center;
    margin-bottom: 40px;
}

.event-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 8px;
    margin-bottom: 10px;
}

.event-subline {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: bold;
    color: #555;
}

/* Grid Layout */
.event-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.event-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 5px;
    border: 1px solid #333;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

.card-border {
    border: 1px dashed #333;
    padding: 25px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.event-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    background: #333;
    color: #fff;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 15px;
    align-self: center;
}

.event-type {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.event-info {
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.info-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.info-item .label {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: bold;
    color: #888;
}

.info-item .value {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
}

/* Tombol Maps */
.btn-maps {
    display: inline-block;
    border: 1.5px solid #333;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.btn-maps:hover {
    background: #333;
    color: #fff;
}

.event-footer {
    margin-top: 40px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border-top: 2px double #333;
    padding-top: 20px;
}

/* --- SECTION LOVE STORY (POLAROID STYLE) --- */
.story-section {
    padding: 80px 20px;
    background: #fafbfb;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Image Styling */
.story-main-image {
    text-align: center;
    margin-bottom: 50px;
}

.story-decor {
    position: absolute;
    width: 350px;
    bottom: -80px;
    left: -50px;
    opacity: 0.4;
    transform: rotate(15deg);
    z-index: 1;
}

.image-frame {
    border: 1px solid #333;
    padding: 12px;
    background: #fff;
    display: inline-block;
    transform: rotate(-1deg);
    /* Sedikit miring agar terlihat seperti diletakkan manual */
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
}

.story-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: grayscale(100%) contrast(1.1);
}

/* 3 Part Grid */
.story-parts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 2px solid #333;
    padding-top: 30px;
}

.story-part {
    border-right: 1px solid #ddd;
    padding-right: 15px;
}

.story-part:last-child {
    border-right: none;
    padding-right: 0;
}

.part-title {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    color: #b22222;
    /* Warna merah gelap aksen koran */
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.paragraph {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    color: #333;
}

.drop-cap {
    font-family: 'Playfair Display', serif;
    float: left;
    font-size: 3rem;
    line-height: 0.8;
    padding-right: 8px;
    font-weight: 900;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-parts-grid {
        grid-template-columns: 1fr;
    }

    .story-part {
        border-right: none;
        border-bottom: 1px dashed #ccc;
        padding-bottom: 20px;
        padding-right: 0;
    }
}

/* State awal kartu: sedikit miring dan transparan */
.event-card.reveal-content {
    opacity: 0;
    transform: perspective(1000px) rotateY(-20deg) translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* State aktif */
.event-card.reveal-content.active {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg) translateY(0);
}

/* Delay untuk kartu kedua agar muncul bergantian */
.event-card.resepsi {
    transition-delay: 0.3s;
}

/* Animasi untuk footer (dress code) */
.event-footer.reveal-content {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
    transition-delay: 0.6s;
}

.event-footer.reveal-content.active {
    opacity: 1;
    transform: scale(1);
}

/* Animasi Foto Utama */
.story-main-image.reveal-content {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-main-image.reveal-content.active {
    opacity: 1;
    transform: scale(1) rotate(-1deg);
    /* Tetap miring sedikit setelah muncul */
}

/* Animasi Kolom Cerita (Parts) */
.story-part.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.story-part.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay untuk Part 1, 2, dan 3 */
.story-part:nth-child(1) {
    transition-delay: 0.3s;
}

.story-part:nth-child(2) {
    transition-delay: 0.6s;
}

.story-part:nth-child(3) {
    transition-delay: 0.9s;
}

/* --- SECTION GALLERY MODERN --- */
.gallery-section {
    padding: 80px 20px;
    background: #fdfaf3;
    overflow: hidden;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Style */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.thick-line {
    border: 2.5px solid #333;
    margin: 5px auto;
    width: 60px;
}

.thin-line {
    border: 0.5px solid #333;
    margin: 5px auto;
    width: 150px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 15px 0;
}

.gallery-subtitle {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
}

/* Grid Layout Asimetris */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    padding: 10px;
}

/* Photo Paper Effect */
.photo-paper {
    background: #fff;
    padding: 10px 10px 30px 10px;
    /* Padding bawah lebih besar seperti polaroid/kliping */
    border: 1px solid #ddd;
    height: 100%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-paper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.1) grayscale(20%);
}

.photo-paper:hover {
    transform: scale(1.02) rotate(0deg) !important;
    z-index: 10;
}

/* Variasi Ukuran Item */
.item-large {
    grid-row: span 2;
    grid-column: span 1;
    transform: rotate(-2deg);
}

.item-wide {
    grid-column: span 2;
    transform: rotate(1.5deg);
}

.gallery-item:nth-child(3) {
    transform: rotate(-1deg);
}

.gallery-item:nth-child(4) {
    transform: rotate(2deg);
}

/* Dekorasi Tape/Selotip */
.tape-decor {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    border-right: 1px dashed rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Inner Decor */
.gallery-decor-wrapper {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inner-decor {
    width: 150%;
    opacity: 0.3;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .item-wide {
        grid-column: span 2;
    }
}

/* Styling Lightbox */
.modal-lightbox {
    display: none;
    align-content: center;
    /* Tersembunyi secara default */
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: red;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover {
    color: #bbb;
}

/* Animasi Zoom */
.modal-content,
.modal-caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* State awal: Mengecil, transparan, dan rotasi nol */
.gallery-item.reveal-content {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* State aktif: Ukuran normal dan kembali ke rotasi desain awal */
.gallery-item.reveal-content.active {
    opacity: 1;
    transform: scale(1) rotate(var(--item-rotation));
}

/* Menentukan variabel rotasi sesuai desain awal Anda */
.item-large {
    --item-rotation: -2deg;
}

.item-wide {
    --item-rotation: 1.5deg;
}

.gallery-item:nth-child(3) {
    --item-rotation: -1deg;
    transition-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    --item-rotation: 2deg;
    transition-delay: 0.4s;
}

/* Animasi untuk dekorasi koran di tengah galeri */
.gallery-decor-wrapper.reveal-content {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.gallery-decor-wrapper.reveal-content.active {
    opacity: 1;
}

/* --- SECTION WEDDING GIFT --- */
.gift-section {
    padding: 80px 20px;
    background: #f0f0f0;
    position: relative;
}

.gift-container {
    max-width: 700px;
    margin: 0 auto;
}

.gift-header {
    text-align: center;
    margin-bottom: 40px;
}

.editorial-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: bold;
    border: 1px solid #333;
    padding: 3px 10px;
}

.gift-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 15px 0;
    text-decoration: underline;
}

.gift-subline {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

/* Grid Kartu Gift */
.gift-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.gift-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border: 2px solid #333;
    padding: 5px;
    box-shadow: 6px 6px 0px #333;
    /* Hard shadow khas retro */
}

.card-inner {
    border: 1px dashed #333;
    /* Garis putus-putus seperti kupon */
    padding: 25px;
    text-align: center;
}

.bank-name {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.account-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.address-text {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Tombol Salin */
.btn-copy {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-copy:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.gift-footer {
    margin-top: 40px;
    text-align: center;
}

.thank-you-note {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}

/* Container Header */
.gift-header.reveal-content {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
}

.gift-header.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Kartu Gift - Slide dari samping */
.gift-card.reveal-content {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Kartu Kiri (BCA) */
.gift-card:first-child.reveal-content {
    transform: translateX(-50px);
}

/* Kartu Kanan (Alamat) */
.gift-card:last-child.reveal-content {
    transform: translateX(50px);
}

.gift-card.reveal-content.active {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Thank You Note */
.gift-footer.reveal-content {
    opacity: 0;
    transition: opacity 1s ease-in;
    transition-delay: 0.8s;
}

.gift-footer.reveal-content.active {
    opacity: 1;
}

/* --- SECTION RSVP --- */
.rsvp-section {
    padding: 80px 20px;
    background: #f0f0f0;
}

.rsvp-container {
    max-width: 900px;
    margin: 0 auto;
}

.rsvp-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}

.rsvp-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
}

.rsvp-subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #555;
}

/* Grid Layout */
.rsvp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background: #fff;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border-radius: 0;
    /* Menjaga kesan kaku retro */
}

.btn-submit {
    width: 100%;
    background: #333;
    color: #fff;
    border: none;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #555;
}

/* Wishing Wall / Komentar Box */
.wishes-container {
    border: 1px solid #333;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.wishes-header {
    background: #333;
    color: #fff;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
}

.wishes-box {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.wish-item {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.wish-name {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.wish-text {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444;
}

.wish-status {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #2ecc71;
    /* Warna hijau indikator kehadiran */
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rsvp-grid {
        grid-template-columns: 1fr;
    }
}

/* State awal untuk wrapper formulir dan kotak ucapan */
.rsvp-form-wrapper.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.wishes-container.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
    transition-delay: 0.3s;
    /* Muncul sedikit lebih lambat */
}

/* State aktif */
.rsvp-form-wrapper.reveal-content.active,
.wishes-container.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi untuk item ucapan individu di dalam box */
.wish-item {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.5s ease-out;
}

.active .wish-item {
    opacity: 1;
    transform: translateX(0);
}

/* Delay berurutan untuk item ucapan */
.wish-item:nth-child(1) {
    transition-delay: 0.5s;
}

.wish-item:nth-child(2) {
    transition-delay: 0.7s;
}

/* --- SECTION CLOSING MODERN --- */


/* --- ANIMASI KHUSUS CLOSING --- */
.closing-section {
    padding: 100px 20px 40px 20px;
    background: #f0f0f0;
    ;
    text-align: center;
}

.closing-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Foto Penutup */
.final-image-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.photo-frame-final {
    padding: 15px;
    background: #fff;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.final-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    /* filter: sepia(0.2) contrast(1.1); */
    /* Nuansa luxury modern aesthetic */
}

.final-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 2px;
}

/* Teks & Hashtag */
.closing-content {
    margin-top: 60px;
}

.closing-text {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #444;
    margin-bottom: 30px;
}

.hashtag-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hashtag {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
    border: 1px dashed #333;
    padding: 5px 15px;
}

/* Footer Credit */
.footer-credit {
    margin-top: 50px;
}

.footer-divider {
    border: 0;
    border-top: 2px double #333;
    margin-bottom: 20px;
}

.footer-credit p {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #777;
}

.footer-credit i {
    color: #b22222;
    /* Warna hati merah khas koran */
}

/* State awal foto penutup */
.final-image-wrapper.reveal-content {
    opacity: 0;
    transform: scale(1.1);
    /* Sedikit zoom out saat muncul */
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-image-wrapper.reveal-content.active {
    opacity: 1;
    transform: scale(1);
}

/* Animasi untuk label headline hitam */
.final-headline {
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.8s ease-out;
    transition-delay: 1s;
}

.active .final-headline {
    transform: translateX(-50%) scaleX(1);
}

/* Animasi untuk teks dan hashtag */
.closing-content.reveal-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
    transition-delay: 1.2s;
}

.closing-content.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Credit */
.footer-credit.reveal-content {
    opacity: 0;
    transition: opacity 1s ease-in;
    transition-delay: 1.8s;
}

.footer-credit.reveal-content.active {
    opacity: 1;
}

.parallax-group {
    position: relative;
    width: 100%;
    perspective: 1px;
    height: auto;
    overflow: hidden;
}

.parallax-bg-shared {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg-koran2.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
    /* transform: translateZ(-1px) scale(2); */
    /* filter: brightness(0.6); */
}