/* Schedule Page Styles */

.schedule-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.schedule-container {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    position: relative;
}

.schedule-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    z-index: -1;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
}

.schedule-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 2.5rem;
}

.calendar-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.1);
}

.calendar-wrapper iframe {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-page {
        padding: 2rem 1rem;
    }
    
    .schedule-container {
        padding: 2rem 1.5rem;
    }
    
    .schedule-container::before {
        display: none;
    }
    
    .calendar-wrapper iframe {
        height: 700px;
    }
}

@media (max-width: 480px) {
    .schedule-container {
        padding: 1.5rem 1rem;
    }
}
