/* ==========================================================================
   COLOR PALETTE & CSS VARIABLES
   ========================================================================== */
:root {
    --dusty-pink: #d8a7b1;
    --soft-pink: rgba(244, 227, 230, 0.85);
    --rose-pink: #e88a99;
    --deep-rose: #b55263;
    --cream: #fcf8f6;
    --gold: #d4af37;
    --light-gold: #f3e5ab;
    --text-dark: #4a3e3d;
    --text-muted: #7d6b6d;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(181, 82, 99, 0.12);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASIC STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    /* Menggunakan background.jpg sebagai latar belakang seluruh halaman */
    background: url('assets/images/background.jpg') center/cover fixed no-repeat;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, .title, .subtitle, .couple-names, .footer-title {
    font-family: 'Playfair Display', serif;
}

.subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--deep-rose);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 25px auto;
    width: 150px;
}

.gold-divider::before, .gold-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gold);
}

.gold-divider span {
    padding: 0 10px;
    color: var(--gold);
    font-size: 0.9rem;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    background: rgba(252, 248, 246, 0.88); /* Overlay transparan tipis agar teks tetap terbaca di atas bg.jpg */
    backdrop-filter: blur(3px);
}

.bg-soft {
    background: rgba(244, 227, 230, 0.90);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--rose-pink) 0%, var(--deep-rose) 100%);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(181, 82, 99, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 82, 99, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-rose);
    border: 1.5px solid var(--rose-pink);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}

.btn-secondary:hover {
    background-color: var(--rose-pink);
    color: var(--white);
}

/* ==========================================================================
   1. COVER OPENING
   ========================================================================== */
.cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
    overflow: hidden;
}

.cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/background.jpg') center/cover no-repeat;
    filter: brightness(0.85);
    transform: scale(1.05);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(244, 227, 230, 0.4), rgba(74, 62, 61, 0.7));
}

.cover-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 20px;
    max-width: 500px;
    width: 100%;
}

.cover .subtitle {
    color: var(--light-gold);
}

.main-frame {
    width: 170px;
    height: 230px;
    margin: 20px auto;
    border-radius: 120px 120px 0 0;
    border: 3px solid var(--gold);
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 115px 115px 0 0;
}

.cover .title {
    font-family: 'Sacramento', cursive;
    font-size: 3.5rem;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.guest-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.guest-box p {
    font-size: 0.85rem;
    font-weight: 300;
}

.guest-box h3 {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-top: 5px;
}

.cover.slide-up {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   OPENING / AWALAN SECTION
   ========================================================================== */
.opening-card {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
}

.opening-bismillah {
    font-size: 1.8rem;
    color: var(--deep-rose);
    margin-bottom: 15px;
    font-family: serif;
}

.opening-salam {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.opening-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==========================================================================
   2. MUSIC PLAYER & 3. FLOATING HEARTS
   ========================================================================== */
.music-btn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--text-dark);
    border: none;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .music-btn {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}

.music-btn.playing {
    animation: rotateMusic 4s linear infinite;
}

@keyframes rotateMusic {
    100% { transform: rotate(360deg); }
}

#heart-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 998;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    color: var(--rose-pink);
    opacity: 0;
    animation: floatHeart 6s linear forwards;
}

@keyframes floatHeart {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */
/* Desktop Navbar */
.desktop-nav {
    display: none;
    position: sticky;
    top: 0;
    background: rgba(252, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 50px;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav .nav-brand {
    font-family: 'Sacramento', cursive;
    font-size: 2rem;
    font-weight: bold;
    color: var(--deep-rose);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    position: relative;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--deep-rose);
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--deep-rose);
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
}

/* Mobile Bottom Nav */
.mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid var(--soft-pink);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.mobile-nav-item .icon {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.mobile-nav-item.active {
    color: var(--deep-rose);
    font-weight: 600;
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

/* ==========================================================================
   5. MEMPELAI (COUPLE)
   ========================================================================== */
.couple-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .couple-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
}

.couple-card {
    text-align: center;
    max-width: 320px;
    width: 100%;
}

.couple-card .img-frame {
    width: 200px;
    height: 260px;
    margin: 0 auto 20px auto;
    border-radius: 100px 100px 0 0;
    border: 3px solid var(--gold);
    padding: 8px;
    box-shadow: var(--shadow-soft);
    background: var(--white);
}

.couple-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 92px 92px 0 0;
}

.couple-card h3 {
    font-size: 1.6rem;
    color: var(--deep-rose);
    margin-bottom: 8px;
}

.couple-card .parents {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ampersand {
    font-family: 'Sacramento', cursive;
    font-size: 4rem;
    color: var(--gold);
    margin: 10px 0;
}

/* ==========================================================================
   6. KATA CINTA (QUOTE)
   ========================================================================== */
.quote-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid var(--soft-pink);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--dusty-pink);
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.couple-names {
    font-family: 'Sacramento', cursive;
    font-size: 2.2rem;
    color: var(--deep-rose);
}

.wedding-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   7. LOVE STORY (TIMELINE)
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 0 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--dusty-pink);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 40px;
        text-align: left;
    }
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rose-pink);
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}

@media (min-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-dot {
        right: -10px;
        left: auto;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.92);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
}

.timeline-content .date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--deep-rose);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8. COUNTDOWN & 9. ACARA
   ========================================================================== */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 50px auto;
}

.countdown-box {
    background: var(--white);
    width: 70px;
    height: 75px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gold);
}

@media (min-width: 768px) {
    .countdown-box {
        width: 90px;
        height: 95px;
    }
}

.countdown-box span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-rose);
}

@media (min-width: 768px) {
    .countdown-box span {
        font-size: 2rem;
    }
}

.countdown-box small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.events-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 850px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .events-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.event-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
    position: relative;
    overflow: hidden;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--soft-pink);
    color: var(--deep-rose);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.event-icon {
    font-size: 2rem;
    color: var(--rose-pink);
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.event-date, .event-time {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.event-location {
    margin: 15px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   10. GALERI
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    border: 2px solid var(--white);
}

@media (min-width: 768px) {
    .gallery-item {
        height: 240px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

/* ==========================================================================
   11. LIVE STREAMING
   ========================================================================== */
.live-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.live-pulse {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff0000;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.live-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 15px;
}

.live-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 15px 0 25px 0;
}

/* ==========================================================================
   12. WEDDING GIFT
   ========================================================================== */
.gift-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.gift-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gift-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.gift-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
}

.bank-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--deep-rose);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.account-number {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.account-holder {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-copy {
    background: var(--soft-pink);
    color: var(--deep-rose);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    background: var(--rose-pink);
    color: var(--white);
}

/* Toast Notif */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(74, 62, 61, 0.9);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    z-index: 10000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==========================================================================
   13. RSVP & UCAPAN
   ========================================================================== */
.rsvp-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .rsvp-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.rsvp-form {
    background: rgba(255, 255, 255, 0.92);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dusty-pink);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    background: var(--cream);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--deep-rose);
    background: var(--white);
}

.btn-block {
    width: 100%;
}

.wishes-box {
    background: rgba(255, 255, 255, 0.92);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--soft-pink);
    max-height: 480px;
    display: flex;
    flex-direction: column;
}

.wishes-box h3 {
    font-size: 1.1rem;
    color: var(--deep-rose);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--soft-pink);
}

.wishes-container {
    overflow-y: auto;
    padding-right: 5px;
    flex: 1;
}

.wish-item {
    padding: 12px 0;
    border-bottom: 1px dashed var(--soft-pink);
}

.wish-item:last-child {
    border-bottom: none;
}

.wish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.wish-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.wish-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.badge-hadir { background: #e8f5e9; color: #2e7d32; }
.badge-ragu { background: #fff8e1; color: #f57f17; }
.badge-tidak { background: #ffebee; color: #c62828; }

.wish-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wish-time {
    font-size: 0.7rem;
    color: #a09092;
    margin-top: 3px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: rgba(74, 62, 61, 0.95);
    color: var(--white);
    padding: 50px 0 80px 0;
}

@media (min-width: 992px) {
    .footer {
        padding: 50px 0;
    }
}

.footer-title {
    font-family: 'Sacramento', cursive;
    font-size: 3rem;
    color: var(--light-gold);
    margin-bottom: 10px;
}

.footer-quote {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

.footer-date {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 15px;
}

/* ==========================================================================
   14. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.fade-up {
    transform: translateY(40px);
}

.reveal.slide-left {
    transform: translateX(-50px);
}

.reveal.slide-right {
    transform: translateX(50px);
}

.reveal.zoom-in {
    transform: scale(0.85);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}
/* ==========================================================================
   HERO / HEADER AWAL NAMA PENGANTIN (FULLSCREEN)
   ========================================================================== */
.hero-section {
    min-height: 100vh; /* Membuat 1 layar penuh */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(180deg, rgba(253,246,243,0.3) 0%, rgba(253,246,243,0.8) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    font-family: 'Sacramento', cursive;
    font-size: 4rem;
    color: var(--deep-rose);
    margin: 15px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-tagline {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Panah Melayang ke Bawah */
.scroll-down-btn {
    display: inline-block;
    margin-top: 40px;
    font-size: 1.5rem;
    color: var(--gold);
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-down-btn:hover {
    color: var(--deep-rose);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}