        @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;
            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) --- */
        /* --- BAGIAN KIRI (FIXED/STATIS) --- */
        .left-section {
            color: #ffffff;
            flex: 1.4;
            /* Ganti ke foto pasangan utama kamu */
            /* background: url('images-2.jpg') no-repeat center center; */
            /* background-size: cover; */
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        /* Overlay Gradasi Biru Nautical (Vignette) */
        .left-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Gradasi Biru Samudera Gelap ke Transparan */
            background: linear-gradient(to top, rgba(26, 74, 114, 0.95) 0%, rgba(0, 0, 0, 0) 70%);
            z-index: 1;
        }

        .left-content {
            position: relative;
            z-index: 3;
            /* Pastikan di atas overlay dan wheel */
            text-align: left;
            padding-bottom: 20px;
        }

        .left-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            letter-spacing: 5px;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
        }

        .left-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            line-height: 1;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

        .left-content p {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 3px;
            /* Warna aksen biru muda/putih bersih */
            color: #f0f8ff;
            border-left: 3px solid #f0f8ff;
            padding-left: 15px;
        }

        /* Dekorasi Setir Kapal di Sidebar */
        .sidebar-decor-wheel {
            position: absolute;
            top: 40px;
            right: -30px;
            width: 200px;
            opacity: 0.2;
            /* Dibuat sangat transparan sebagai watermark */
            z-index: 2;
            animation: rotateSlow 30s linear infinite;
            filter: brightness(0) invert(1);
            /* Membuat gambar menjadi putih */
        }

        /* Dekorasi Topi di pojok bawah */
        .left-section::after {
            content: "";
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 120px;
            height: 120px;
            background: url('../images/sailor-hat.webp') no-repeat center center;
            background-size: contain;
            opacity: 0.3;
            z-index: 2;
            transform: rotate(15deg);
            pointer-events: none;
        }

        /* Sembunyikan sidebar di layar mobile (agar hanya konten utama yang muncul) */
        @media (max-width: 992px) {
            .left-section {
                display: none;
            }
        }

        /* Ukuran font diperbesar agar Beau Rivage terlihat jelas */

        /* --- BAGIAN Kanan (SCROLLABLE) --- */
        .right-section {
            flex: 1;
            overflow-y: auto;
            /* background: url('blue-background.jpg') no-repeat center center;
            background-size: cover; */
            background: url('../images/bg-pembuka.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); */
        }

        @media (max-width: 1024px) {
            .left-section {
                display: none;
                /* Sembunyikan bagian kiri */
            }

            .right-section {
                flex: 1;
                width: 100%;
            }
        }

        /* first/ */
        /* Layout Utama */
        /* Layout Utama */
        @keyframes floatAwan {
            0% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(20px);
            }

            100% {
                transform: translateX(0);
            }
        }

        .cloud {
            position: absolute;
            z-index: 2;
            /* Di atas background kastil, di bawah atau sejajar frame */
            pointer-events: none;
            /* Agar tidak menghalangi klik tombol */
            opacity: 0.8;
        }

        .awan-1 {
            width: 200px;
            /* Sesuaikan ukuran */
            top: 1%;
            opacity: 0.5;
            left: 5%;
            animation: floatAwan 6s ease-in-out infinite;
        }

        .awan-2 {
            width: 250px;
            top: 3%;
            opacity: 0.6;
            right: 5%;
            animation: floatAwan 8s ease-in-out infinite reverse;
        }

        .first-screen {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            /* Warna dasar laut tenang */
        }

        .bg-nautical {
            position: absolute;
            bottom: 0;
            width: 100%;
            z-index: 1;
            object-fit: cover;
            animation: waveFlow 6s ease-in-out infinite;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Frame & Photo Styling */
        .frame-container {
            position: relative;
            width: 300px;
            height: 300px;
            margin-bottom: 20px;
            animation: fadeInDown 1.5s ease-out;
        }

        .sailor-frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 5;
            pointer-events: none;
        }

        .couple-photo {
            position: absolute;
            top: 21%;
            left: 21%;
            width: 64%;
            height: 64%;
            border-radius: 50%;
            overflow: hidden;
            z-index: 4;
        }

        .couple-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-hat {
            position: absolute;
            top: -10px;
            right: 20px;
            width: 80px;
            z-index: 6;
            transform: rotate(15deg);
            animation: float 3s ease-in-out infinite;
        }

        /* Typography */
        .couple-names {
            font-family: 'Playfair Display', serif;
            /* Pastikan load font ini */
            font-size: 2.5rem;
            color: #1a4a72;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1.2s ease-out;
        }

        .guest-box {
            margin: 20px 0;
            color: #444;
            animation: fadeInUp 1.5s ease-out;
        }

        /* Tombol Buka */
        .btn-open {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: #1a4a72;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(26, 74, 114, 0.3);
            animation: fadeInUp 1.8s ease-out;
        }

        .btn-open:hover {
            transform: scale(1.05);
        }

        .wheel-icon {
            width: 25px;
            animation: spin 5s linear infinite;
        }

        .shadow-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            mix-blend-mode: multiply;
            opacity: 0.4;
            pointer-events: none;
        }

        /* Keyframes Animasi */
        @keyframes waveFlow {

            0%,
            100% {
                transform: translateY(0) scale(1.02);
            }

            50% {
                transform: translateY(-15px) scale(1);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(15deg);
            }

            50% {
                transform: translateY(-10px) rotate(20deg);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 480px) {
            .frame-container {
                width: 280px;
                height: 280px;
            }

            .couple-names {
                font-size: 2rem;
            }
        }

        /* Styling untuk pembungkus teks */
        .text-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            max-width: 500px;
            /* Membatasi lebar agar teks tidak terlalu lebar di layar desktop */
            z-index: 10;
        }

        .guest-box {
            margin: 15px 0 25px 0;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.7);
            /* Background transparan putih tipis */
            backdrop-filter: blur(5px);
            /* Efek blur kaca yang modern */
            border-radius: 15px;
            border: 1px dashed #1a4a72;
            /* Border putus-putus seperti garis peta */
            color: #1a4a72;
            animation: fadeInUp 1.5s ease-out;
        }

        .guest-name {
            font-size: 1rem;
            font-weight: bold;
            margin-top: 25px;
            text-transform: capitalize;
        }

        /* Memastikan button memiliki margin yang pas dari guest-box */
        .btn-open {
            margin-top: 10px;
        }

        /* opening section/ */

        .opening-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            /* Menjaga konten tetap di tengah secara vertikal */
            overflow: hidden;
            background-color: #fff;
        }

        .bg-opening-nautical {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: right;
            z-index: 1;
        }

        .opening-content-wrapper.align-left {
            position: relative;
            z-index: 5;
            width: 100%;
            /* Memberikan ruang di sisi kiri */
            display: flex;
            justify-content: flex-start;
            /* Memastikan konten mulai dari kiri */
        }

        .opening-inner {
            max-width: 420px;
            /* Diperkecil sedikit agar lebih aman dari ilustrasi kanan */
            text-align: left;
            /* Teks rata kiri */
        }

        /* Foto & Frame disesuaikan agar tidak margin auto (center) */
        .photo-container {
            position: relative;
            width: 300px;
            left: -45px;
            height: 300px;
            margin: 0 0 30px 0;
            /* Margin kanan dihilangkan agar align left */
        }

        .frame-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .photo-crop {
            position: absolute;
            top: 18%;
            left: 18%;
            width: 67%;
            height: 67%;
            border-radius: 50%;
            overflow: hidden;
            z-index: 2;
        }

        .photo-crop img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Typography */
        .tagline {
            font-size: 0.8rem;
            letter-spacing: 4px;
            color: #1a4a72;
            margin-bottom: 5px;
        }

        .couple-names-display {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: #1a4a72;
            margin: 0;
            line-height: 1.1;
        }

        .date-wrapper {
            margin: 20px 0;
            padding: 10px 0;
            border-top: 1px solid rgba(26, 74, 114, 0.15);
            border-bottom: 1px solid rgba(26, 74, 114, 0.15);
            display: inline-block;
            /* Agar garis border hanya sepanjang teks */
            min-width: 200px;
        }

        .day-name {
            display: block;
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
        }

        .main-date {
            display: block;
            font-size: 1.4rem;
            font-weight: bold;
            color: #1a4a72;
            letter-spacing: 1px;
        }

        .opening-quote {
            font-size: 0.85rem;
            font-style: italic;
            color: #555;
            line-height: 1.6;
            border-left: 2px solid #1a4a72;
            /* Aksen nautical */
            padding-left: 15px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .opening-content-wrapper.align-left {

                align-items: flex-start;
            }

            .opening-inner {
                max-width: 300px;
                /* Lebih kecil lagi untuk layar HP agar tidak kena mercusuar */
            }

            .couple-names-display {
                font-size: 2.2rem;
            }
        }

        /* REVEAL ANIMATION SYSTEM */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* couple section/ */
        .couple-section {
            padding: 100px 20px;
            background-color: #ffffff;
            text-align: center;
            overflow: hidden;
        }

        .couple-intro {
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.8;
            color: #555;
            animation: fadeInUp 1s ease;
        }

        .couple-flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            flex-direction: column;
        }

        /* Photo Styling */
        .profile-wrapper {
            position: relative;
            width: 230px;
            height: 230px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .photo-circle {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid #1a4a72;
            z-index: 2;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .photo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dekorasi Bergerak */
        .decor-wheel.behind {
            position: absolute;
            width: 420px;
            z-index: 1;
            opacity: 0.8;
            /* Animasi Berputar Lambat */
            animation: rotateSlow 15s linear infinite;
        }

        .decor-hat-float {
            position: absolute;
            top: 27px;
            right: 0;
            width: 90px;
            z-index: 3;
            /* Animasi Melayang */
            animation: floatHat 4s ease-in-out infinite;
        }

        /* Info Text */
        .profile-info .name {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1a4a72;
            margin-bottom: 5px;
        }

        .profile-info .parents {
            font-weight: bold;
            color: #333;
            margin-top: 5px;
        }

        .ig-link {
            display: inline-block;
            margin-top: 10px;
            color: #1a4a72;
            text-decoration: none;
            font-weight: 600;
        }

        .and-text {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #1a4a72;
            font-style: italic;
        }

        /* KEYFRAMES ANIMASI */
        @keyframes rotateSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes floatHat {

            0%,
            100% {
                transform: translateY(0) rotate(15deg);
            }

            50% {
                transform: translateY(-15px) rotate(25deg);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .couple-flex {
                flex-direction: column;
                gap: 40px;
            }

            .and-text {
                margin: 20px 0;
            }

            .photo-circle {
                width: 220px;
                height: 220px;
            }

            .decor-wheel.behind {
                width: 420px;
            }
        }

        /* sav-date/ */
        .save-the-date {
            position: relative;
            width: 100%;
            min-height: 70vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            /* background-color: #fff; */
            padding: 80px 0;
        }

        .bg-std-nautical {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: right;
            z-index: 1;
        }

        .std-content-wrapper.align-left {
            position: relative;
            z-index: 5;
            width: 100%;
            padding-left: 8%;
        }

        .std-inner {
            max-width: 450px;
            text-align: left;
        }

        /* Header Styling */
        .std-header {
            margin-bottom: 40px;
        }

        .decor-wheel-std {
            width: 60px;
            margin-bottom: 15px;
            animation: rotateSlow 20s linear infinite;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .std-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #1a4a72;
            margin: 0;
            text-align: left;
        }

        .std-line {
            width: 80px;
            float: left;
            height: 3px;
            background: #1a4a72;
            margin-top: 10px;
        }

        /* Countdown Styling */
        .countdown-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .countdown-item {
            background: white;
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(26, 74, 114, 0.1);
            border: 1px solid rgba(26, 74, 114, 0.1);
            border-bottom: 4px solid #1a4a72;
            /* Aksen biru di bawah */
        }

        .countdown-item .number {
            display: block;
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a4a72;
            line-height: 1.2;
        }

        .countdown-item .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
        }

        /* Footer & Button */
        .std-footer p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
        }

        .btn-calendar {
            padding: 12px 25px;
            background: #1a4a72;
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(26, 74, 114, 0.3);
        }

        .btn-calendar:hover {
            background: #143857;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .std-content-wrapper.align-left {
                padding: 0 20px;
                justify-content: center;
                display: flex;
            }

            .std-inner {
                max-width: 320px;
                /* text-align: center; */
            }

            .std-line {
                margin: 10px auto 0;
            }

            .countdown-container {
                gap: 10px;
            }

            .countdown-item .number {
                font-size: 1.4rem;
            }
        }

        @keyframes rotateSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* event/ */
        .event-section {
            padding: 100px 20px;
            text-align: center;
            background: url('../images/bg-sampul-baru.webp') no-repeat center center;
            background-size: cover;
        }

        .event-intro {
            max-width: 700px;
            margin: 0 auto 60px;
            color: #555;
            line-height: 1.8;
        }

        .event-cards-wrapper {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            /* Penting untuk responsivitas */
            max-width: 1100px;
            margin: 0 auto;
        }

        .event-card {
            display: flex;
            background: #fff;
            flex: 1;
            min-width: 320px;
            max-width: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(26, 74, 114, 0.1);
            border: 1px solid #eee;
        }

        /* Panel Samping (Warna Biru) */
        .card-side-panel {
            width: 70px;
            background-color: #1a4a72;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

        .vertical-title {
            transform: rotate(-90deg);
            color: #fff;
            white-space: nowrap;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            letter-spacing: 3px;
        }

        .floating-hat-icon {
            position: absolute;
            top: 15px;
            width: 100px;
            animation: bounce 3s ease-in-out infinite;
        }

        /* Konten Utama Kartu */
        .card-main-content {
            flex: 1;
            padding: 30px;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .date-display {
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .date-top {
            font-weight: 700;
            color: #1a4a72;
            letter-spacing: 3px;
            font-size: 0.9rem;
        }

        .date-middle {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .big-day {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a4a72;
            line-height: 1;
        }

        .month-year-stack {
            display: flex;
            flex-direction: column;
            font-size: 0.85rem;
            font-weight: 600;
            color: #777;
        }

        .event-time {
            font-weight: 700;
            color: #444;
            margin-bottom: 20px;
        }

        .info-label {
            color: #1a4a72;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .venue-name {
            font-weight: 800;
            margin-bottom: 5px;
            color: #333;
        }

        .venue-address {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        /* Tombol Lokasi */
        .btn-location {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #1a4a72;
            color: #fff !important;
            padding: 12px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            width: fit-content;
            transition: 0.3s;
        }

        .btn-location:hover {
            background-color: #143857;
            transform: scale(1.05);
        }

        .wheel-spin {
            width: 18px;
            animation: rotateWheel 8s linear infinite;
        }

        /* Animasi */
        @keyframes rotateWheel {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* Responsif Mobile */
        @media (max-width: 850px) {
            .event-cards-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .event-card {
                width: 100%;
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* story/ */
        .story-section {
            padding: 100px 20px;
            background-color: #f4f7f9;
            overflow: hidden;
        }

        .story-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .story-wheel {
            width: 50px;
            margin-bottom: 15px;
            animation: rotateSlow 15s linear infinite;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #1a4a72;
        }

        /* Timeline Core */
        .story-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Garis Tengah */
        .story-timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background: #1a4a72;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        .story-item {
            display: flex;
            margin-bottom: 50px;
            width: 100%;
        }

        .story-empty,
        .story-content,
        .story-image-box {
            width: 50%;
            padding: 0 40px;
        }

        /* Bulatan Timeline */
        .story-dot {
            width: 16px;
            height: 16px;
            background: #1a4a72;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            border: 4px solid #fff;
        }

        /* Content Box Styling */
        .story-content {
            text-align: right;
        }

        .story-item.reverse .story-content {
            text-align: left;
        }

        .story-date {
            display: block;
            font-weight: 700;
            color: #1a4a72;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .story-momen {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }

        .story-content p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        /* Image Box */
        .story-image-box {
            position: relative;
        }

        .story-img {
            width: 100%;
            border-radius: 15px;
            border: 5px solid #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .hat-on-photo {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 60px;
            animation: float 4s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .story-timeline::after {
                left: 20px;
            }

            .story-dot {
                left: 20px;
            }

            .story-item,
            .story-item.reverse {
                flex-direction: column;
            }

            .story-empty {
                display: none;
            }

            .story-content,
            .story-image-box {
                width: 100%;
                padding-left: 50px;
                text-align: left !important;
                margin-bottom: 30px;
            }
        }



        @keyframes rotateSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(10deg);
            }

            50% {
                transform: translateY(-10px) rotate(-10deg);
            }
        }

        /* gallery/ */
        .gallery-section {
            padding: 50px 20px;
            background-color: #fff;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .gallery-wheel {
            width: 110px;
            margin-bottom: 15px;
            animation: rotateSlow 20s linear infinite;
        }

        /* Gallery Grid Layout */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-auto-rows: 250px;
            grid-auto-flow: dense;
            /* Mengisi ruang kosong otomatis */
            gap: 15px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        /* Membuat beberapa foto lebih besar (span) */
        .gallery-item.span-2 {
            grid-column: span 2;
        }

        .gallery-img-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .gallery-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Hover Effects */
        .gallery-item:hover .gallery-img-wrapper img {
            transform: scale(1.1);
        }

        .img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 74, 114, 0.4);
            /* Biru nautical transparan */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
            color: white;
            font-size: 1.5rem;
        }

        .gallery-item:hover .img-overlay {
            opacity: 1;
        }

        /* Dekorasi Tambahan */
        .gallery-decor-hat {
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 60px;
            z-index: 10;
            transform: rotate(-15deg);
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 180px;
            }

            .gallery-item.span-2 {
                grid-column: span 2;
            }
        }

        @media (max-width: 480px) {
            .gallery-header .section-title {
                font-size: 2rem;
            }
        }

        /* Video Section Styles */
        .video-container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto 40px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* Ratio 16:9 */
            height: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* gift section/ */
        .gift-section {
            padding: 30px 20px;
            background-color: #f4f7f9;
            position: relative;
            overflow: hidden;
        }

        .gift-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .gift-wheel {
            width: 110px;
            margin-bottom: 15px;
            animation: rotateSlow 20s linear infinite;
        }

        .gift-wrapper {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gift-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            flex: 1;
            min-width: 300px;
            box-shadow: 0 15px 35px rgba(26, 74, 114, 0.08);
            border-bottom: 5px solid #1a4a72;
        }

        .gift-icon-box {
            font-size: 3rem;
            color: #1a4a72;
            margin-bottom: 20px;
        }

        .btn-toggle-gift {
            background: #1a4a72;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            transition: 0.3s;
        }

        .btn-toggle-gift:hover {
            background: #2a5a82;
            transform: scale(1.05);
        }

        /* Detail Styling */
        .gift-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.5s;

        }

        .gift-details.active {
            max-height: 500px;
            opacity: 1;
            margin-top: 25px;
        }

        .account-box,
        .address-box {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 15px;
            border: 1px dashed #1a4a72;
        }

        .bank-logo {
            height: 30px;
            margin-bottom: 10px;
        }

        .account-number {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1a4a72;
            margin: 5px 0;
        }

        .btn-copy {
            background: #eee;
            border: none;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            margin-top: 10px;
        }

        .gift-decor-hat {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 80px;
            opacity: 0.5;
            transform: rotate(15deg);
        }

        /* Mobile */
        @media (max-width: 768px) {
            .gift-card {
                width: 100%;
            }
        }

        /* rsvp */
        .rsvp-section {
            padding: 40px 20px;
            background-color: #ffffff;
        }

        .rsvp-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .rsvp-wheel {
            width: 110px;
            margin-bottom: 15px;
            animation: rotateSlow 20s linear infinite;
        }

        .rsvp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Card Styling */
        .rsvp-form-card,
        .rsvp-messages-card {
            background: #f4f7f9;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(26, 74, 114, 0.05);
            border: 1px solid rgba(26, 74, 114, 0.1);
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #1a4a72;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #ccc;
            font-family: inherit;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #1a4a72;
            outline: none;
            box-shadow: 0 0 5px rgba(26, 74, 114, 0.2);
        }

        .btn-send-rsvp {
            width: 100%;
            padding: 15px;
            background: #1a4a72;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .btn-send-rsvp:hover {
            background: #143857;
        }

        /* Messages List */
        .messages-container {
            max-height: 450px;
            overflow-y: auto;
            padding-right: 10px;
        }

        /* Custom Scrollbar */
        .messages-container::-webkit-scrollbar {
            width: 5px;
        }

        .messages-container::-webkit-scrollbar-thumb {
            background: #1a4a72;
            border-radius: 10px;
        }

        .message-item {
            background: white;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            text-align: left;
            border-left: 4px solid #1a4a72;
        }

        .message-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            position: relative;
        }

        .mini-hat {
            width: 25px;
            transform: rotate(-10deg);
        }

        .badge-present {
            background: #d4edda;
            color: #155724;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 5px;
        }

        .badge-absent {
            background: #f8d7da;
            color: #721c24;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 5px;
        }

        .message-item p {
            font-size: 0.85rem;
            color: #555;
            margin: 0;
            line-height: 1.4;
        }

        .message-time {
            font-size: 0.7rem;
            color: #999;
            display: block;
            margin-top: 8px;
        }

        /* Responsive */
        @media (max-width: 850px) {
            .rsvp-grid {
                grid-template-columns: 1fr;
            }

            .rsvp-form-card,
            .rsvp-messages-card {
                padding: 25px;
            }
        }

        /* closing/ */
        .closing-section {
            padding: 100px 20px 0;
            /* Padding bawah 0 karena ada footer */
            background-color: #f4f7f9;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Foto Penutup Styling */
        .closing-photo-wrap {
            position: relative;
            width: 280px;
            height: 380px;
            margin: 0 auto 40px;
        }

        .closing-photo {
            width: 100%;
            height: 100%;
            border: 10px solid white;
            border-radius: 150px 150px;
            /* Bentuk kubah mercusuar */
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(26, 74, 114, 0.15);
        }

        .closing-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Dekorasi Bergerak */
        .closing-hat {
            right: -50px;
            position: absolute;
            top: -20px;
            width: 125px;
            transform: rotate(-20deg);
            animation: floatHat 4s ease-in-out infinite;
        }

        .closing-wheel {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 112px;
            opacity: 0.8;
            animation: rotateSlow 20s linear infinite;
        }

        /* Typography */
        .closing-text {
            max-width: 600px;
            margin: 0 auto 30px;
            color: #555;
            line-height: 1.8;
        }

        .thanks-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #1a4a72;
            margin-top: 20px;
            font-style: italic;
        }

        .couple-names-final {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #1a4a72;
            margin-bottom: 10px;
        }

        .hashtag {
            display: inline-block;
            padding: 8px 20px;
            background: #1a4a72;
            color: white;
            border-radius: 50px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 80px;
        }

        /* Footer Amorra.id */
        .footer {
            color: #1a4a72;
            padding: 20px 0;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .footer i {
            color: #ff4d4d;
            margin: 0 5px;
        }

        /* Keyframes */
        @keyframes floatHat {

            0%,
            100% {
                transform: translateY(0) rotate(-20deg);
            }

            50% {
                transform: translateY(-15px) rotate(-10deg);
            }
        }

        /* Responsif */
        @media (max-width: 480px) {
            .closing-photo-wrap {
                width: 220px;
                height: 300px;
            }

            .couple-names-final {
                font-size: 2.2rem;
            }
        }