/* wedding-schedule.css */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --wsd-bg: #e4efe5;
    --wsd-accent-green: #6b9b78;
    --wsd-light-sage: #a7c4a0;
    --wsd-dark-green: #355e3b;
    --wsd-cream: #f8faf6;
    --wsd-gold: #c7a54b;
    --wsd-shadow: 0 15px 35px rgba(53, 94, 59, 0.1);
}

.wsd-main-layout {
    background-color: var(--wsd-bg);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
    box-shadow: inset 0 20px 30px -20px rgba(0, 0, 0, 0.05);
}

/* Header */
.wsd-main-header {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    color: var(--wsd-dark-green);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.wsd-main-header.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Row Wrapper */
.wsd-row-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

/* Event Panel Card */
.wsd-event-panel {
    background-color: var(--wsd-cream);
    border-radius: 30px;
    padding: 40px 30px;
    width: 400px;
    box-shadow: var(--wsd-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.wsd-event-panel.reveal {
    opacity: 1;
    transform: translateY(0);
}

.wsd-event-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(53, 94, 59, 0.15);
}

/* Illustration Styling */
.wsd-couple-img {
    width: 180px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.wsd-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--wsd-dark-green);
    margin-bottom: 10px;
}

.wsd-event-time {
    font-size: 1.2rem;
    color: var(--wsd-accent-green);
    font-weight: 600;
    letter-spacing: 1px;
}

.wsd-event-subtext {
    font-style: italic;
    color: var(--wsd-light-sage);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Date Ribbon */
.wsd-date-ribbon {
    background-color: var(--wsd-dark-green);
    color: var(--wsd-gold);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 15px;
    margin: 30px 0 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wsd-date-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
}

.wsd-date-block {
    font-size: 2rem;
    font-weight: 700;
}

.wsd-date-divider {
    width: 2px;
    height: 30px;
    background-color: var(--wsd-gold);
    opacity: 0.5;
}

.wsd-day-text {
    display: block;
    font-size: 1.1rem;
    color: var(--wsd-accent-green);
    margin-top: 5px;
    font-style: italic;
}

/* Location Area */
.wsd-location-area {
    margin: 10px 0 60px;
    color: var(--wsd-dark-green);
}

.wsd-loc-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: inline-block;
    color: var(--wsd-gold);
}

.wsd-venue-name {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wsd-city-name {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Styles — Mobile Only */
@media (max-width: 768px) {

    .wsd-main-header {
        font-size: 2.5rem;
        margin-bottom: 0px;
    }

    /* Keep Engagement + Reception side-by-side */
    .wsd-row-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 0px;
    }

    /* Remove white card — transparent, no shadow, no border */
    .wsd-event-panel {
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 12px 8px;
        width: calc(50% - 8px);
        max-width: 180px;
    }

    .wsd-event-panel:hover {
        transform: none;
        box-shadow: none;
    }

    .wsd-couple-img {
        width: 110px;
        margin-bottom: 10px;
    }

    .wsd-event-title {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .wsd-event-time {
        font-size: 0.82rem;
    }

    .wsd-event-subtext {
        font-size: 0.75rem;
    }

    .wsd-date-block {
        font-size: 1.4rem;
    }

    .wsd-date-ribbon {
        padding: 10px 20px;
        margin: 0px 0 0px;
    }
    .wsd-main-layout {
    background-color: var(--wsd-bg);
    padding: 20px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
    box-shadow: inset 0 20px 30px -20px rgba(0, 0, 0, 0.05);
}
.wsd-location-area {
    margin: 10px 0 0px;
    color: var(--wsd-dark-green);
}
.wsd-loc-icon {
    display: none;
  
}

}