/* --- BAGIAN UTAMA: TEMA NAVY --- */
:root {
    --bg-body: #051626; /* Latar belakang luar (Deep Dark Navy) */
    --bg-card: #f5f7fa; /* Latar belakang kartu (Putih Kebiruan/Alice Blue) */
    --primary-red: #1b3c73; /* Warna Utama (Navy Blue menggantikan Merah) */
    --text-gold: #c4a484; /* Aksen Gold/Krem (Cocok dengan Navy) */
    --text-dark: #1a2c4e; /* Teks Gelap (Dark Blue-Grey) */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-card);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow-x: hidden;
    padding-bottom: 90px;
}

/* --- COVER --- */
#cover-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #eef2f5;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1), opacity 1s ease;
}

#cover-overlay.open {
    transform: translate(-50%, -100%);
    opacity: 0;
    pointer-events: none;
}

.cover-bg-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    animation: kenBurns 20s infinite alternate;
    /* Filter di-reset ke normal atau sedikit kebiruan */
    filter: sepia(20%) saturate(80%);
    z-index: 0;
}

.cover-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.cover-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary-red);
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}
.cover-frame::after,
.cover-frame::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--primary-red);
    border-style: solid;
    transition: all 0.5s ease;
}
.cover-frame::before {
    top: -1px;
    left: -1px;
    border-width: 3px 0 0 3px;
}
.cover-frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 3px 3px 0;
}

.cover-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 30px;
    color: var(--primary-red);
}

.top-decoration {
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.cover-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Playfair Display", serif;
    margin-bottom: 50px;
    line-height: 1;
}

.name-line {
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.ampersand {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    margin: 5px 0;
    color: var(--text-gold);
    font-family: "Playfair Display", serif;
}

.guest-section {
    margin-bottom: 40px;
}

.guest-label {
    font-size: 0.75rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.guest-box {
    border-top: 1px solid rgba(27, 60, 115, 0.3); /* Navy transparent */
    border-bottom: 1px solid rgba(27, 60, 115, 0.3);
    padding: 15px 0;
    margin: 0 auto 20px auto;
    width: 80%;
}

.guest-name {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.invite-msg {
    font-size: 0.65rem;
    max-width: 90%;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
    font-style: italic;
}

.btn-open-elegant {
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(27, 60, 115, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulseBtn 2s infinite;
}

.btn-open-elegant:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(27, 60, 115, 0.5);
    background-color: #132a50; /* Darker Navy */
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 60, 115, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(27, 60, 115, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 60, 115, 0);
    }
}

/* --- MUSIC & NAV --- */
.music-btn {
    position: fixed;
    bottom: 70px;
    margin-left: 5px;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--primary-red);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
}

.music-btn.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.music-spin {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.navbar-floating {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 5px;
    border: 1px solid rgba(27, 60, 115, 0.2);
    opacity: 0;
    transition: opacity 1s, bottom 0.3s;
}

.navbar-floating.show {
    opacity: 1;
}

.nav-item {
    text-align: center;
    text-decoration: none;
    color: #999;
    font-size: 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 400;
}

.nav-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-red);
    background-color: rgba(27, 60, 115, 0.08);
    font-weight: 700;
}

.nav-item.active i {
    transform: translateY(-2px) scale(1.1);
}

/* --- CONTENT STYLES --- */
.hero-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    animation: kenBurns 20s infinite alternate;
    /* Hapus filter grayscale dari monokrom, ganti jadi normal */
    filter: none;
}
.red-circle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -120px;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}
.red-circle {
    background-color: var(--primary-red);
    color: #fff;
    width: 100%;
    height: 470px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.red-circle .small-title {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 300;
}
.red-circle .couple-name {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin-bottom: 5px;
    line-height: 1.2;
}
.red-circle .wedding-date {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
    margin-top: 5px;
}
.red-circle .verse {
    font-size: 0.6rem;
    line-height: 1.4;
    max-width: 80%;
    opacity: 0.9;
    margin-bottom: 10px;
}
.star-icon {
    font-size: 1.2rem;
}
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 20px;
    color: var(--primary-red);
}
.divider-line {
    height: 1px;
    background-color: var(--primary-red);
    flex-grow: 1;
}
.divider-icon {
    padding: 0 10px;
    font-size: 1.2rem;
}
.intro-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dark);
    padding: 0 30px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 40px;
}
.couple-section {
    text-align: center;
    padding-bottom: 50px;
}
.profile-img-wrapper {
    position: relative;
    width: 240px;
    height: 340px;
    margin: 30px auto;
    animation: zoomIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-frame-back {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-red);
    border-radius: 150px;
    z-index: 1;
    opacity: 0.6;
}

.photo-frame-main {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 150px;
    overflow: hidden;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photo-frame-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: none; /* Kembalikan warna asli */
}

.deco-star {
    position: absolute;
    color: var(--primary-red);
    font-size: 2rem;
    z-index: 3;
}
.start-top-right {
    top: 40px;
    right: -20px;
    animation: spinSlow 10s infinite linear;
}
.start-bottom-left {
    bottom: 40px;
    left: -20px;
    font-size: 1.5rem;
    animation: spinSlow 8s infinite linear reverse;
}
.person-nickname {
    font-family: "Playfair Display", serif;
    color: var(--primary-red);
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 5px;
}
.person-name {
    font-family: "Playfair Display", serif;
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.person-info {
    font-size: 0.75rem;
    color: var(--primary-red);
    margin-bottom: 0;
    line-height: 1.4;
}
.person-parent {
    font-size: 0.7rem;
    color: #555;
    margin-top: 5px;
}
.big-ampersand {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ampersand-deco {
    font-size: 1rem;
    color: var(--primary-red);
}
.bottom-deco {
    height: 5px;
    background-color: var(--primary-red);
    width: 100%;
    margin-top: 20px;
}
.countdown-container {
    background-color: var(--primary-red);
    padding: 50px 10px;
    text-align: center;
    border-top: 10px solid #dbe2e8; /* Light Blue-Grey */
    border-bottom: 10px solid #dbe2e8;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.countdown-box {
    background-color: #f7f3e8; /* Sedikit warm agar tidak terlalu dingin */
    color: var(--primary-red);
    width: 200px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.countdown-number {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: "Lato", sans-serif;
}
.countdown-deco {
    color: #f7f3e8;
    font-size: 1.5rem;
}
.event-wrapper {
    padding: 0 20px 50px 20px;
}
.event-card {
    background-color: var(--primary-red);
    color: #fff;
    border-radius: 25px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(27, 60, 115, 0.3);
    margin-bottom: 0;
    position: relative;
}
.event-title {
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.event-date-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.date-divider {
    height: 20px;
    width: 1px;
    background-color: #fff;
}
.event-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.8;
}
.event-value {
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}
.btn-map {
    background-color: #f7f3e8;
    color: var(--primary-red);
    border: none;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
    font-family: "Playfair Display", serif;
}
.btn-map:hover {
    transform: scale(1.05);
    background-color: #fff;
    color: var(--primary-red);
}
.card-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: var(--primary-red);
}
.separator-line {
    height: 1px;
    background-color: #aab5c2;
    width: 100px;
}
.separator-icon {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--primary-red);
}
.story-section {
    padding: 40px 20px;
    position: relative;
    background-color: var(--bg-card);
}
.timeline-line {
    position: absolute;
    top: 100px;
    bottom: 50px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background-image: linear-gradient(
        to bottom,
        var(--primary-red) 50%,
        transparent 50%
    );
    background-size: 2px 15px;
    z-index: 1;
}
.story-header-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
.story-oval {
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    width: 100%;
    max-width: 350px;
    padding: 20px 10px;
    text-align: center;
    background-color: var(--bg-card);
    position: relative;
}
.story-oval h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.story-oval p {
    font-family: "Lato", sans-serif;
    color: var(--primary-red);
    font-size: 0.65rem;
    margin: 0;
    opacity: 0.8;
}
.oval-star {
    position: absolute;
    color: var(--primary-red);
    font-size: 1rem;
}
.star-left {
    top: 20px;
    left: 15px;
    transform: rotate(-15deg);
}
.star-right {
    bottom: 20px;
    right: 15px;
    transform: rotate(15deg);
}
.story-card-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    padding: 0 10px;
}
.story-card {
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--bg-card);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.card-header {
    background-color: var(--primary-red);
    color: #fff;
    padding: 15px 20px;
}
.card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-date {
    font-family: "Lato", sans-serif;
    font-size: 0.7rem;
    opacity: 0.9;
}
.card-body-text {
    padding: 20px;
    color: var(--primary-red);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: left;
    font-family: "Lato", sans-serif;
}
.gallery-section {
    padding: 20px 20px 60px 20px;
    background-color: var(--bg-card);
    position: relative;
}
.top-deco-line {
    display: flex;
    align-items: center;
    color: var(--primary-red);
    margin-bottom: 20px;
}
.line-fill {
    flex-grow: 1;
    height: 2px;
    background-color: var(--primary-red);
}
.star-right-deco {
    font-size: 1.5rem;
    margin-left: -10px;
    background-color: var(--bg-card);
    padding-left: 5px;
    line-height: 0;
}
.gallery-title {
    font-family: "Playfair Display", serif;
    text-align: center;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.gallery-subtitle {
  font-family: "Lato", sans-serif;
  text-align: center;
  color: var(--primary-red);
  font-weight: 300;
  font-size: 0.65rem;
  opacity: 0.8;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.gallery-frame {
    border: 2px solid var(--primary-red);
    padding: 10px;
    position: relative;
    margin-top: 10px;
}
.frame-star-tl {
    position: absolute;
    top: -18px;
    left: -12px;
    color: var(--primary-red);
    font-size: 2rem;
    background-color: var(--bg-card);
    line-height: 0.5;
    padding: 0 5px;
    z-index: 2;
}
.frame-dot-bc {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-red);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--bg-card);
}

/* --- SWIPER GALLERY CUSTOM CSS (UPDATED: 0 GAP) --- */
.gallery-slider {
    width: 100%;
    height: 600px;
    padding-bottom: 40px; /* Space untuk pagination */
}

.swiper-slide {
    height: 50% !important;
    border-radius: 0;
    overflow: hidden;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none; /* Kembalikan ke warna asli */
    transition: transform 0.3s ease;
}

.gallery-link:hover .gallery-img {
    transform: scale(1.05);
}

/* Warna Pagination */
.swiper-pagination-bullet {
    background: #b0c4de; /* Light Steel Blue */
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
    opacity: 1;
}

.rsvp-section {
    padding: 20px 20px 60px 20px;
    background-color: var(--bg-card);
}
.rsvp-card {
    background-color: var(--primary-red);
    border-radius: 50px;
    padding: 40px 30px;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 20px rgba(27, 60, 115, 0.2);
}
.rsvp-star {
    position: absolute;
    font-size: 1.5rem;
    color: #fff;
}
.rsvp-star-tl {
    top: 25px;
    left: 25px;
}
.rsvp-star-br {
    bottom: 25px;
    right: 25px;
}
.rsvp-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}
.rsvp-subtitle {
    font-family: "Lato", sans-serif;
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.form-label-custom {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.form-control-custom,
.form-select-custom {
    background-color: #f0f4f8; /* Light blue tint */
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.85rem;
    color: #333;
    font-family: "Lato", sans-serif;
    width: 100%;
    margin-bottom: 20px;
}
.form-control-custom:focus,
.form-select-custom:focus {
    background-color: #fff;
    box-shadow: none;
    outline: 2px solid #b0c4de;
}
.form-control-custom::placeholder {
    color: #999;
    font-style: italic;
}
.btn-rsvp {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 40px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
}
.btn-rsvp:hover {
    background-color: #fff;
    color: var(--primary-red);
}
.btn-qr {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 8px 40px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: inline-block;
}
.btn-qr:hover {
  background-color: #fff;
  color: var(--primary-red);
}
.wish-section {
    padding: 0 20px 60px 20px;
    background-color: var(--bg-card);
}
.wish-card {
    background-color: var(--primary-red);
    border-radius: 50px;
    padding: 40px 25px;
    color: #fff;
    position: relative;
}
.wish-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.wish-subtitle {
    font-family: "Lato", sans-serif;
    font-size: 0.7rem;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}
.wish-form-wrapper {
    margin-bottom: 30px;
}
.wish-list-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}
.wish-list-container::-webkit-scrollbar {
    width: 4px;
}
.wish-list-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
.wish-item {
    background-color: #f7f3e8;
    border-radius: 8px;
    padding: 15px;
    color: var(--text-dark);
    text-align: left;
    position: relative;
}
.wisher-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.wisher-text {
    font-family: "Lato", sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 5px;
}
.wish-date {
    font-size: 0.6rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}
.wish-star {
    position: absolute;
    font-size: 1.5rem;
    color: #fff;
}
.ws-tl {
    top: 30px;
    left: 25px;
}
.ws-mid-r {
    top: 53%;
    right: 25px;
}
.btn-wish {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 40px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
}
.btn-wish:hover {
    background-color: #fff;
    color: var(--primary-red);
}
.gift-section {
    padding: 0 20px 60px 20px;
    background-color: var(--bg-card);
}
.gift-card-wrapper {
    background-color: var(--primary-red);
    border-radius: 50px;
    padding: 40px 25px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(27, 60, 115, 0.2);
}
.gift-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.gift-desc {
    font-family: "Lato", sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
    padding: 0 10px;
}
.atm-card {
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 50%, #e0e0e0 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.atm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.bank-logo {
    height: 25px;
    width: auto;
    /* Hapus filter grayscale bank */
    filter: none;
}
.atm-number {
    font-family: "Courier New", monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 5px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}
.atm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.atm-name {
    font-family: "Lato", sans-serif;
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-copy {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-copy:hover {
    background-color: #222;
}
.btn-copy:active {
    transform: scale(0.95);
}
#copyToast {
    visibility: hidden;
    min-width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    z-index: 99;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    font-size: 0.8rem;
}
#copyToast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@keyframes fadein {
    from {
        bottom: 70px;
        opacity: 0;
    }
    to {
        bottom: 100px;
        opacity: 1;
    }
}
@keyframes fadeout {
    from {
        bottom: 100px;
        opacity: 1;
    }
    to {
        bottom: 70px;
        opacity: 0;
    }
}
.chip-box {
    width: 45px;
    height: 34px;
    /* Kembalikan Chip ke Gold */
    background: linear-gradient(135deg, #e6cfa3 0%, #d1b464 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid #b39750;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.1);
}
.chip-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
    z-index: 1;
}
.chip-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: transparent;
    box-shadow: inset 10px 0 0 -9px rgba(0, 0, 0, 0.15),
        inset -10px 0 0 -9px rgba(0, 0, 0, 0.15);
}
.chip-line-vert {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transform: translateX(-50%);
}
.closing-section {
    padding: 50px 30px 40px 30px;
    background-color: var(--bg-card);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.closing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(27, 60, 115, 0.05) 100%
    );
    pointer-events: none;
}
.closing-photo-wrapper {
    width: 200px;
    height: 280px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}
.closing-photo-arch {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    border: 4px solid var(--primary-red);
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(27, 60, 115, 0.2);
}
.closing-photo-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 190px 190px 0 0;
    filter: none;
}
.arch-star {
    position: absolute;
    color: var(--primary-red);
    font-size: 1.5rem;
    z-index: 3;
}
.as-left {
    top: 40px;
    left: -20px;
    font-size: 1rem;
    opacity: 0.6;
}
.as-right {
    bottom: 20px;
    right: -25px;
    transform: rotate(45deg);
}
.closing-thank-you {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary-red);
    margin-bottom: 15px;
    line-height: 1.2;
}
.closing-message {
    font-family: "Lato", sans-serif;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.7;
    max-width: 90%;
    margin: 0 auto 30px;
    font-weight: 300;
}
.closing-couple-name {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.closing-family {
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
}
.footer-section-new {
    background-color: var(--bg-card);
    padding: 20px 20px 20px 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(27, 60, 115, 0.1);
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
    text-decoration: none;
}
.footer-brand:hover {
    opacity: 1;
}
.brand-icon {
    font-size: 1.2rem;
    color: var(--primary-red);
}
.brand-text {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-red);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}
.footer-soc-link {
    color: var(--primary-red);
    opacity: 0.6;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.footer-soc-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.footer-copyright {
    font-family: "Lato", sans-serif;
    font-size: 0.6rem;
    color: #999;
    letter-spacing: 0.5px;
}
