/* Collegiate Schedule Page Styles */

/* Base Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.schedule-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('http://localhost:8000/wp-content/uploads/2025/07/DSC00113-1-1-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
}

.schedule-hero h1 {
    font-size: 3.5em;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.schedule-hero h1 i {
    margin-right: 15px;
    color: #7EADED;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

/* Watch Now Button */
.watch-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #7EADED, #4A90E2);
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(126, 173, 237, 0.3);
    margin-top: 20px;
}

.watch-now-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #4A90E2, #7EADED);
    box-shadow: 0 6px 20px rgba(126, 173, 237, 0.4);
    border-color: #4A90E2;
}

.watch-now-btn i {
    font-size: 1.3em;
    color: #FF0000;
}

/* Schedule Section */
.schedule-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.schedule-card {
    background: #000;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.schedule-card h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7EADED;
}

.schedule-card h2 i {
    margin-right: 15px;
}

.schedule-note {
    text-align: center;
    color: #ccc;
    font-style: italic;
    margin: 20px 0;
}

.day-schedule {
    margin-bottom: 40px;
}

.day-schedule:last-child {
    margin-bottom: 0;
}

.day-schedule h3 {
    color: #7EADED;
    font-size: 1.6em;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.schedule-grid {
    display: grid;
    gap: 15px;
}

.event {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateX(10px);
}

.event.livestream {
    border-left: 3px solid #7EADED;
}

.time {
    font-weight: 600;
    color: #7EADED;
}

.description {
    padding: 0 20px;
}

.badge {
    background: #7EADED;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Collapsible Day Schedule Styles */
.day-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(126, 173, 237, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(126, 173, 237, 0.2);
}

.day-header:hover {
    background: rgba(126, 173, 237, 0.2);
    transform: translateX(5px);
}

.day-header span {
    font-size: 1.3em;
    color: #7EADED;
    font-weight: 600;
}

.toggle-icon {
    color: #7EADED;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.collapsible-content {
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    max-height: 1000px; /* Default expanded state */
    padding: 15px;
}

.day-schedule.collapsed .collapsible-content {
    max-height: 0;
    padding: 0 15px;
}

/* Livestream Link Styles */
.livestream-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.livestream-link:hover {
    background: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 173, 237, 0.3);
}

.livestream-link:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .schedule-hero h1 {
        font-size: 3em;
    }

    .schedule-card h2 {
        font-size: 2em;
    }

    .event {
        grid-template-columns: 100px 1fr auto;
    }
}

@media (max-width: 768px) {
    .schedule-hero {
        padding: 60px 0;
    }

    .schedule-hero h1 {
        font-size: 2.5em;
    }
    
    .watch-now-btn {
        padding: 14px 28px;
        font-size: 1.15em;
        gap: 10px;
    }

    .schedule-card {
        padding: 30px;
    }

    .schedule-card h2 {
        font-size: 1.8em;
    }

    .event {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .time, .description, .badge {
        padding: 5px 0;
    }

    .badge {
        justify-self: center;
    }

    .event.livestream {
        border-left: none;
        border-top: 3px solid #7EADED;
    }
    
    .day-header {
        padding: 12px 15px;
    }
    
    .day-header span {
        font-size: 1.2em;
    }
    
    .toggle-icon {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .schedule-hero h1 {
        font-size: 2em;
    }

    .schedule-hero h1 i {
        margin-right: 10px;
    }

    .intro-text {
        font-size: 1.1em;
    }
    
    .watch-now-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .schedule-card {
        padding: 20px;
    }

    .schedule-card h2 {
        font-size: 1.6em;
    }

    .schedule-card h2 i {
        margin-right: 10px;
    }

    .day-schedule h3 {
        font-size: 1.4em;
    }

    .event {
        padding: 12px;
    }

    .time {
        font-size: 0.9em;
    }

    .description {
        font-size: 0.9em;
        padding: 8px 0;
    }

    .badge {
        font-size: 0.8em;
        padding: 4px 8px;
    }
    
    .day-header {
        padding: 10px 12px;
    }
    
    .day-header span {
        font-size: 1.0em;
    }
    
    .toggle-icon {
        font-size: 1em;
    }
    
    .collapsible-content {
        padding: 12px;
    }
    
    .day-schedule.collapsed .collapsible-content {
        padding: 0 12px;
    }
}
