* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #FDFBF7;
}

/* Section styling */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 80px; /* extra space for scroll indicator */
    text-align: center;
    position: relative; /* anchor scroll-indicator per section */
}

/* Section 1 - Pembuka */
#section1 {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC4 100%);
    color: #4A4A4A;
}

#section1 h1 {
    font-size: 1.4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
    color: #8B7355;
}

#section1 .couple-names {
    font-size: 4.5em;
    font-weight: 400;
    margin: 30px 0;
    color: #6B5B3F;
    letter-spacing: 2px;
    line-height: 1.3;
}

#section1 .dear {
    font-size: 1.2em;
    margin: 40px 0 10px 0;
    font-style: italic;
    color: #8B7355;
    font-weight: 300;
}

#section1 .guest-name {
    font-size: 1.8em;
    font-weight: 500;
    margin: 10px 0 40px 0;
    color: #6B5B3F;
}

#section1 .open-invitation {
    font-size: 1em;
    margin-top: 50px;
    padding: 14px 45px;
    background: transparent;
    border-radius: 12px;
    border: 1.5px solid #8B7355;
    color: #8B7355;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

#section1 .open-invitation:hover {
    background: #8B7355;
    color: #FDFBF7;
}

/* Section 2 - Tanggal & Lokasi */
#section2 {
    background: #FDFBF7;
    color: #4A4A4A;
}

#section2 h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #6B5B3F;
    font-weight: 400;
    letter-spacing: 3px;
}

.info-box {
    background: #FFF;
    padding: 40px 35px;
    border-radius: 12px;
    margin: 18px 0;
    width: 80vw;
    max-width: 540px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    border: 1px solid #E8DCC4;
}

.map-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.95em;
    color: #8B7355;
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 115, 85, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.map-link:hover {
    color: #6B5B3F;
    border-color: rgba(107, 91, 63, 0.7);
}

.info-box h3 {
    font-size: 1.6em;
    color: #6B5B3F;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #6A6A6A;
}

.info-box .date-time {
    font-size: 1.4em;
    font-weight: 400;
    color: #8B7355;
    margin: 15px 0 8px 0;
}

.info-box .time {
    font-size: 1em;
    color: #8B7355;
    font-style: normal;
    margin-bottom: 20px;
}

.info-box .venue-name {
    font-size: 1.3em;
    font-weight: 500;
    color: #6B5B3F;
    margin: 20px 0 10px 0;
}

.info-box .address {
    font-size: 1em;
    color: #8A8A8A;
    margin: 3px 0;
    font-weight: 300;
}

/* Section 3 - Kado */
#section3 {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC4 100%);
    color: #4A4A4A;
}

#section3 h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #6B5B3F;
    font-weight: 400;
    letter-spacing: 3px;
}

.gift-box {
    background: #FFF;
    padding: 45px 40px;
    border-radius: 12px;
    max-width: 480px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #E8DCC4;
}

.gift-box p {
    font-size: 1.1em;
    line-height: 1.9;
    color: #6A6A6A;
    margin-bottom: 20px;
}

.gift-box .gift-intro {
    font-size: 1.05em;
    color: #8B7355;
    margin-bottom: 35px;
    font-style: normal;
    font-weight: 300;
}

.gift-box .gift-note {
    font-size: 1.1em;
    color: #6B5B3F;
    margin-top: 35px;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 400;
}

.gift-box .gift-thanks {
    font-size: 1.15em;
    font-weight: 500;
    color: #8B7355;
    margin-top: 15px;
}

.qris-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 30px auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #E8DCC4;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '⌄';
    font-size: 2.5em;
    color: #8B7355;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #section1 h1 {
        font-size: 1.1em;
        letter-spacing: 3px;
    }
    
    #section1 .couple-names {
        font-size: 3.2em;
        margin: 20px 0;
    }
    
    #section1 .dear {
        font-size: 1em;
        margin: 30px 0 8px 0;
    }
    
    #section1 .guest-name {
        font-size: 1.4em;
    }
    
    #section1 .open-invitation {
        font-size: 0.9em;
        padding: 12px 35px;
    }
    
    #section2 h2, #section3 h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .info-box, .gift-box {
        padding: 30px 25px;
    }
    
    .info-box h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 360px) {
    #section1 .couple-names {
        font-size: 2.8em;
    }
}
