/* Schedule Page Styles */
.schedule-content {
    padding: 8rem 0 5rem;
    position: relative;
    min-height: 100vh;
}

/* Background styles */
.schedule-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background.jpeg') center/cover;
    z-index: -1;
}

[data-theme="light"] .schedule-content::before {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../images/background.jpeg') center/cover;
}

/* Title Styles */
.schedule-title {
    color: var(--text-color);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.schedule-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.schedule-subtitle {
    color: var(--text-color);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Calendar Section Styles */
.calendar-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calendar-container {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.calendar-container iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
}

.calendar-info {
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 10px;
}

.calendar-info h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.calendar-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.calendar-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.calendar-info li:last-child {
    margin-bottom: 0;
}

.calendar-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Schedule Section */
.schedule-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
}

.coming-soon {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-content {
        padding: 2rem 0;
    }

    .schedule-title {
        font-size: 2rem;
    }

    .calendar-section {
        padding: 1rem;
    }

    .calendar-container iframe {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .schedule-title {
        font-size: 1.75rem;
    }

    .calendar-container iframe {
        height: 400px;
    }

    .calendar-info {
        padding: 1rem;
    }

    .schedule-section {
        padding: 2rem 1rem;
    }

    .coming-soon {
        font-size: 1.2rem;
    }
} 