/* RSVP Section Styles */
.rsvp-section {
    height: 100vh;
    background: linear-gradient(135deg, #5A3D6B 0%, #8B5FBF 100%);
    color: var(--white);
    display: flex;
    align-items: center;
}

.rsvp-section .section-title::after {
    background: var(--silver);
}

.event-info {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* Countdown Timer */
.countdown-section {
    text-align: center;
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 600px;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    min-width: 90px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.time-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.time-value {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.time-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.rsvp-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    text-align: center;
}

.rsvp-toggle-button {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.rsvp-toggle-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.rsvp-toggle-button:hover::before {
    width: 300px;
    height: 300px;
}

.rsvp-toggle-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 60px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.rsvp-button-text {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 8px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rsvp-button-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

@media (max-width: 991px) {
    .rsvp-container {
        padding: 2rem 1.5rem;
    }
    
    .event-info {
        font-size: 0.9rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .time-box {
        min-width: 70px;
        padding: 1.25rem 0.75rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.65rem;
    }
    
    .rsvp-toggle-button {
        padding: 2.5rem 1.5rem;
    }
    
    .rsvp-button-text {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .rsvp-button-subtext {
        font-size: 0.85rem;
    }
}
