/* Program section styles */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f1f1f1;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.program-content {
    max-width: 800px;
    margin: 0 auto;
}

.program-content.hidden {
    display: none;
}

.program-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.time-block {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time {
    font-weight: 600;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: 0.5rem;
}

.event-description {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.location-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    background-color: #ff7675;
}

.location-tag.green {
    background-color: #00b894;
}

.location-tag.blue {
    background-color: #0984e3;
}

.festival-info {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--border-radius);
}

.festival-info h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.festival-info div {
    margin: 0.5rem 0;
    color: var(--text-muted);
}

/* Responsive styles */
@media (max-width: 768px) {
    .program-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .time-block {
        min-width: auto;
    }
}
