/* Program Page Specific Styles */
.program-main {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
}

.program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Filter Section */
.filter-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.day-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: white;
    color: #2c3e50;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.filter-btn.active {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.location-filter {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: white;
    color: #2c3e50;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.location-filter:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}



/* Program Content */
.program-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.day-section {
    margin-bottom: 3rem;
    animation: fadeIn 0.5s ease-in-out;
}

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

.day-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.day-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

/* Program Grid */
.program-grid {
    display: grid;
    gap: 1rem;
}

.program-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e74c3c, #c0392b);
    transition: width 0.3s ease;
}

.program-card:hover {
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.program-card:hover::before {
    width: 8px;
}





.program-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    text-align: center;
    padding: 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 0.9rem;
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.program-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.program-location {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e74c3c;
    margin: 0;
}

.program-description {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .program-main {
        margin-top: 120px;
        min-height: calc(100vh - 120px);
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-group {
        justify-content: center;
    }

    .day-filters {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .program-main {
        margin-top: 100px;
        min-height: calc(100vh - 100px);
        padding: 1rem 0;
    }

    .program-container {
        padding: 0 1rem;
    }

    .filter-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .day-filters {
        gap: 0.25rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .location-filter {
        min-width: 150px;
        font-size: 0.8rem;
    }



    .program-content {
        padding: 1.5rem;
    }

    .day-title {
        font-size: 1.5rem;
    }

    .program-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .program-time {
        min-height: auto;
        padding: 0.25rem;
        font-size: 0.8rem;
    }

    .program-title {
        font-size: 1rem;
    }

    .program-location {
        font-size: 0.8rem;
    }

    .program-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .program-container {
        padding: 0 0.5rem;
    }

    .filter-section {
        padding: 1rem;
    }

    .filter-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .location-filter {
        min-width: 120px;
        font-size: 0.75rem;
    }



    .program-content {
        padding: 1rem;
    }

    .day-title {
        font-size: 1.3rem;
    }

    .program-card {
        padding: 0.75rem;
    }

    .program-title {
        font-size: 0.9rem;
    }

    .program-location {
        font-size: 0.75rem;
    }

    .program-description {
        font-size: 0.75rem;
    }
}



/* Loading state */
.program-card.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Status indicators */
.program-card::after {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6c757d;
}



/* Hidden sections */
.day-section.hidden {
    display: none;
}
