/* Page Header Styles */
.page-header {
    background: url('img/main_banner1.png') center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 6rem 0 3rem;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Program Content Styles */
.program-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
}

.schedule-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #fbbf24 100%);
}

.schedule-header {
    text-align: center;
    margin-bottom: 3rem;
}

.schedule-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.schedule-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #fbbf24 100%);
    border-radius: 1px;
}

.schedule-decoration i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Schedule Table Styles */
.schedule-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 2px solid #000;
}

.schedule-table th,
.schedule-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid #000;
    vertical-align: middle;
    min-height: 80px;
}

.schedule-table th {
    background: #000;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
}

.venue-header {
    text-align: center;
    font-weight: 600;
}

/* Event Cell Styles */
.event-cell {
    position: relative;
    background: white;
    color: #000;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.event-cell.empty {
    background: white;
    color: #666;
}

.event-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.event-title {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.event-dash {
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
}

/* Long Event Styles */
.event-cell.long-event {
    background: white;
    color: #000;
}

.event-cell.closing {
    background: white;
    color: #000;
    font-weight: 600;
}

/* Schedule Note */
.schedule-note {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
    margin-top: 2rem;
}

.schedule-note p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-note i {
    color: #fbbf24;
}

/* Active Navigation Link */
.dropdown-menu li a.active {
    background: #1e3a8a;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .schedule-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .schedule-title {
        font-size: 2rem;
    }
    
    .venue-header {
        font-size: 1rem;
    }
    
    .event-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .schedule-card {
        padding: 1.5rem;
    }
    
    .schedule-title {
        font-size: 1.8rem;
    }
    
    .schedule-table {
        font-size: 0.8rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .schedule-table th {
        font-size: 0.7rem;
    }
    
    .venue-header {
        font-size: 0.7rem;
        padding: 1rem 0.5rem;
    }
    
    .event-title {
        font-size: 0.8rem;
    }
    
    .event-time {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .schedule-card {
        padding: 1rem;
    }
    
    .schedule-title {
        font-size: 1.6rem;
    }
    
    .schedule-table {
        font-size: 0.7rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .schedule-table th {
        font-size: 0.6rem;
    }
    
    .venue-header {
        font-size: 0.6rem;
        padding: 0.75rem 0.25rem;
    }
    
    .event-title {
        font-size: 0.7rem;
    }
    
    .event-time {
        font-size: 0.6rem;
    }
    
    .event-dash {
        font-size: 1rem;
    }
}

/* Animation Effects */
.schedule-card {
    animation: fadeInUp 0.8s ease-out;
}

.schedule-table {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.schedule-note {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 