/* Schedule Page Specific Styles */

/* Header Override */
.schedule-header {
    background-color: var(--primary-bg);
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--text-body);
}

.schedule-header::before {
    display: none;
}

.main-schedule-title {
    position: relative;
    z-index: 2;
    font-size: 6rem;
    color: var(--text-gold);
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Schedule Content */
.schedule-section {
    padding: 6rem 15%; /* More padding for menu look */
    background-color: var(--primary-bg);
}

.day-container {
    margin-bottom: 6rem;
    padding: 0;
    text-align: center;
}

.day-title {
    font-family: var(--font-heading);
    color: var(--text-gold);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--text-gold);
    display: inline-block;
    width: 60%; /* Not full width, like a menu divider */
    position: relative;
    letter-spacing: 0.1em;
}

/* Add a decorative touch for the double line feel if desired, but single is clean */
.day-title::after {
    content: '';
    display: block;
    width: 40%;
    margin: 0.5rem auto 0;
    height: 1px;
    background-color: var(--text-body);
    opacity: 0.3;
}

.day-subtitle {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 3rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

/* Stack the time and event for centering */
.schedule-table tr {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(184, 142, 78, 0.3); /* Subtle gold separator */
}

/* Remove border from last item? Menu usually has regular spacing */
.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    display: block;
    padding: 0.5rem 0;
    text-align: center;
    width: 100%;
}

.time-col {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-col {
    font-family: var(--font-heading); /* Cinzel for classic menu look */
    font-size: 1.3rem;
    color: var(--text-body);
}

.options-list {
    list-style-type: none; /* Remove numbering for cleaner look */
    padding: 0;
    margin-top: 1rem;
    font-family: var(--font-body);
    color: var(--text-body);
}

.options-list li {
    margin-bottom: 0.8rem;
    position: relative;
}

/* Short dash for list items */
.options-list li::before {
    content: '—';
    margin-right: 0.5rem;
    color: var(--text-gold);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .schedule-header {
        height: 50vh;
    }

    .main-schedule-title {
        font-size: 2.5rem; /* Copied from prev responsive, adjust if main title changed size */
    }
    
    .day-title {
        width: 100%;
    }

    .schedule-section {
        padding: 4rem 5%;
    }
}

/* Desktop Navbar Color Override for Schedule Page - improves readability on light bg */
@media screen and (min-width: 769px) {
    .nav-link {
        color: var(--text-body) !important;
    }
}
