/* ============================================
   WEDDING INVITATION TEMPLATE - ORGANIZED CSS
   ============================================ */

/* ============================================
   1. RESET & GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Marion Regular', serif;
    overflow-x: hidden;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    color: #333;
}

input, textarea {
    -webkit-user-select: text;
    user-select: text;
}

.mobile-wrapper {
    width: 100%;
    max-width: 450px;
    min-height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    position: relative;
    overflow-x: hidden;
}

section {
    padding: 80px 20px;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    pointer-events: auto;
}

/* ============================================
   2. KEYFRAME ANIMATIONS
   ============================================ */

/* Ken Burns Effects */
@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes kenBurns1 {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.15) translate(-3%, 2%); }
    100% { transform: scale(1) translate(0, 0); }
}

@keyframes kenBurns2 {
    0% { transform: scale(1.1) translate(0, 0); }
    50% { transform: scale(1.3) translate(3%, -2%); }
    100% { transform: scale(1.1) translate(0, 0); }
}

@keyframes kenBurns3 {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) translate(-2%, -2%); }
    100% { transform: scale(1); }
}

@keyframes kenBurnsMusic {
    0% { transform: scale(1) translate(0, 0); }
    25% { transform: scale(1.12) translate(-3%, 2%); }
    50% { transform: scale(1.06) translate(2%, -3%); }
    75% { transform: scale(1.10) translate(-2%, 1%); }
    100% { transform: scale(1) translate(0, 0); }
}

/* Float & Movement */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatingDeep {
    0% { transform: translate(0, 0); }
    33% { transform: translate(10px, -5px); }
    66% { transform: translate(-10px, 5px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatHorizontal {
    0% { transform: translateX(0px); }
    50% { transform: translateX(15px); }
    100% { transform: translateX(0px); }
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(100px) rotate(360deg); opacity: 0; }
}

@keyframes bokehFloat {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-30px); opacity: 0.8; }
}

@keyframes moveLight {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

@keyframes falling {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Shine & Gradients */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

@keyframes silverGlow {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(10%, 10%) rotate(10deg); }
}

/* Zoom & Scale */
@keyframes zoomInFade {
    0% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(0.9); }
    20%, 40% { transform: scale(1.1); }
}

@keyframes pulseGray {
    0%, 100% { box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(200, 200, 200, 0.1); }
}

@keyframes shadow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(139, 126, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0); }
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Fades & Slides */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* Rotation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-180deg) scale(0.5); }
    to { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes sway {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.02); }
    50% { transform: rotate(0deg) scale(1.05); }
    75% { transform: rotate(-2deg) scale(1.02); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes swayLeftRight {
    0% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
    100% { transform: translateX(0); }
}

@keyframes swayGunungan {
    0% { transform: scale(1.02) translateX(-15px) rotate(-1deg); }
    100% { transform: scale(1.02) translateX(15px) rotate(1deg); }
}

/* Specific Object Animations */
@keyframes fly-cycle {
    100% { background-position: -900px 0; }
}

@keyframes fly-right-one {
    0% { transform: scale(0.3) translateX(-10vw); }
    100% { transform: scale(0.6) translateX(110vw); }
}

@keyframes move-cloud {
    0% { left: -30%; }
    100% { left: 120%; }
}

/* UI Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes floatHint {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.9; }
}

@keyframes pulseButton {
    0% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(139, 126, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0); }
}

@keyframes rippleEffect {
    to { width: 200px; height: 200px; opacity: 0; }
}

/* ============================================
   3. TYPOGRAPHY & COMMON COMPONENTS
   ============================================ */

/* Section Titles */
.section-title {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffffff;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #762B4C, transparent);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.section-title.animated::after {
    transform: translateX(-50%) scaleX(1);
}

/* Title Variations */
.section-title-history,
.section-title-video,
.section-title-maps,
.section-title-wishes,
.section-title-gift,
.section-title-turutmengundang {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Marion Regular', serif;
}

.section-title-quote,
.section-title-countdown,
.section-title-events,
.section-title-inviting,
.section-title-couple,
.section-title-gallery, 
.section-title-closing,
.section-title-maps,
.section-title-rsvp {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.section-title-quote::after,
.section-title-couple::after,
.section-title-countdown::after,
.section-title-events::after,
.section-title-gallery::after, 
.section-title-closing::after,
.section-title-maps::after,
.section-title-rsvp::after {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.section-title-sosmed {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-open {
    background-color: #AD3326;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 126, 116, 0.3);
}

.btn-open:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 126, 116, 0.4);
}

.btn-event {
    background: #8B7E74;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(139, 126, 116, 0.2);
}

.btn-event:hover {
    background: #5e544d;
    transform: translateY(-3px);
    color: #ffffff;
}

.add-to-calendar-btn {
    background-color: #8B7E74;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(139, 126, 116, 0.3);
}

.add-to-calendar-btn:hover {
    background-color: #5e544d;
    transform: translateY(-3px);
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #8B7E74;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(139, 126, 116, 0.2);
}

.map-btn:active {
    transform: scale(0.98);
}

.copy-btn {
    background: #8B7E74;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    transition: 0.3s;
    color: white;
    cursor: pointer;
}

.copy-btn:hover {
    background: #0A1527;
}

.copy-btn i {
    color: #ffffff;
    font-size: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #dee2e6;
    border-radius: 12px;
    background: white;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #8B7E74;
    box-shadow: 0 0 0 0.2rem rgba(139, 126, 116, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #8B7E74;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(139, 126, 116, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #5e544d;
    transform: translateY(-3px);
}

/* ============================================
   4. COVER SECTION
   ============================================ */
#cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.0), rgba(0, 0, 0, 0.0)),
                url('/img/basic-template-img/aset-1.jpg') center center / cover no-repeat;
    animation: kenBurns1 25s ease-in-out infinite;
    z-index: 0;
    transition: transform 1.5s ease;
}

#cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0) 0%, rgba(2, 2, 2, 0.4) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.cover-content {
    position: relative;
    top: 100px;
    z-index: 2;
    width: 85%;
    max-width: 450px;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.2s ease-out;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* --- STATE DIBUKA (Triggered by JS) --- */
#cover.opened {
    opacity: 0;
    transform: scale(1.2); /* Efek Zoom Out saat dibuka */
    visibility: hidden;
    pointer-events: none;
}

#cover.opened .cover-content {
    opacity: 0;
    transform: translateY(-50px);
}

/* Tipografi tetap seperti milikmu */
.cover-subtitle { font-family: 'Marion Regular', sans-serif; font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: #ffffff; margin-bottom: 1rem; }
.cover-names { font-family: 'Great Vibes', serif; font-size: 3rem; font-weight: 700; line-height: 1.2; color: #fff; margin-bottom: 1.5rem; }
.guest-box { margin: 2rem 0; padding: 1.5rem; border-top: 1px inset rgba(255,255,255, 0.2); border-bottom: 1px inset rgba(255,255,255, 0.2); }
.guest-text { font-size: 0.9rem; color: #fff; margin-bottom: 0.5rem; }
.guest-name { font-family: 'Marion Regular', serif; font-size: 1.1rem; color: #fff; }

/* ============================================
   5. MAIN CONTENT
   ============================================ */
#main-content {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

#main-content.active {
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 200px;
    background: linear-gradient(to bottom, transparent, #fdfbf7);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('/img/basic-template-img/aset-2.jpg') center 20% / cover no-repeat;
    z-index: 5;
    animation: kenBurns 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 180px;
    animation: floatingDeep 12s infinite ease-in-out;
}

.hero-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    animation: floatHorizontal 10s infinite ease-in-out;
}

.hero-names {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    margin: 5px 0;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
    animation: floatHorizontal 12s infinite ease-in-out reverse;
}

.hero-date {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    margin-top: 15px;
    display: inline-block;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    animation: floatHorizontal 9s infinite ease-in-out;
}

.gunungan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('/img/basic-template-img/bahan-overflay.png') center center / cover no-repeat;
    z-index: 5;
    pointer-events: none;
    opacity: 0.85;
    transform-origin: center bottom;
    /* Ubah 0s menjadi 6s atau sesuai selera */
    animation: swayGunungan 6s infinite ease-in-out; 
}

/* Animasi Ayunan Gunungan */
@keyframes swayGunungan {
    0% {
        transform: rotate(-2deg) scale(1.02);
    }
    50% {
        transform: rotate(2deg) scale(1.02);
    }
    100% {
        transform: rotate(-2deg) scale(1.02);
    }
}

/* Animasi Kilau (Shine) tetap Anda gunakan */
@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Bird Animation */
.bird {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg');
    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;
    animation: fly-cycle steps(10) infinite;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

.bird-container {
    position: absolute;
    top: 20%;
    left: -10%;
    transform: scale(0) translateX(-10vw);
    animation-name: fly-right-one;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 2;
}

.bird-container--one {
    animation-duration: 15s;
    animation-delay: 0s;
}

.bird--one {
    animation-duration: 1s;
}

.bird-container--two {
    animation-duration: 16s;
    animation-delay: 1s;
    transform: scale(0.5);
}

.bird--two {
    animation-duration: 0.9s;
}

.bird-container--three {
    animation-duration: 14s;
    animation-delay: 5s;
    transform: scale(0.4);
}

.bird--three {
    animation-duration: 1.2s;
}

/* Cloud Animation */
.cloud {
    width: 200px;
    height: 60px;
    background: linear-gradient(to bottom, #fff 5%, #f1f1f1 100%);
    border-radius: 100px;
    position: relative;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.cloud:after,
.cloud:before {
    content: '';
    position: absolute;
    background: #fff;
    z-index: -1;
}

.cloud:after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 50px;
    border-radius: 100px;
}

.cloud:before {
    width: 120px;
    height: 120px;
    top: -70px;
    right: 15px;
    border-radius: 200px;
}

.cloud-container {
    position: absolute;
    filter: blur(3px);
    opacity: 0.6;
    animation: move-cloud linear infinite;
    z-index: 1;
}

.cloud-container--one {
    top: 10%;
    animation-duration: 35s;
    transform: scale(0.6);
}

.cloud-container--two {
    top: 25%;
    animation-duration: 45s;
    animation-delay: -10s;
    transform: scale(0.8);
}

.cloud-container--three {
    top: 15%;
    right: 0;
    animation-duration: 55s;
    animation-delay: -20s;
    transform: scale(0.5);
}

/* ============================================
   7. QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #060606 0%, #060606 100%);
    color: #444;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section .container {
    position: relative;
    z-index: 3;
}

.quote-text {
    font-family: 'Marion Regular', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.gunungan-overlay-quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('/img/basic-template-img/bahan-overflay-quote.png') center center / cover no-repeat;
    z-index: 999;
    pointer-events: none;
    opacity: 0.85;
    transform-origin: center bottom;
    animation: sway 0s infinite ease-in-out;
}

.gunungan-overlay-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 120vh;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 8s infinite;
}

/* ============================================
   8. COUPLE SECTION
   ============================================ */
.couple-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    padding: 100px 0;
}

.couple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/img/basic-template-img/bg-hero.jpg') center / cover no-repeat;
    z-index: 1;
    animation: kenBurns 20s infinite alternate;
}

.couple-section .container {
    position: relative;
    z-index: 2;
}

.couple-card {
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.couple-card:hover {
    transform: translateY(-10px);
}

/* Photo Frame - Arch Style */
.photo-wrapper.arch-style {
    position: relative;
    width: 260px;
    height: 380px;
    margin: 0 auto 30px;
    border: 1px solid rgba(139, 126, 116, 0.2);
    border-radius: 130px 130px 0 0;
    overflow: hidden;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #8B7E74;
    border-radius: 130px 130px 0 0;
    z-index: 2;
    pointer-events: none;
}

.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 120px 120px 0 0;
    transition: transform 1.2s ease;
}

.couple-card:hover .couple-photo {
    transform: scale(1.1);
}

.couple-card:hover .frame-border {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(139, 126, 116, 0.2);
}

.couple-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    margin-top: 10px;
}

.parent-name {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.parent-name strong {
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-top: 5px;
}

.couple-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(139, 126, 116, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.couple-instagram:hover {
    background: #8B7E74;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 126, 116, 0.2);
}

.gunungan-overlay-couple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('/img/basic-template-img/bahan-overflay-couple.png') center center / cover no-repeat;
    z-index: 999;
    pointer-events: none;
    opacity: 0.85;
    transform-origin: center bottom;
    animation: sway 0s infinite ease-in-out;
}

.gunungan-overlay-couple::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 120vh;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 8s infinite;
}

/* ============================================
   9. INVITING SECTION
   ============================================ */
.inviting-section {
    padding: 4rem 0;
    background: #0A1527;
    position: relative;
    overflow: hidden;
}

.inviting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: kenBurns3 35s ease-in-out infinite;
    z-index: 1;
}

.inviting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.inviting-card {
    background: transparent;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.inviting-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.inviting-icon {
    font-size: 2.5rem;
    color: #762B4C;
    margin-bottom: 1rem;
    animation: heartBeat 2s ease-in-out infinite;
}

.inviting-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.inviting-title {
    font-size: 0.8rem;
    color: #d8d8d8;
    line-height: 1.5;
    font-style: italic;
}

/* ============================================
   10. COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    background: linear-gradient(180deg, #060606 0%, #060606 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.0);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown-item.animated {
    opacity: 1;
    transform: scale(1);
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   11. EVENT SECTION - PREMIUM GLASSMORPHISM
   ============================================ */
.event-section {
    position: relative;
    background-color: #1a1a1a;
    overflow: hidden;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background dengan Ken Burns Effect */
.event-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
                url('/img/basic-template-img/bg-hero.jpg') center / cover no-repeat;
    z-index: 1;
    animation: kenBurns 20s infinite alternate ease-in-out;
}

.event-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Section Title khusus Event */
.section-title-events {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Event Card Styling */
.event-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

/* Efek Hover: Berubah menjadi Putih Bersih */
.event-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Ikon dengan Animasi Putar */
.event-icon {
    font-size: 2.2rem;
    color: #c5a059; /* Warna Emas agar serasi dengan Map */
    width: 85px;
    height: 85px;
    line-height: 85px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

.event-card:hover .event-icon {
    background: #c5a059;
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Tipografi Card */
.event-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.4s ease;
}

.event-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s ease;
}

/* Perubahan Warna Teks saat Hover */
.event-card:hover h3 { color: #2c3e50; }
.event-card:hover p { color: #555555; }
.event-card:hover p strong { color: #c5a059; }

/* Tombol Lihat Lokasi */
.btn-event {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.event-card:hover .btn-event {
    background: #c5a059;
    border-color: #c5a059;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .event-section { padding: 80px 0; }
    .event-card { padding: 2.5rem 1.5rem; }
    .event-card h3 { font-size: 1.8rem; }
}
/* ============================================
   12. GALLERY SECTION - 3D CAROUSEL
   ============================================ */
.gallery-section {
    color: #444;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 15px;
    background: #f8f9fa;
}

.gallery-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%),
                url('/img/basic-template-img/bg-rsvp.jpg') center 20% / cover no-repeat;
    z-index: 0;
}


.slideshow-section {
    perspective: 1500px;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.slideshow-3d-container {
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

.carousel-3d {
    position: relative;
    width: 280px;
    height: 100%;
    transform-style: preserve-3d;
    pointer-events: none;
}

.slide-3d {
    position: absolute;
    width: 280px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 0;
    background: #eee;
    pointer-events: auto;
}

.slide-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slide-3d.active {
    opacity: 1;
    z-index: 10;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.slide-3d.prev-slide {
    opacity: 0.6;
    z-index: 5;
    transform: translate(-120%, -50%) scale(0.8) rotateY(25deg);
}

.slide-3d.next-slide {
    opacity: 0.6;
    z-index: 5;
    transform: translate(20%, -50%) scale(0.8) rotateY(-25deg);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999999 !important;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

.prev {
    left: 5%;
}

.next {
    right: 5%;
}

.prev:hover,
.next:hover {
    background: #8b7e74;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #8b7e74;
    width: 30px;
    border-radius: 10px;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   13. VIDEO SECTION
   ============================================ */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 15px;
    z-index: 1;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 2;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #8B7E74;
    border-radius: 210px 210px 30px 30px;
    z-index: -1;
    transform: scale(1.05);
    opacity: 0.5;
}

/* --- HISTORY (TIMELINE) SECTION --- */
.history-section { padding: 80px 0; background: linear-gradient(to bottom, #f8f9fa, #e9ecef); position: relative; overflow: hidden; z-index: 1; }
.history-section::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(139, 126, 116, 0.15) 0%, transparent 70%); top: 20%; left: 10%; z-index: -1; animation: moveLight 15s infinite alternate ease-in-out; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: #cccccc; transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 60px; width: 100%; }
.timeline-item:nth-child(odd) { padding-right: calc(50% + 40px); text-align: right; }
.timeline-item:nth-child(even) { padding-left: calc(50% + 40px); text-align: left; }
.timeline-dot { position: absolute; top: 0; left: 50%; width: 20px; height: 20px; background: #999999; border: 4px solid #fff; border-radius: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2); animation: pulseGray 2s ease-in-out infinite; }
.timeline-content { background: #fff; padding: 25px 30px; border-radius: 15px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); border: 1px solid #eeeeee; position: relative; transition: all 0.3s ease; }
.timeline-content:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); }
.timeline-item:nth-child(odd) .timeline-content::after { content: ''; position: absolute; right: -15px; top: 10px; border-left: 15px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.timeline-item:nth-child(even) .timeline-content::after { content: ''; position: absolute; left: -15px; top: 10px; border-right: 15px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.timeline-date { display: inline-block; background: #888888; color: #fff; padding: 6px 18px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.timeline-title { font-size: 1.5rem; color: #333; margin-bottom: 12px; font-family: 'Marion Regular', serif; font-weight: 700; }
.timeline-text { color: #555; line-height: 1.7; font-size: 1rem; }

/* ============================================
   15. MAPS SECTION - FULL CENTERED WITH TIME
   ============================================ */
.maps-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: #1a1a1a; 
}

/* Background dengan Gambar & Overlay */
.maps-section:before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
                url('/img/basic-template-img/asset-1.jpg') center center / cover no-repeat;
    z-index: 0;
}

.section-subtitle {
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Card Utama */
.map-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.map-card:hover {
    transform: translateY(-10px);
}

/* Ikon Map Tengah */
.map-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.map-icon {
    width: 70px;
    height: 70px;
    background: #c5a059; /* Warna Emas */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
    animation: pulseIcon 2s infinite;
}

/* Judul & Subtitle Card */
.map-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.map-subtitle-card {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

/* Detail Alamat Center */
.map-details {
    margin-bottom: 20px;
}

.map-details p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.map-details i {
    color: #c5a059;
    font-size: 1.1rem;
}

/* --- TIME BADGES CSS --- */
.time-badge-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 25px;
}

.time-badge {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 10px 12px;
    border-radius: 15px;
    flex: 1;
}

.badge-title {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #c5a059;
    font-weight: bold;
    letter-spacing: 1px;
}

.badge-clock {
    display: block;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    margin-top: 3px;
}

/* Container Iframe */
.map-container {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Tombol Navigasi */
.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #2c3e50;
    color: #ffffff !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
}

.map-btn:hover {
    background: #c5a059;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
    transform: scale(1.05);
}

/* Animasi Pulse */
@keyframes pulseIcon {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .section-title-maps { font-size: 2rem; }
    .map-title { font-size: 2.2rem; }
    .time-badge-container { flex-direction: column; gap: 10px; }
    .map-card { padding: 2rem 1rem; }
    .map-btn { width: 100%; } 
}

/* ============================================
   16. MUSIC SECTION
   ============================================ */
.music-section {
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?auto=format&fit=crop&w=2070&q=80') center center / cover no-repeat;
    animation: kenBurnsMusic 30s ease-in-out infinite, zoomInFade 1.5s ease-out;
    z-index: 0;
}

.music-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 150px 150px;
    animation: bokehFloat 30s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
}

.playlist-container {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vinyl-animation {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #762B4C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    animation: rotate 4s linear infinite;
    animation-play-state: paused;
}

.track-info h4 {
    margin: 0 0 0.3rem 0;
    color: #ffffff;
    font-size: 1.3rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #762B4C;
    color: #333;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #762B4C, #ffc0cb);
    color: white;
    font-size: 1.5rem;
}

/* ============================================
   17. RSVP SECTION
   ============================================ */
.rsvp-section {
    color: #444;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 15px;
    background: #f8f9fa;
}

.rsvp-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%),
                url('/img/basic-template-img/bg-rsvp.jpg') center 20% / cover no-repeat;
    z-index: 0;
}

.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

/* ============================================
   18. GIFT SECTION - REFINED GOLD
   ============================================ */
.gift-section {
    background: #fdfbf7; 
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.gift-subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

.gift-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gift-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1 1 300px;
    max-width: 380px;
    z-index: 2;
}

.gift-card:hover {
    transform: translateY(-12px); /* Lebih elegan naik ke atas */
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.gift-icon { margin-bottom: 25px; }

.gift-icon img {
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.4s ease;
    max-height: 50px;
    object-fit: contain;
}

.gift-card:hover .gift-icon img {
    filter: grayscale(0);
    opacity: 1;
}

.gift-account-name {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gift-account-number {
    background: #fcfaf5;
    padding: 15px;
    border-radius: 15px;
    border: 1px dashed #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gift-account-number span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #2c3e50;
}

/* --- Perbaikan Tombol Salin --- */
.copy-btn {
    background: transparent;
    border: 1.5px solid #c5a059;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.copy-btn i {
    color: #c5a059; /* Ikon awalnya warna emas */
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #c5a059; /* Teks awalnya warna emas */
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #c5a059;
}

.copy-btn:hover i, 
.copy-btn:hover .copy-text {
    color: #ffffff; /* Berubah jadi putih saat hover */
}

/* ============================================
   19. WISHES SECTION - REFINED
   ============================================ */
.wishes-section {
    padding: 100px 20px;
    background: #fdfbf7; /* Warna putih gading/broken white */
    position: relative;
    overflow: hidden;
}

/* Background Ornament Tipis */
.wishes-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 5% 10%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 95% 90%, rgba(197, 160, 89, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.wishes-container {
    max-width: 700px; /* Dipersempit agar lebih fokus di mobile */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wishes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wishes-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Wish Card Styling */
.wish-card {
    background: #ffffff;
    padding: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Border emas transparan */
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Tambahkan tanda kutip dekoratif di pojok ucapan */
.wish-message::before {
    content: '"';
    position: absolute;
    left: 5px; top: -10px;
    font-size: 40px;
    color: #c5a059;
    opacity: 0.2;
    font-family: serif;
}

.wish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Aksen Garis Emas di Samping Card */
.wish-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 5px; height: 100%;
    background: #c5a059;
}

.wish-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

/* Avatar User */
.wish-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f4f1ea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.wish-info {
    flex: 1;
    text-align: left; /* Nama tamu rata kiri */
}

.wish-name {
    margin: 0;
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 700;
}

.wish-time {
    font-size: 0.75rem;
    color: #aaa;
    display: block;
}

/* Status Kehadiran */
.wish-status {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wish-status.hadir { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.wish-status.tidak-hadir { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.wish-status.ragu { background: rgba(255, 193, 7, 0.1); color: #ffc107; }

/* Pesan Doa */
.wish-message {
    color: #4a4a4a;
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: left;
    position: relative;
    padding-left: 15px;
    border-left: 1px solid #eee;
}

/* Tombol Muat Lebih Banyak */
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 1.5px solid #c5a059;
    color: #c5a059;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.load-more-btn:hover {
    background: #c5a059;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .wishes-section { padding: 60px 15px; }
    .section-title-wishes { font-size: 2.2rem; }
    .wish-card { padding: 1.2rem; }
}

/* ============================================
   20. SOCIAL MEDIA SECTION
   ============================================ */
.sosmed-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.sosmed-text {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sosmed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sosmed-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
}

.sosmed-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   21. CLOSING SECTION
   ============================================ */

.closing-section {
    padding: 80px 20px;
    color: #444;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%),
                url('/img/basic-template-img/bg-rsvp.jpg') center 20% / cover no-repeat;
    z-index: 0;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.closing-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: heartBeat 2s ease-in-out infinite;
}

.closing-title {
    font-family: 'Marion Regular', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.closing-message {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
}

.closing-names h3 {
    font-family: 'Marion Regular', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #8B7E74;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8B7E74;
    color: white;
    transform: translateY(-5px);
}

.falling-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.fall-item {
    position: absolute;
    top: -50px;
    animation: falling linear infinite;
}

.fall-item.flower::before {
    content: '✧';
    font-size: 1.5rem;
    color: #8B7E74;
}

.fall-item.leaf::before {
    content: '•';
    font-size: 1rem;
    color: #adb5bd;
}

.fall-item.heart::before {
    content: '❤';
    font-size: 1rem;
    color: #8B7E74;
}

/* ============================================
   22. FOOTER
   ============================================ */
footer {
    background: #2d2d2d;
    color: white;
    padding: 1rem 1%;
    text-align: center;
    width: 100%;
    position: relative;
}

footer p {
    opacity: 0.8;
}

/* ============================================
   23. NAVIGATION MENU - VERTICAL GOLD EDITION
   ============================================ */

/* Wrapper Utama */
.navigation-wrapper-right {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

/* --- EFEK TRANSPARAN SAAT SCROLL --- */
.navigation-wrapper-right.nav-is-scrolling {
    opacity: 0.25; 
    transform: scale(0.85);
    pointer-events: none;
}

/* --- HINT LABEL (BUKA MENU) --- */
.nav-hint-label {
    position: absolute;
    bottom: 70px; /* Jarak pas di atas tombol grid */
    right: 0;
    background: #c5a059; /* Emas Solid */
    color: #ffffff !important; /* Putih Kontras */
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    z-index: 1000001;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    
    /* State Awal (Sembunyi) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

/* Munculkan Hint */
.nav-hint-label.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: floatHint 2s infinite ease-in-out;
}

/* Segitiga Bawah Hint */
.nav-hint-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #c5a059;
}

/* --- CONTAINER MENU (MUNCUL KE ATAS) --- */
.nav-menu-inner-horizontal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 40px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu-inner-horizontal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Item Ikon Menu */
.nav-link-item {
    width: 44px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-link-item i {
    font-size: 1.25rem;
}

.nav-link-item.active {
    background: #c5a059 !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* --- TOMBOL TOGGLE UTAMA (GRID) --- */
.nav-toggle-main {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    background: #1a1a1a; /* Hitam Charcoal */
    color: #ffffff;
    border: 2px solid #c5a059;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle-main.active {
    background: #c5a059;
    border-color: #ffffff;
    transform: rotate(135deg);
}

/* --- ANIMASI --- */
@keyframes floatHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive Mobile */
@media (max-width: 480px) {
    .navigation-wrapper-right { right: 15px; bottom: 25px; }
    .nav-toggle-main { width: 50px !important; height: 50px !important; font-size: 24px; }
    .nav-hint-label { font-size: 10px; padding: 8px 15px; bottom: 65px; }
}

/* ============================================
   24. SCROLL REVEAL ANIMATIONS
   ============================================ */
.slide-in-active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotate(0deg) perspective(400px) rotateX(0deg) rotateY(0deg) !important;
    filter: blur(0) !important;
}

.slide-in-active:nth-child(1) { transition-delay: 0.1s !important; }
.slide-in-active:nth-child(2) { transition-delay: 0.2s !important; }
.slide-in-active:nth-child(3) { transition-delay: 0.3s !important; }
.slide-in-active:nth-child(4) { transition-delay: 0.4s !important; }
.slide-in-active:nth-child(5) { transition-delay: 0.5s !important; }

/* Initial States for Sections */
.couple-section .couple-card:nth-child(1) {
    opacity: 0;
    transform: translate(-100px, 100px);
    transition: all 1s ease-out;
}

.couple-section .couple-card:nth-child(2) {
    opacity: 0;
    transform: translate(100px, 100px);
    transition: all 1s ease-out;
}

.couple-name {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
}

.parent-name {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.inviting-card {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.inviting-name,
.inviting-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.countdown-section .countdown-item {
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.countdown-number {
    opacity: 0;
    transform: rotateZ(-15deg);
    transition: all 0.6s ease-out;
}

.event-card {
    opacity: 0;
    transition: all 1s ease-out;
}

.event-section .event-card:nth-child(odd) {
    transform: translate(-100px, 100px);
}

.event-section .event-card:nth-child(even) {
    transform: translate(100px, 100px);
}

.event-card h3 {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.8s ease-out;
}

.event-card p {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.gallery-item {
    opacity: 0;
    filter: blur(15px);
    transition: all 0.8s ease-out;
}

.gallery-section .gallery-item:nth-child(odd) {
    transform: translateX(-80px) scale(0.8);
}

.gallery-section .gallery-item:nth-child(even) {
    transform: translateX(80px) scale(0.8);
}

.timeline-item {
    opacity: 0;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-item:nth-child(odd) {
    transform: translateX(-100px) rotateZ(-5deg);
}

.timeline-item:nth-child(even) {
    transform: translateX(100px) rotateZ(5deg);
}

.timeline-title {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s ease-out;
}

.timeline-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.maps-section .map-card {
    opacity: 0;
    transform: translateY(100px) rotateZ(-5deg);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.map-title {
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.8s ease-out;
}

.map-details p {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease-out;
}

.rsvp-form {
    opacity: 0;
    transform: scale(0.3);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-group {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
}

.gift-card {
    opacity: 0;
    transform: perspective(800px) rotateY(-90deg);
    border: 2px solid #f4f1ea; /* Warna krem sangat muda */
    transition: transform 0.3s ease;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gift-bank-name {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
}

.gift-account-number {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wishes-title {
    opacity: 0;
    transform: rotateZ(-15deg) scale(0.5);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wish-card {
    opacity: 0;
    transform: translateX(-100px) rotateZ(-5deg);
    transition: all 0.8s ease-out;
}

.wish-name {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease-out;
}

.wish-message {
    opacity: 0;
    filter: blur(10px);
    transition: all 0.8s ease-out;
}

.closing-title {
    opacity: 0;
    transform: scale(1.5) rotateZ(10deg);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.closing-message {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(60px);
    transition: all 1s ease-out;
}

.closing-names h3 {
    opacity: 0;
    transform: scale(0);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link {
    opacity: 0;
    transform: translateY(50px) scale(0.5);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.quote-section .quote-text {
    opacity: 0;
    filter: blur(15px);
    transform: scale(0.9);
    transition: all 1.2s ease-out;
}

.btn-event,
.btn-submit,
.map-btn,
.add-to-calendar-btn {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   25. RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet & Medium Screens */
@media (max-width: 992px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 120px;
        column-count: auto;
    }

    .gallery-item {
        width: auto;
        break-inside: auto;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content::after {
        display: none;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -15px;
    }

    .gallery-grid {
        display: block;
        column-count: 2;
        grid-template-columns: none;
    }

    .gallery-item {
        width: 100%;
        break-inside: avoid;
    }

    .section-title {
        font-size: 2rem;
    }

    .sosmed-section {
        padding: 60px 0;
    }

    .section-title-sosmed {
        font-size: 2.2rem;
    }

    .sosmed-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .photo-wrapper.arch-style {
        width: 220px;
        height: 320px;
        border-radius: 110px 110px 0 0;
    }

    .frame-border {
        border-radius: 110px 110px 0 0;
    }

    .couple-photo {
        border-radius: 100px 100px 0 0;
    }

    .couple-name {
        font-size: 1.6rem;
    }

    .parent-name {
        font-size: 0.85rem;
    }

    .event-section {
        padding: 60px 0;
    }

    .event-card {
        padding: 2.5rem 1.5rem;
    }

    .wishes-title {
        font-size: 2rem;
    }

    .wishes-stats {
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem 1.5rem;
    }

    .wish-card {
        padding: 1.2rem;
    }

    .wish-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .load-more-btn {
        padding: 0.8rem 2rem;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .cover-content {
        padding: 1.5rem 1rem;
    }

    .cover-names {
        font-size: 2.2rem;
    }

    .hero-names {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .navigation-wrapper-right {
        left: auto;
        right: 20px;
        margin-left: 0;
        transform: none;
    }

    .nav-is-scrolling {
        transform: scale(0.9) !important;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .slideshow-3d-container {
        height: 350px;
    }

    .carousel-3d {
        width: 200px;
    }

    .slide-3d {
        width: 200px;
        height: 280px;
    }

    .slide-3d.prev-slide,
    .slide-3d.next-slide {
        pointer-events: none !important;
    }

    .slide-3d.prev-slide {
        transform: translate(-90%, -50%) scale(0.75) rotateY(20deg);
        opacity: 0.4;
    }

    .slide-3d.next-slide {
        transform: translate(-10%, -50%) scale(0.75) rotateY(-20deg);
        opacity: 0.4;
    }

    .prev,
    .next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.7);
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .dot.active {
        width: 20px;
    }

    .wishes-section {
        padding: 60px 15px;
    }

    .wishes-title {
        font-size: 1.8rem;
    }

    .wishes-subtitle {
        font-size: 1rem;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.5rem;
    }

    .wish-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .wish-avatar {
        align-self: center;
    }

    .wish-info {
        width: 100%;
    }
}

/* Extra Small Screens */
@media (max-width: 380px) {
    .cover-content h2,
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

/* ============================================
   END OF ORGANIZED CSS
   ============================================ */