/* Schedule Section */
.schedule-card {
    padding: 45px 25px;
    border-radius:  0 100px 0 100px;
    color: white;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.schedule-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-card:hover::after {
    opacity: 1;
}


.schedule-card .schedule-section-text {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.schedule-blue {
    background: linear-gradient(135deg, var(--light-blue), #36a8b5);
}

.schedule-pink {
    background: linear-gradient(135deg, var(--pink), #d67a87);
}

.schedule-yellow {
    background: linear-gradient(135deg, var(--yellow), #e5a510);
}

.schedule-green {
    background: linear-gradient(135deg, var(--green), #8fb015);
}
