/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.save-date {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.couple-names {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.wedding-date {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.quote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    line-height: 1.4;
    opacity: 0.9;
}

.music-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
}

#musicBtn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#musicBtn:hover {
    background: white;
    color: #333;
}

/* Couple Info Section */
.couple-info {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.couple-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.groom, .bride {
    text-align: center;
}

.groom h3, .bride h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.groom h2, .bride h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
}

.and-symbol {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #d4af37;
}

.family-info {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 40px;
}

.bride-family, .groom-family {
    text-align: center;
}

.bride-family h4, .groom-family h4 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bride-family p, .groom-family p {
    color: #333;
    line-height: 1.8;
}

/* Invitation Section */
.invitation {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.invitation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.event-details {
    max-width: 600px;
    margin: 0 auto;
}

.couple-names-small {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.event-date {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.event-time {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #666;
}

.event-day {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #666;
    text-transform: uppercase;
}

.lunar-date {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #888;
    font-style: italic;
}

.venue {
    margin: 40px 0;
}

.venue h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.venue h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.venue p {
    margin-bottom: 20px;
    color: #666;
}

.direction-btn, .confirm-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.direction-btn:hover, .confirm-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Just Married Section */
.just-married {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.just-married h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.year {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

/* Calendar Section */
.calendar {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.calendar h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.calendar-grid {
    max-width: 400px;
    margin: 0 auto;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.weekdays span {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.days span {
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.days span.highlight {
    background: #d4af37;
    color: white;
    font-weight: bold;
}

/* Countdown Section */
.countdown {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.countdown h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

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

.time-unit span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
}

.time-unit label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    font-size: 2rem;
    color: #d4af37;
    font-weight: bold;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.timeline h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.timeline-items {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    min-width: 100px;
}

.activity {
    flex: 1;
    text-align: left;
    margin-left: 30px;
    color: #333;
}

/* Memories Section */
.memories {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.memories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.memory-actions {
    margin: 30px 0;
}

.memory-btn, .gift-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.memory-btn:hover, .gift-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.memories p {
    max-width: 600px;
    margin: 30px auto 0;
    color: #666;
    line-height: 1.8;
}

/* Love Quote Section */
.love-quote {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.love-quote h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.love-quote p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.date-small {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
}

/* Thank You Section */
.thank-you {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.thank-you h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.thank-you p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Gift Info Section */
.gift-info {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.gift-accounts {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.account {
    text-align: center;
}

.account h4 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.account p {
    color: #666;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .couple-names {
        font-size: 2.5rem;
    }
    
    .save-date {
        font-size: 2rem;
    }
    
    .couple-details {
        flex-direction: column;
        gap: 30px;
    }
    
    .family-info {
        flex-direction: column;
        gap: 40px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .time-unit span {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .activity {
        margin-left: 0;
        text-align: center;
    }
    
    .gift-accounts {
        flex-direction: column;
        gap: 40px;
    }
    
    .music-control {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2rem;
    }
    
    .invitation h2 {
        font-size: 2rem;
    }
    
    .event-date {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
