/* Tailwind Custom CSS - Settu Morphosis Invitation */
/* Fonts loaded via HTML <link> tag for better control */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== ACCESSIBILITY: Skip Link ========== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* ========== LUXURY INTIMATE PRELOADER ========== */
.luxury-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #1a1a1a 50%, 
        #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.luxury-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.1);
}

/* Animated gradient overlay */
.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(201, 169, 97, 0.08) 0%, 
        transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.preloader-content {
    text-align: center;
    padding: var(--space-8);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Elegant logo initial */
.preloader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-8);
    position: relative;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.1) 0%, 
        rgba(201, 169, 97, 0.05) 100%);
    box-shadow: 
        0 0 30px rgba(201, 169, 97, 0.3),
        inset 0 0 20px rgba(201, 169, 97, 0.1);
    animation: rotateBorder 3s linear infinite, floatLogo 4s ease-in-out infinite;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

.logo-initial {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 400;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    animation: shimmerText 2s ease-in-out infinite;
}

.logo-initial-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.5));
    animation: shimmerLogo 2s ease-in-out infinite;
}

@keyframes shimmerLogo {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.5));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.8));
    }
}

@keyframes shimmerText {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 30px rgba(201, 169, 97, 0.8);
    }
}

/* Elegant divider */
.preloader-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin: var(--space-6) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 50%, 
        transparent 100%);
    animation: expandLine 1.5s ease-out 0.5s;
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
    animation: pulseDot 2s ease-in-out infinite;
}

.divider-dot:first-child {
    animation-delay: 0s;
}

.divider-dot:last-child {
    animation-delay: 1s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Elegant typography */
.preloader-title {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-5xl);
    color: var(--gold);
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards, gentleFloat 3s ease-in-out 1.6s infinite;
    text-shadow: 0 2px 20px rgba(201, 169, 97, 0.4);
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.preloader-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-base);
    color: var(--cream);
    font-style: italic;
    letter-spacing: 2px;
    margin-top: -1rem;
    margin-bottom: var(--space-12);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

/* Loading animation */
.loading-animation {
    margin: var(--space-8) 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.loading-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.loading-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    40% {
        transform: scale(1.3) translateY(-10px);
        opacity: 0.7;
    }
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: lowercase;
    font-weight: 300;
}

/* Progress bar */
.preloader-progress {
    width: 250px;
    height: 2px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-full);
    margin: var(--space-8) auto 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%);
    border-radius: var(--radius-full);
    animation: loadProgress 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 
        0 0 10px rgba(201, 169, 97, 0.5),
        0 0 20px rgba(201, 169, 97, 0.3);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmerProgress 1.5s ease-in-out infinite;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmerProgress {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --gold: #C9A961;
    --gold-dark: #B8935A;
    --gold-light: #D4B976;
    --white: #ffffff;
    --dark: #2a2a2a;
    --dark-overlay: rgba(0, 0, 0, 0.3);
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #888888;
    --gray-600: #666666;
    --gray-800: #2a2a2a;
    --cream: #f5e6d3;
    --red: #d32f2f;
    --red-light: #E74C3C;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadow Scale */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-gold-sm: 0 4px 15px rgba(201, 169, 97, 0.3);
    --shadow-gold-md: 0 8px 25px rgba(201, 169, 97, 0.4);
    --shadow-gold-lg: 0 15px 35px rgba(201, 169, 97, 0.5);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000000;
    color: var(--white);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Golden Particles Background - Luxury Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 15% 90%, rgba(201, 169, 97, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%, 33% 80%, 15% 90%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%, 70% 20%, 85% 70%, 40% 85%, 20% 95%;
    }
}

/* Golden Particles Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(201, 169, 97, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(201, 169, 97, 0.2), transparent),
        radial-gradient(1px 1px at 15% 90%, rgba(201, 169, 97, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%, 33% 80%, 15% 90%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%, 70% 20%, 85% 70%, 40% 85%, 20% 95%;
    }
}

/* Mobile Wrapper - Fixed Mobile View untuk Semua Device */
.mobile-wrapper {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    position: relative;
    margin: 0 auto;
    background: #000000;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 
        0 0 50px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(201, 169, 97, 0.1),
        inset 0 0 50px rgba(201, 169, 97, 0.03);
    z-index: 2;
}

/* Elegant border frame */
.mobile-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(201, 169, 97, 0.1);
    pointer-events: none;
    z-index: 1000;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: inset 0 0 20px rgba(201, 169, 97, 0.1);
    }
    50% {
        box-shadow: inset 0 0 40px rgba(201, 169, 97, 0.2);
    }
}

/* ============================================
   COVER PAGE - Full Screen Background
   ============================================ */
.cover-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/6105023392969853846.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease;
}

/* Invited Text */
.invited-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: var(--space-8);
    opacity: 0.95;
}

/* Event Info */
.event-info {
    margin-bottom: var(--space-12);
    padding: 0 var(--space-6);
}

.event-name {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-6xl);
    font-weight: 400;
    color: var(--white);
    line-height: 1 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.event-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-lg);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: -0.8rem !important;
    padding-top: 0 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Guest Info */
.guest-info {
    margin-bottom: var(--space-8);
    padding: 0 var(--space-6);
}

.dear-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-2);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Open Invitation Button */
.open-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-gold-sm);
    margin-top: var(--space-4);
    position: relative;
    overflow: hidden;
}

.open-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-md);
    letter-spacing: 2px;
}



/* ============================================
   MAIN PAGE (setelah Open Invitation)
   ============================================ */
.main-page {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    display: none;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.main-page.active {
    display: block;
}

.hidden {
    display: none;
}

/* ============================================
   SECTION 1: HERO dengan BULAN
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('../images/foto2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.hero-text {
    color: var(--white);
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.hero-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
}

/* ============================================
   SECTION 2: EVENT DETAILS
   ============================================ */
.details-section {
    background: var(--white);
    padding: var(--space-10) var(--space-6);
}

.details-content {
    text-align: left;
}

.details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-8);
}

.details-left {
    flex: 1;
}

.details-title {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-4xl);
    color: var(--dark);
    margin-bottom: var(--space-3);
    line-height: 1;
    filter: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.date-time {
    margin-top: var(--space-2);
}

.date {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-1);
    line-height: 1.4;
}

.time {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Save the Date Button */
.save-date-btn {
    margin-top: var(--space-5);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-gold-sm);
}

.save-date-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-md);
}

.save-date-btn:active {
    transform: translateY(0);
}

.save-date-btn svg {
    flex-shrink: 0;
}

.photo-circle {
    width: 160px;
    height: 160px;
    border-radius: 0;
    overflow: hidden;
    border: none;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   SECTION 3: VENUE & MAP
   ============================================ */
.venue-section {
    background: var(--white);
    padding: var(--space-8) var(--space-6) var(--space-12);
}

.venue-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
    text-align: center;
}

.venue-address {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: var(--space-6);
    line-height: 1.5;
}

.map-container {
    margin-bottom: var(--space-6);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bali-room-info {
    text-align: center;
    padding: var(--space-4);
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.room-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--gray-600);
    font-style: italic;
}

/* ============================================
   SECTION 4: ABOUT SECTION dengan Foto Background
   ============================================ */
.about-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    background-image: url('../images/foto3.jpg');
    background-size: 250%;
    background-position: 25% 25%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-8) var(--space-6) var(--space-10);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 20%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(50, 50, 50, 0.4) 70%,
        rgba(200, 200, 200, 0.8) 90%,
        rgba(245, 245, 245, 0.95) 100%
    );
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding-top: var(--space-6);
}

.personal-greeting {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-3xl);
    color: var(--gold);
    text-align: left;
    margin-bottom: var(--space-4);
    margin-left: 0.5rem;
    letter-spacing: 1px;
    max-width: 200px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-2xl);
    color: var(--gold);
    text-align: left;
    margin-top: var(--space-6);
    margin-bottom: var(--space-8);
    margin-left: 0.5rem;
    max-width: 200px;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 1.7;
    color: var(--cream);
    text-align: left;
    max-width: 200px;
    margin-bottom: auto;
    margin-left: 0.5rem;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-title {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-5xl);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-1);
    margin-top: 7rem;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-lg);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION 5: QR CODE SECTION
   ============================================ */
.qr-section {
    background: linear-gradient(to bottom, var(--gray-100) 0%, var(--white) 100%);
    padding: var(--space-12) var(--space-6) var(--space-16);
    text-align: center;
}

.qr-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--dark);
    margin-bottom: var(--space-8);
}

.qr-code {
    width: 250px;
    height: 250px;
    margin: 0 auto var(--space-8);
    background: var(--white);
    border: 8px solid var(--dark);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, var(--dark) 1px, transparent 1px),
        linear-gradient(to bottom, var(--dark) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
}

.qr-instruction {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--dark);
}

/* ============================================
   SECTION 6: DRESS CODE - LUXURY EDITION
   ============================================ */
.dresscode-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    padding: var(--space-20) var(--space-6) var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dresscode-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 50%, 
        transparent 100%);
    opacity: 0.4;
}

.dresscode-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--dark);
    margin-bottom: var(--space-16);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.dresscode-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 50%, 
        transparent 100%);
}

.dresscode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-4);
}

.dresscode-left {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dresscode-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    background: transparent;
    filter: none;
    transition: transform 0.4s ease;
}

.dresscode-image:hover {
    transform: scale(1.02);
}

.dresscode-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    max-width: 380px;
    margin-top: var(--space-3);
    gap: var(--space-4);
}

.dresscode-label {
    font-family: var(--font-secondary);
    font-size: 12px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    flex: 1;
}

.dresscode-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dresscode-prize {
    text-align: center;
    padding: var(--space-6) var(--space-5);
    background: linear-gradient(135deg, 
        rgba(255, 254, 248, 0.9) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(255, 254, 248, 0.9) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: 
        0 4px 20px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 160px;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dresscode-prize::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, 
        var(--gold) 0%, 
        transparent 20%, 
        transparent 80%, 
        var(--gold) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dresscode-prize:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px rgba(201, 169, 97, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dresscode-prize:hover::before {
    opacity: 0.3;
}

.prize-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-3);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.prize-icon:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(201, 169, 97, 0.6));
}

.prize-icon svg {
    width: 100%;
    height: 100%;
}

.prize-label {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.6;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION 7: HERO PHOTO 2
   ============================================ */
.hero-photo-section {
    width: 100%;
    height: 400px;
    background-image: url('../images/foto4.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.hero-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
}

/* ============================================
   SECTION 8: SUGGESTIONS
   ============================================ */
.suggestions-section {
    background: var(--white);
    padding: var(--space-12) var(--space-6) var(--space-16);
    text-align: center;
}

.suggestions-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    max-width: 420px;
    margin: 0 auto;
}

.suggestion-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suggestion-status {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-2);
    box-shadow: var(--shadow-sm);
}

.suggestion-status.allowed {
    background: var(--gold);
}

.suggestion-status.not-allowed {
    background: var(--red-light);
}

.suggestion-icon-box {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(250, 250, 250, 0.95) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

/* Elegant inner glow effect */
.suggestion-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.3) 0%, 
        rgba(201, 169, 97, 0.1) 50%,
        rgba(201, 169, 97, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.suggestion-item:hover .suggestion-icon-box {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(254, 252, 248, 1) 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 12px 24px rgba(201, 169, 97, 0.15),
        0 6px 12px rgba(201, 169, 97, 0.1),
        0 0 0 1px rgba(201, 169, 97, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.suggestion-item:hover .suggestion-icon-box::before {
    opacity: 1;
}

/* Animated shimmer on hover */
.suggestion-icon-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(201, 169, 97, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.suggestion-item:hover .suggestion-icon-box::after {
    opacity: 1;
    animation: shimmerSweep 1.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.suggestion-svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    stroke: var(--gold);
    transition: all var(--transition-slow);
    filter: drop-shadow(0 1px 2px rgba(201, 169, 97, 0.2));
    position: relative;
    z-index: 1;
}

.suggestion-item:hover .suggestion-svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(201, 169, 97, 0.3));
    color: var(--gold-dark);
    stroke: var(--gold-dark);
}

/* Not allowed styling - elegant red variant */
.suggestion-item:has(.not-allowed) .suggestion-icon-box {
    background: linear-gradient(135deg, 
        rgba(255, 245, 245, 0.9) 0%, 
        rgba(254, 242, 242, 0.95) 100%);
    opacity: 0.85;
}

.suggestion-item:has(.not-allowed) .suggestion-icon-box::before {
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.3) 0%, 
        rgba(211, 47, 47, 0.1) 50%,
        rgba(211, 47, 47, 0.3) 100%);
}

.suggestion-item:has(.not-allowed) .suggestion-svg {
    color: var(--red);
    stroke: var(--red);
    filter: drop-shadow(0 1px 2px rgba(211, 47, 47, 0.2));
}

.suggestion-item:has(.not-allowed):hover .suggestion-icon-box {
    background: linear-gradient(135deg, 
        rgba(255, 245, 245, 1) 0%, 
        rgba(254, 242, 242, 1) 100%);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 10px 20px rgba(211, 47, 47, 0.12),
        0 5px 10px rgba(211, 47, 47, 0.08),
        0 0 0 1px rgba(211, 47, 47, 0.1);
}

.suggestion-item:has(.not-allowed):hover .suggestion-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(211, 47, 47, 0.25));
}

.suggestion-item:has(.not-allowed) .suggestion-icon-box::after {
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(211, 47, 47, 0.08) 50%,
        transparent 70%
    );
}

.suggestion-label {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
}

/* ============================================
   SECTION 9: SPECIAL PERFORMANCE & HOST
   ============================================ */
.performance-section {
    width: 100%;
    background-color: #000000;
    background-image: url('../images/Special Performance by/fotobackground.png');
    background-size: 110%;
    background-position: center 0;
    background-repeat: no-repeat;
    position: relative;
    padding: 2rem 2rem;
    text-align: center;
    min-height: 400px;
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0.35) 40%, 
        rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.performance-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.performance-title {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-5xl);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-1);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-style: italic;
}

.performance-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: var(--space-12);
    letter-spacing: 2px;
}

.special-header {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--white);
    margin: var(--space-8) 0 -15rem;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-align: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
}

.special-header:first-of-type {
    margin-top: 15rem;
}

.host-by-header {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin: var(--space-24) 0 -4rem;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-align: right;
    max-width: 420px;
    margin-left: auto;
    margin-right: 5rem;
    padding-left: 0;
    padding-top: var(--space-8);
    position: relative;
    z-index: 10;
}

.kahitna-photo {
    max-width: 250px;
    margin: 13rem auto -5rem;
}

.kahitna-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.4); */
}

.kahitna-logo {
    max-width: 220px;
    margin: -70px auto -6rem;
    position: relative;
    z-index: 2;
}

.kahitna-logo img {
    width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.host-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 380px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
    overflow: visible;
    flex-wrap: nowrap;
}

.host-item {
    text-align: center;
    flex: 0 0 auto;
    margin-left: -6px;
    transition: transform 0.3s ease, z-index 0s;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
}

.host-item:first-child {
    margin-left: 0;
    margin-right: 0px;
}

.host-item:nth-child(2) {
    margin-right: 0px;
}

.host-item:hover {
    transform: translateY(-8px) scale(1.05);
    z-index: 10;
}

.host-item img {
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Ukuran berbeda untuk setiap foto sesuai proporsi aslinya */
.host-dj {
    width: 85px;
    height: 115px;
    object-fit: contain;
    object-position: center;
}

.host-band {
    width: 105px;
    height: 125px;
    object-fit: contain !important;
    object-position: center !important;
}

.host-olivia {
    width: 60px;
    height: 80px;
    margin-left: 0px;
    object-fit: contain;
    object-position: center;
}

.host-fany {
    width: 42px;
    height: 68px;
    margin-left: 15px;
    object-fit: contain;
    object-position: center;
}

.host-item:hover img {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.host-name {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--white);
    margin-top: 0rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.host-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 0.45rem;
    font-weight: 400;
    color: var(--cream);
    margin-top: var(--space-1);
    line-height: 1.3;
    font-style: italic;
}

/* ============================================
   SECTION 10: SITTA'S GALLERY
   ============================================ */
.gallery-section {
    width: 100%;
    background-color: var(--dark);
    padding: var(--space-16) var(--space-6);
    text-align: center;
}

.gallery-header {
    margin-bottom: var(--space-8);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
    letter-spacing: 2px;
}

.gallery-subtitle-box {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    border: 2px solid var(--gold);
}

.gallery-icon {
    font-size: var(--text-xl);
    color: var(--gold);
}

.gallery-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-column: span 2;
    min-height: 300px;
    position: relative;
}

.gallery-medium {
    min-height: 200px;
}

.gallery-small {
    min-height: 150px;
}

.gallery-landscape {
    grid-column: span 2;
    min-height: 180px;
    max-height: 220px;
}

.gallery-landscape img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.gallery-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 1.5rem 1rem;
    color: #ffffff;
}

.gallery-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.gallery-quote span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--gold);
}

/* ============================================
   SECTION 11: EXTENDED GALLERY
   ============================================ */
.gallery-section-extended {
    width: 100%;
    background-color: var(--dark);
    padding: var(--space-16) var(--space-6);
    text-align: center;
}

.gallery-grid-extended {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.gallery-item-ext {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item-ext img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item-ext:hover img {
    transform: scale(1.05);
}

.gallery-ext-medium {
    min-height: 200px;
}

.gallery-ext-small {
    min-height: 180px;
}

.gallery-ext-landscape {
    grid-column: span 2;
    min-height: 180px;
    max-height: 220px;
}

.gallery-ext-landscape img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.gallery-ext-large {
    grid-column: span 2;
    min-height: 250px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
    color: #ffffff;
    padding: 1rem 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION 12: THIRD GALLERY (2x2 Grid)
   ============================================ */
.gallery-grid-third {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.gallery-item-third {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    min-height: 220px;
}

.gallery-item-third img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item-third:hover img {
    transform: scale(1.05);
}

.gallery-third-landscape {
    grid-column: span 2;
    min-height: 180px;
    max-height: 220px;
}

.gallery-third-landscape img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* ============================================
   SECTION 13: FINAL CLOSING
   ============================================ */
.final-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/fotoBGslideterakhir.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.final-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-8);
    animation: fadeInUp 1.5s ease;
}

.final-greeting {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    opacity: 0.95;
}

.final-title {
    font-family: 'Great Vibes', cursive;
    font-size: var(--text-5xl);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-2);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.final-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-lg);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    letter-spacing: 1px;
    opacity: 0.95;
}

.final-message {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: var(--space-4);
    letter-spacing: 1px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet dan Mobile - Sekarang semua device pakai mobile view */
@media (max-width: 768px) {
    .mobile-wrapper {
        max-width: 100%;
        box-shadow: none;
    }
    .invited-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
        padding-top: 2.5rem;
    }

    .event-info {
        padding: 0 1.2rem;
        margin-bottom: 40px;
    }

    .invited-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 2rem;
    }

    .event-info {
        padding: 0 1.2rem;
        margin-bottom: 2.5rem;
    }

    .event-name {
        font-size: 3.5rem;
    }

    .event-subtitle {
        font-size: 1rem;
    }

    .guest-info {
        padding: 0 1.2rem;
        margin-bottom: 2rem;
    }

    .guest-name {
        font-size: 1.8rem;
    }

    .open-btn {
        font-size: 0.85rem;
        padding: 0.9rem 2.2rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-wrapper {
        max-width: 100%;
    }

    .invited-text {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        margin-bottom: 1.5rem;
    }

    .event-info {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .event-name {
        font-size: 3rem;
    }

    .event-subtitle {
        font-size: 0.95rem;
    }

    .guest-info {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .dear-text {
        font-size: 0.8rem;
    }

    .guest-name {
        font-size: 1.6rem;
    }

    .open-btn {
        font-size: 0.8rem;
        padding: 0.85rem 2rem;
        margin-top: 0.8rem;
    }

    .about-title {
        font-size: 2.5rem;
        margin-top: 4rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .invited-text {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }

    .event-info {
        margin-bottom: 1.5rem;
    }

    .event-name {
        font-size: 2.5rem;
    }

    .event-subtitle {
        font-size: 0.85rem;
    }

    .guest-info {
        margin-bottom: 1.2rem;
    }

    .guest-name {
        font-size: 1.4rem;
    }

    .open-btn {
        font-size: 0.75rem;
        padding: 0.8rem 1.8rem;
        margin-top: 0.6rem;
    }

    .about-title {
        font-size: 1.8rem;
        margin-top: 3.5rem;
    }

    .about-subtitle {
        font-size: 0.75rem;
    }

    /* Main Page Mobile Adjustments */
    .hero-section {
        height: 190px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .details-row {
        gap: 1rem;
    }

    .event-info {
        margin-bottom: 25px;
    }

    .details-title {
        font-size: 2.5rem;
    }

    .date {
        font-size: 1.1rem;
    }

    .time {
        font-size: 0.85rem;
    }

    .photo-circle {
        width: 110px;
        height: 110px;
    }

    .venue-title {
        font-size: 1.1rem;
    }

    .venue-address {
        font-size: 0.8rem;
    }

    /* About & QR Section Mobile */
    .about-section {
        min-height: 500px;
        padding: 1.5rem 1rem 2rem;
        background-size: 280%;
        background-position: 30% 20%;
    }

    .about-text {
        font-size: 0.75rem;
        max-width: 180px;
        margin-left: 0.5rem;
        margin-right: auto;
    }

    .about-title {
        font-size: 2.5rem;
        margin-top: 4.5rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
    }

    .qr-section {
        padding: 2.5rem 1rem 3rem;
    }

    .qr-title {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }

    .qr-code {
        width: 220px;
        height: 220px;
        border-width: 6px;
    }

    .qr-instruction {
        font-size: 1.3rem;
        letter-spacing: 5px;
    }

    /* Dress Code, Hero Photo 2, Suggestions Mobile */
    .dresscode-title {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .dresscode-container {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 90%;
    }

    .dresscode-image {
        max-width: 250px;
    }

    .prize-icon {
        width: 50px;
        height: 50px;
    }

    .prize-label {
        font-size: 0.55rem;
    }

    .hero-photo-section {
        height: 350px;
        background-size: cover;
        background-position: center top;
    }

    .suggestions-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .suggestions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .suggestion-icon-box {
        width: 60px;
        height: 60px;
    }

    .suggestion-status {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .suggestion-label {
        font-size: 0.6rem;
    }

    /* Performance Section Mobile 768px */
    .performance-section {
        /* padding: 3rem 1.5rem; */
        min-height: 150px;
        background-size: 115%;
    }

    .performance-title {
        font-size: 2.8rem;
    }

    .performance-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .special-header {
        font-size: 1.2rem;
        margin: 2rem 0 1.5rem;
    }

    .host-by-header {
        font-size: 0.7rem;
        margin: 2rem 0 1.5rem;
        padding-left: 0;
        text-align: center;
    }

    .kahitna-photo {
        max-width: 220px;
    }

    .kahitna-logo {
        max-width: 180px;
    }

    .special-header:first-of-type {
        margin-top: 3rem;
    }

    .host-grid {
        flex-wrap: nowrap;
        max-width: 100%;
        padding: 0 1rem;
        gap: 0;
        justify-content: center;
        align-items: flex-end;
        overflow: visible;
    }

    .host-item {
        margin-left: -5px;
        padding: 0.6rem 0.35rem;
    }

    .host-item:first-child {
        margin-left: 0;
    }

    .host-dj {
        width: 56px;
        height: 75px;
        object-fit: contain;
    }

    .host-band {
        width: 66px;
        height: 78px;
        object-fit: contain;
    }

    .host-olivia {
        width: 50px;
        height: 67px;
        object-fit: contain;
    }

    .host-fany {
        width: 39px;
        height: 63px;
        object-fit: contain;
    }

    .host-name {
        font-size: 0.5rem;
        margin-top: 0.4rem;
        white-space: nowrap;
    }

    .host-subtitle {
        font-size: 0.5rem;
    }

    .host-name {
        font-size: 0.6rem;
        margin-top: 0.5rem;
    }

    .host-subtitle {
        font-size: 0.5rem;
    }

    .host-name {
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }

    .host-subtitle {
        font-size: 0.65rem;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .dresscode-title {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .dresscode-container {
        max-width: 95%;
    }

    .dresscode-image {
        max-width: 220px;
    }

    .dresscode-prize {
        padding: 0.8rem 0.6rem;
        min-width: 90px;
    }

    .prize-icon {
        width: 45px;
        height: 45px;
    }

    .prize-label {
        font-size: 0.5rem;
    }

    .suggestions-title {
        font-size: 1.1rem;
    }

    .suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .suggestion-icon-box {
        width: 70px;
        height: 70px;
    }

    .suggestion-status {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .suggestion-label {
        font-size: 0.65rem;
    }

    /* Performance Section Mobile 360px */
    .performance-section {
        padding: 2.5rem 1rem;
        min-height: 320px;
        background-size: 120%;
    }

    .performance-title {
        font-size: 2.2rem;
    }

    .performance-subtitle {
        font-size: 0.9rem;
    }

    .special-header {
        font-size: 1rem;
        margin: 1.5rem 0 1rem;
    }

    .host-by-header {
        font-size: 0.65rem;
        margin: 1.5rem 0 1rem;
        padding-left: 0;
        text-align: center;
    }

    .kahitna-photo {
        max-width: 200px;
    }

    .kahitna-logo {
        max-width: 160px;
    }

    .special-header:first-of-type {
        margin-top: 2.5rem;
    }

    .host-grid {
        max-width: 100%;
        padding: 0 0.8rem;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-end;
        overflow: visible;
    }

    .host-item {
        margin-left: -4px;
        padding: 0.5rem 0.25rem;
    }

    .host-item:first-child {
        margin-left: 0;
    }

    .host-dj {
        width: 48px;
        height: 64px;
        object-fit: contain;
    }

    .host-band {
        width: 55px;
        height: 66px;
        object-fit: contain;
    }

    .host-olivia {
        width: 44px;
        height: 59px;
        object-fit: contain;
    }

    .host-fany {
        width: 34px;
        height: 55px;
        object-fit: contain;
    }

    .host-name {
        font-size: 0.45rem;
        margin-top: 0.3rem;
        white-space: nowrap;
    }

    .host-subtitle {
        font-size: 0.35rem;
        line-height: 1.2;
    }
}

/* ============================================
   LUXURY & ELEGANT ENHANCEMENTS
   ============================================ */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

.mobile-wrapper {
    scroll-behavior: smooth;
    overflow-y: auto;
}

/* Scroll Snap untuk setiap section - DISABLED untuk smooth scrolling bebas */
/* .mobile-wrapper > section,
.cover-page,
.main-page > div[class$="-section"],
.hero-section,
.details-section,
.venue-section,
.about-section,
.qr-section,
.dresscode-section,
.hero-photo-section,
.suggestions-section,
.performance-section,
.gallery-section,
.gallery-section-extended,
.final-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
} */

/* Parallax Effect untuk Background Images */
.cover-page,
.hero-section,
.hero-photo-section,
.performance-section,
.final-section {
    background-attachment: fixed;
    transition: transform 0.3s ease-out;
}

/* Gold Shimmer Animation */
@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.details-title,
.event-name,
.final-title {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        #f4e4c1 25%,
        var(--gold) 50%,
        #f4e4c1 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
}

/* Fade In Animations for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations dengan Intersection Observer ready */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.5s; /* Reduced from 0.8s to 0.5s for faster animation */
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animated {
    animation-name: fadeInUp;
}

.fade-in-scale.animated {
    animation-name: fadeInScale;
}

.slide-in-left.animated {
    animation-name: slideInLeft;
}

.slide-in-right.animated {
    animation-name: slideInRight;
}

/* Luxury Glass Morphism Effect */
.details-section,
.venue-section,
.about-section,
.dresscode-section,
.suggestions-section {
    backdrop-filter: blur(3px);
    position: relative;
}

.details-section::before,
.venue-section::before,
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.details-content,
.venue-section > *,
.about-content {
    position: relative;
    z-index: 1;
}

/* Premium Shadow Effects */
.photo-circle,
.host-dj,
.host-band,
.host-olivia,
.host-fany,
.kahitna-photo img,
.kahitna-logo img {
    /* box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 1px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-circle:hover,
.host-dj:hover,
.host-band:hover,
.host-olivia:hover,
.host-fany:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Elegant Button Hover */
.open-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 0.1);
}

.open-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.open-btn:hover::before {
    width: 300px;
    height: 300px;
}

.open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(201, 169, 97, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
}

/* Gold Accent Lines */
.special-header::after,
.host-by-header::after,
.gallery-header::after,
.venue-title::after,
.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
    margin: 0.5rem auto;
    opacity: 0.8;
}

/* Gallery Hover Effects */
.gallery-item,
.gallery-item-extended,
.gallery-item-third {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before,
.gallery-item-extended::before,
.gallery-item-third::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.1) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before,
.gallery-item-extended:hover::before,
.gallery-item-third:hover::before {
    opacity: 1;
}

.gallery-item:hover,
.gallery-item-extended:hover,
.gallery-item-third:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.gallery-item img,
.gallery-item-extended img,
.gallery-item-third img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img,
.gallery-item-extended:hover img,
.gallery-item-third:hover img {
    transform: scale(1.1);
}

/* Caption Slide Effect */
.gallery-caption {
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-caption,
.gallery-item-extended:hover .gallery-caption,
.gallery-item-third:hover .gallery-caption {
    transform: translateY(0);
}

/* Suggestion Items Premium Effect */
.suggestion-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.suggestion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestion-item:hover::after {
    opacity: 1;
}

.suggestion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 169, 97, 0.2);
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.invited-text,
.event-subtitle,
.dear-text {
    animation: textReveal 1s ease-out;
}

/* Floating Animation untuk Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.suggestion-icon-box svg,
.dresscode-prize svg {
    animation: float 3s ease-in-out infinite;
}

.suggestion-item:nth-child(1) .suggestion-icon-box svg {
    animation-delay: 0s;
}

.suggestion-item:nth-child(2) .suggestion-icon-box svg {
    animation-delay: 0.5s;
}

.suggestion-item:nth-child(3) .suggestion-icon-box svg {
    animation-delay: 1s;
}

.suggestion-item:nth-child(4) .suggestion-icon-box svg {
    animation-delay: 1.5s;
}

/* Pulse Effect untuk QR Code */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(201, 169, 97, 0);
    }
}

.qr-code {
    animation: pulse 2s ease-in-out infinite;
}

/* Premium Gradient Overlays */
.hero-content,
.final-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Luxury Border Glow */
.mobile-wrapper {
    box-shadow: 
        0 0 50px rgba(0, 0, 0, 0.8),
        inset 0 0 100px rgba(201, 169, 97, 0.05);
}

/* Typography Enhancement */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance Optimization */
.gallery-item img,
.gallery-item-extended img,
.gallery-item-third img,
.photo-circle img,
.host-dj,
.host-band,
.host-olivia,
.host-fany {
    will-change: transform;
    transform: translateZ(0);
}

/* Smooth Page Transitions */
.main-page {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-page.active {
    opacity: 1;
    transform: scale(1);
}

/* Elegant section dividers */
.details-section::after,
.venue-section::after,
.suggestions-section::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.5) 50%,
        transparent 100%
    );
    margin: 3rem auto 0;
}

/* Ornamental corners */
.cover-content::before,
.cover-content::after,
.final-content::before,
.final-content::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.cover-content::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.cover-content::after {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.final-content::before {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.final-content::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* ============================================
   ADDITIONAL LUXURY ENHANCEMENTS
   ============================================ */

/* Premium Typography Effects */
.event-name,
.details-title,
.final-title {
    text-shadow: 
        0 0 20px rgba(201, 169, 97, 0.5),
        0 0 40px rgba(201, 169, 97, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Elegant Section Dividers */
.details-section::after,
.venue-section::after,
.suggestions-section::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.5) 50%,
        transparent 100%
    );
    margin: 3rem auto 0;
}

/* Micro-interactions - Smooth cursor hint */
.open-btn,
.suggestion-item,
.gallery-item,
.gallery-item-extended,
.gallery-item-third {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Premium Loading State */
@keyframes shimmerLoad {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-placeholder {
    background: linear-gradient(
        90deg,
        rgba(201, 169, 97, 0.05) 0%,
        rgba(201, 169, 97, 0.15) 50%,
        rgba(201, 169, 97, 0.05) 100%
    );
    background-size: 1000px 100%;
    animation: shimmerLoad 2s infinite;
}

/* Elegant Focus States untuk Accessibility */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Premium Scrollbar */
.mobile-wrapper::-webkit-scrollbar {
    width: 6px;
}

.mobile-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.mobile-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        rgba(201, 169, 97, 0.6),
        rgba(201, 169, 97, 0.3)
    );
    border-radius: 10px;
}

.mobile-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        rgba(201, 169, 97, 0.8),
        rgba(201, 169, 97, 0.5)
    );
}

/* Text Selection Premium Color */
::selection {
    background: rgba(201, 169, 97, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(201, 169, 97, 0.3);
    color: #ffffff;
}

/* Premium Button Gradient Animation */
.open-btn {
    background: linear-gradient(135deg, #C9A961 0%, #E6D5AC 50%, #C9A961 100%);
    background-size: 200% auto;
    animation: buttonGradient 3s ease-in-out infinite;
}

@keyframes buttonGradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Luxury Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(201, 169, 97, 0.5),
        rgba(201, 169, 97, 1),
        rgba(201, 169, 97, 0.5)
    );
    z-index: 9999;
    transition: width 0.2s ease-out;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.8);
}

/* Ornamental Flourishes */
.about-title::before,
.about-title::after {
    content: '✦';
    display: inline-block;
    font-size: 0.6em;
    color: var(--gold);
    margin: 0 0.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Premium Image Load Effect */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: opacity 0.3s ease-in-out;
}

img:not([src]) {
    opacity: 0;
}

/* Elegant Date & Time Typography */
.date,
.time {
    position: relative;
    padding-left: 1.5rem;
}

.date::before {
    content: '📅';
    position: absolute;
    left: 0;
    opacity: 0.8;
}

.time::before {
    content: '🕐';
    position: absolute;
    left: 0;
    opacity: 0.8;
}

/* Premium Map Container */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

/* Luxury Event Details Enhancement */
.details-row {
    position: relative;
}

.details-row::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
    border-radius: 10px;
}

/* QR Code Premium Enhancement */
.qr-code {
    position: relative;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    animation: qrGlow 2s ease-in-out infinite;
}

@keyframes qrGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Dresscode Prize Icon Glow */
.prize-icon {
    position: relative;
}

.prize-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(201, 169, 97, 0.3) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    animation: iconGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ========== CONFETTI EFFECT ========== */
.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    top: -10px;
    z-index: 10000;
    animation: confettiFall linear forwards;
    opacity: 0;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotateZ(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotateZ(720deg);
    }
}

/* ========== ENHANCED TOUCH FEEDBACK ========== */
button, .btn, .open-btn, a {
    -webkit-tap-highlight-color: rgba(201, 169, 97, 0.3);
    touch-action: manipulation;
}

button:active, .btn:active, .open-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* ========== FOCUS VISIBLE FOR ACCESSIBILITY ========== */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default focus for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ========== BACKGROUND MUSIC PLAYER ========== */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9998;
    opacity: 0;
    animation: fadeInMusic 1s ease 2s forwards;
}

@keyframes fadeInMusic {
    to {
        opacity: 1;
    }
}

.music-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #B8935A 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4),
                0 0 30px rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6),
                0 0 40px rgba(201, 169, 97, 0.3);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.music-icon {
    color: var(--white);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.music-icon.hidden {
    display: none;
}

.music-toggle.playing .play-icon {
    display: none;
}

.music-toggle.playing .pause-icon {
    display: block;
}

/* Music wave animation when playing */
.music-toggle.playing::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: musicWave 1.5s ease-out infinite;
}

@keyframes musicWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ========== PERSONAL MESSAGE STYLING ========== */
.personal-greeting {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* ========== RSVP SECTION STYLING ========== */
.rsvp-section {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.rsvp-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.rsvp-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.rsvp-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 0.9rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.rsvp-yes {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    box-shadow: var(--shadow-gold-sm);
}

.rsvp-yes:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-md);
}

.rsvp-yes:active {
    transform: translateY(-1px);
}

.rsvp-no {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: var(--gold);
    border: 2px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rsvp-no:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.rsvp-no:active {
    transform: translateY(-1px);
}

.rsvp-btn svg {
    flex-shrink: 0;
}

.rsvp-btn.confirmed {
    pointer-events: none;
    opacity: 0.7;
}

.rsvp-btn.confirmed::after {
    content: '✓ Confirmed';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #4CAF50;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
}

.rsvp-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
}

.final-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 1px;
}


