/* =========================================
   ORIENTATION SCHEDULE STYLES (Optimized)
   ========================================= */

/* --- 1. Hero Section --- */
.hero-centered {
    background-color: var(--deep-blue);
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px; /* Reduced height */
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}

.hero-centered h1 {
    color: var(--white);
    font-family: var(--font-serif);
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(62, 92, 154, 0.15) 0%, rgba(42, 64, 104, 0) 70%);
    z-index: 1;
    pointer-events: none;
}
.hero-content-wrapper-center { z-index: 2; position: relative; }

/* --- 2. Search Bar --- */
.schedule-controls {
    max-width: 800px;
    margin: -30px auto 40px; /* Overlap hero */
    position: relative;
    z-index: 20;
    padding: 0 20px;
}

.search-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-icon {
    color: var(--primary-blue);
    margin-left: 15px;
    font-size: 1.1rem;
}

.schedule-search {
    border: none;
    width: 100%;
    padding: 10px 15px;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--text-grey);
}

/* --- 3. Masonry Layout (Space Saver) --- */
.schedule-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    /* CSS Columns for Masonry Effect */
    column-count: 2; 
    column-gap: 30px;
}

/* --- 4. Day Card --- */
.day-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px; /* Space between items in column */
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    /* Prevent card from splitting across columns */
    break-inside: avoid; 
    page-break-inside: avoid;
    display: inline-block; /* Fix for some browsers to respect break-inside */
    width: 100%;
}

.day-header {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 20px; /* Compact padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-date {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
}

.day-weekday {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* --- 5. Event List (Compact) --- */
.event-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.event-item {
    display: flex;
    padding: 15px 20px; /* Reduced from 25px */
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.event-item:last-child { border-bottom: none; }
.event-item:hover { background-color: #fafbff; }

/* Time Column */
.event-time {
    flex: 0 0 110px; /* Narrower width */
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.85rem;
    padding-right: 15px;
    border-right: 2px solid #f0f0f0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

/* Details Column */
.event-details { flex: 1; }

.event-name {
    font-size: 1rem; /* Slightly smaller */
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 4px;
    line-height: 1.3;
}

.event-speaker {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 6px;
    display: block;
}

/* Venue Badge */
.event-venue {
    display: inline-block;
    background-color: #f0f4f8;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.event-venue i {
    margin-right: 5px;
    color: var(--primary-blue);
}

/* --- 6. Sub-sections --- */
.sub-header {
    background-color: #eef2ff;
    color: var(--deep-blue);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #e0e0e0;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .schedule-container {
        column-count: 1; /* Single column on tablets/mobile */
    }
}

@media (max-width: 768px) {
    .hero-centered { padding-top: 120px; min-height: 250px; }
    
    .event-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .event-time {
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 5px;
        margin-bottom: 8px;
        margin-right: 0;
        width: 100%;
        color: #888;
    }
}