/* ============================================
   RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #fdfaf5; /* Warna Cream Lembut */
    overflow-x: hidden;
    color: #4a4a4a; /* Warna teks abu gelap agar terbaca jelas */
}

body.locked {
    overflow: hidden;
    height: 100vh;
}

/* ============================================
   LAYOUT & CONTAINERS
============================================ */
.section,
.footer {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.section:not(.cover):not(.save-date) {
    background: #f3eadb; /* Warna Cream */
}
/* ============================================
   COVER SECTION - VERSI WHITE CLEAN
============================================ */

.cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ubah warna teks utama ke abu-abu gelap atau hijau sage agar kontras */
    color: #4a4a4a; 
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

/* Overlay Putih Halus */
.cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Menggunakan gradasi putih transparan agar foto tetap terlihat cerah */
    background: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.4) 100%
    );
    z-index: 1;
}

/* Menghilangkan vignette hitam (radial-gradient) */
.cover::after {
    display: none; 
}

/* Content di atas background */
.cover > * {
    position: relative;
    z-index: 2;
}

.cover h1 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000000; /* Menggunakan warna hijau sage tema Anda */
}

.couple-names {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 20px 0;
    line-height: 1.2;
    color: #4a4a4a;
    /* Menghilangkan bayangan hitam yang pekat */
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8); 
}

.address-box {
    background: transparent; /* Hilangkan background kotak */
    border: none; /* Hilangkan garis */
    box-shadow: none; /* Hilangkan bayangan */
    backdrop-filter: none;
    padding: 0;
    margin-bottom: 5px;
}

.address-box p {
    color: #ffffff; /* Pastikan teks tetap putih */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.guest-name {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7); /* Kotak putih transparan */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 25px;
    border-radius: 10px;
    color: #7d9063; /* Warna hijau sage untuk nama */
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
/* ============================================
   BUTTONS
============================================ */
.btn-invitation {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    
    /* TAMBAHKAN INI */
    margin-top: 30px; /* Sesuaikan angka ini (misal 30px atau 40px) sampai jaraknya pas */
    display: inline-block; /* Memastikan margin bekerja dengan benar */
}

.btn-invitation:hover {
    background: rgba(255, 255, 255, 0.2); /* Efek saat disentuh */
    transform: translateY(-2px);
}

.instagram-btn,
.map-btn,
.copy-btn,
.btn-submit {
    background: linear-gradient(135deg, #7d9063 0%, #6a7a54 100%);
    color: white;
    font-size: 15px;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    padding: 14px 35px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(125, 144, 99, 0.3);
    transition: all 0.3s ease;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.map-btn {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 60px;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.copy-btn,
.btn-submit {
    padding: 15px 40px;
    margin-top: 25px;
}

.btn-submit {
    padding: 16px 55px;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(125, 144, 99, 0.3);
}

.instagram-btn:hover,
.map-btn:hover,
.copy-btn:hover,
.btn-submit:hover {
    background-color: #6a7a54;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(125, 144, 99, 0.4);
}

/* ============================================
   SAVE THE DATE SECTION
============================================ */
/* Update CSS untuk Konsep Nuansa Putih */
.save-date {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 60px;
    
    /* Perubahan warna ke #f3eadb */
    background: linear-gradient(to bottom, 
                rgba(243, 234, 221, 0) 0%, 
                rgba(243, 234, 221, 0.4) 50%, 
                rgba(243, 234, 221, 0.9) 85%, 
                #f3eadb 100%), 
                url('img/ANM00008.JPEG') center/cover;
    background-attachment: scroll;
}

.save-date h2 {
    font-size: 32px !important;
    font-weight: 400;
    font-style: italic;
    /* Gunakan warna gelap agar kontras dengan latar putih */
    color: #7d9063; 
    margin-bottom: 25px;
    /* Shadow tipis agar teks lebih tegas */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Putih semi-transparan dengan blur (Glassmorphism) */
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 15px 5px;
    flex: 1;
    max-width: 85px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px; /* Kurangi jarak antar kotak */
    margin-top: 20px;
    width: 100%;
    padding: 0 15px; /* Tambah padding kanan kiri agar tidak mepet layar */
    flex-wrap: nowrap; /* PAKSA jadi satu baris, jangan pecah ke bawah */
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(125, 144, 99, 0.25);
}

.countdown-number {
    font-size: 24px; /* Perkecil ukuran angka agar muat di baris yang sama */
    font-weight: 600;
    color: #7d9063;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 9px; /* Perkecil ukuran teks label */
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRAYER SECTION
============================================ */
.prayer {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    text-align: center;
}

.om-swastyastu {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; /* Tambahkan ini agar miring elegan */
    color: #7d9063;
    margin: 50px 0;
}

.prayer-text {
    max-width: 650px;
    font-size: 20px;
    font-weight: 300;
    line-height: 2;
    color: #555;
    margin: 40px 0;
}

.citation {
    font-size: 16px;
    font-style: italic;
    color: #999;
    margin-top: 25px;
}

/* ============================================
   COUPLE SECTION – CLASSIC EDITORIAL
============================================ */
/* SECTION */
.couple-section {
    background: #f6efdf;
    padding: 100px 20px;
    text-align: center;
}

.couple-container {
    max-width: 520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

/* PERSON */
.person {
    flex: 1;
}

/* ROLE */
.person-role {
    font-family: serif;
    font-style: italic;
    color: #7d9063;
    margin-bottom: 30px;
}

/* OVAL PHOTO */
.oval-photo-wrapper {
    position: relative;
    width: 260px;
    height: 360px;
    margin: 0 auto 35px;
}

.oval-photo-wrapper::before {
    content: "";
    position: absolute;
    inset: -16px;
    border: 1.5px solid #7d9063;
    border-radius: 50% / 65%;
}

/* PHOTO */
.oval-photo {
    width: 100%;
    height: 100%;
    border-radius: 50% / 65%;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.oval-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.person-name {
    font-size: 22px;
    color: #7d9063;
    margin-bottom: 15px;
}

/* SOCIAL BUTTON */
.social-pill {
    background: #7d9063;
    color: white;
    border: none;
    padding: 10px 26px;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 25px;
    font-size: 14px;
}

/* PARENTS */
.parents-info {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* DIVIDER */
.divider-simple {
    font-size: 70px;
    color: #7d9063;
    font-family: serif;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .couple-container {
        flex-direction: column;
        gap: 80px;
    }

    .divider-simple {
        display: none;
    }
}



/* ============================================
   STORY SECTIONS – FINAL FIX VERSION
============================================ */
.story {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    padding: 80px 20px !important;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* ============================================
   IMAGE WRAPPER (FRAME ADA DI SINI)
============================================ */

.story-image-wrapper {
    position: relative;
    margin: 0 auto 60px;
    width: 78vw;               /* RESPONSIVE */
    max-width: 300px;          /* BATAS DESKTOP */
}
/* FRAME DALAM */
.story-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1.5px solid #7d9063;
    border-radius: 22px;
    z-index: 1;
}
/* FRAME LUAR (SOFT) */
.story-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -24px;
    border: 1px solid rgba(125, 144, 99, 0.45);
    border-radius: 28px;
    z-index: 0;
}
/* ============================================
   FOTO
============================================ */
.story-image {
    width: 300px;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #f5f3f0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   ORNAMEN GARIS ATAS & BAWAH
============================================ */
.story-image-wrapper .ornament-line {
    position: absolute;
    left: 50%;
    width: 80px;
    height: 1.5px;
    background-color: #7d9063;
    transform: translateX(-50%);
    z-index: 3;
}

.story-image-wrapper .ornament-line.top {
    top: -40px;
}

.story-image-wrapper .ornament-line.bottom {
    bottom: -40px;
}

/* ============================================
   STORY TEXT
============================================ */
.story-content {
    max-width: 620px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 300;
    line-height: 2;
    color: #555;
    text-align: center;
    padding: 0 20px;
}

/* ============================================
   JOURNEY CONTINUES SECTION
============================================ */
.journey-section {
    background: linear-gradient(135deg, #e8e4df 0%, #f5f3f0 100%);
    padding: 80px 20px !important;
    min-height: auto !important;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* ============================================
   EVENT DETAILS SECTION
============================================ */
.event-details {
    background: #f5f3f0;
    text-align: center;
    padding: 80px 20px 0 20px !important;
    min-height: auto !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px !important;
    font-weight: 300;
    font-style: italic;
    color: #7d9063 !important;
    margin-bottom: 20px;
}

.event-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.event-calendar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    color: #7d9063;
}

.calendar-side {
    flex: 1;
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
}

.calendar-center {
    flex: 1;
    padding: 0 25px;
    border-left: 1.5px solid #7d9063;
    border-right: 1.5px solid #7d9063;
    text-align: center;
}

.event-footer-photo {
    position: relative;
    width: 100%;
    margin-top: 60px;
    line-height: 0;
    z-index: 1;
}

.event-footer-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    /* Mengubah semua warna menjadi nuansa #f3eadb (RGB: 243, 234, 221) */
    background: linear-gradient(to bottom, 
        #f3eadb 0%, 
        rgba(243, 234, 221, 0.95) 15%,
        rgba(243, 234, 221, 0.7) 35%,
        rgba(243, 234, 221, 0.4) 55%,
        rgba(243, 234, 221, 0.15) 75%,
        transparent 100%);
    z-index: 2;
}

.event-footer-photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95);
    position: relative;
    z-index: 1;
}

/* ============================================
   GALLERY SECTION – FIX 2 KOLOM ALL DEVICE
============================================ */
.gallery {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    padding: 60px 0;
}

.gallery h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 38px;
    font-weight: 400;
    color: #7d9063;
    text-align: center;
    margin-bottom: 35px;
}

/* GRID – SELALU 2 KOLOM */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 🔒 KUNCI 2 KOLOM */
    gap: 6px;
    padding: 6px;
    width: 100%;
}

/* ITEM FOTO */
.gallery-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* ❌ TIDAK ADA RESPONSIVE YANG MENGUBAH KOLOM */

/* ============================================
   RSVP SECTION
============================================ */
.rsvp {
    background: linear-gradient(135deg, #e8e4df 0%, #f5f3f0 100%);
    text-align: center;
}

.rsvp h2 {
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: #7d9063;
    margin-bottom: 35px;
}

.rsvp-description {
    font-size: 19px;
    color: #666;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 50px;
}

.form-container {
    background: white;
    max-width: 450px; /* Dipersempit agar lebih proporsional */
    margin: 0 auto;
    padding: 30px; /* Padding dikurangi sedikit agar tidak terlalu bongsor */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
/* Tambahkan ini di bawah .form-container */
.rsvp-img-wrapper {
    width: 100%;
    height: 250px; /* Tinggi foto */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.rsvp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar foto tidak gepeng */
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #7d9063;
    box-shadow: 0 0 0 3px rgba(125, 144, 99, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #7d9063;
    background: #f9f9f9;
}

.radio-option input[type="radio"] {
    width: auto;
    cursor: pointer;
}

/* ============================================
   WISHES SECTION
============================================ */
.wishes {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    text-align: center;
}

.wishes h2 {
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: #7d9063;
    margin-bottom: 35px;
}

.wishes-container {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wish-count {
    font-size: 26px;
    font-weight: 500;
    color: #7d9063;
    margin-bottom: 30px;
}

.wish-form {
    margin-bottom: 50px;
}

.wish-form input,
.wish-form textarea {
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wish-form input:focus,
.wish-form textarea:focus {
    outline: none;
    border-color: #7d9063;
    box-shadow: 0 0 0 3px rgba(125, 144, 99, 0.1);
}

.wish-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wish-item {
    text-align: left;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.wish-item:hover {
    background: #f9f9f9;
}

.wish-author {
    font-size: 18px;
    font-weight: 600;
    color: #7d9063;
    margin-bottom: 8px;
}

.wish-time {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}

.wish-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   GIFT SECTION
============================================ */
.gift {
    background: linear-gradient(135deg, #e8e4df 0%, #f5f3f0 100%);
    text-align: center;
}

.gift h2 {
    font-size: 52px;
    font-weight: 300;
    color: #7d9063;
    margin-bottom: 50px;
}

.bank-info {
    background: white;
    max-width: 550px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bank-logo {
    font-size: 52px;
    font-weight: 600;
    color: #003d79;
    margin-bottom: 25px;
}

.account-number {
    font-size: 36px;
    font-weight: 500;
    color: #7d9063;
    letter-spacing: 3px;
    margin: 25px 0;
}

.account-name {
    font-size: 19px;
    color: #666;
    line-height: 1.8;
    margin: 15px 0;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4df 100%);
    text-align: center;
    padding: 80px 20px;
}

.footer-thanks {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-names {
    font-size: 42px;
    font-weight: 400;
    color: #7d9063;
    margin: 30px 0;
}

.footer-credit {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    margin-top: 60px;
}

/* ============================================
   MUSIC CONTROL
============================================ */
.music-control {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7d9063 0%, #6a7a54 100%);
    color: white;
    font-size: 24px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(125, 144, 99, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(125, 144, 99, 0.6);
}

.music-control.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(125, 144, 99, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 32px rgba(125, 144, 99, 0.6);
    }
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (min-width: 769px) {
    .music-control {
        right: calc((100vw - 480px) / 2 + 35px);
    }
}

@media (max-width: 768px) {
    .couple-names {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .save-date h2 {
        font-size: 48px !important;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 20px;
    }
    
    .countdown-number {
        font-size: 40px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container,
    .wishes-container,
    .bank-info {
        padding: 30px 20px;
    }
    
   .photo-frame {
    width: 100%;
    height: 100%;
    border-radius: 50% / 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    
    /* Story sections responsive */
   .story-image {
    width: 100%;
    aspect-ratio: 3 / 4.4;     /* GANTI height tetap */
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #f5f3f0;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}
    
    .circle-decoration {
        width: 360px;
        height: 360px;
    }
    
    /* Divider responsive */
    .divider-ampersand {
        font-size: 80px;
    }
    
    .divider-content::before {
        width: 130px;
        height: 130px;
    }
    
    .divider-content::after {
        width: 180px;
        height: 180px;
    }
    
    .divider-line-left,
    .divider-line-right {
        width: 60px;
    }
    
    .divider-line-left {
        left: 20px;
    }
    
    .divider-line-right {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 38px;
    }
    
    .save-date h2 {
        font-size: 38px !important;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .btn-invitation {
        padding: 15px 45px;
        font-size: 14px;
    }
    
    .story-image {
        width: 260px;
        height: 380px;
    }
    
    .circle-decoration {
        width: 320px;
        height: 320px;
    }
    
    .divider-ampersand {
        font-size: 60px;
    }
    
    .divider-content::before {
        width: 100px;
        height: 100px;
    }
    
    .divider-content::after {
        width: 140px;
        height: 140px;
    }
    
    .divider-line-left,
    .divider-line-right {
        width: 40px;
    }
    
    .divider-line-left {
        left: 15px;
    }
    
    .divider-line-right {
        right: 15px;
    }
}
