/* Lineup Schedule Styles */

.lineup-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lineup-schedule__stage {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lineup-schedule__stage:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lineup-schedule__stage-title {
    color: var(--orange-100);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--orange-100);
    padding-bottom: 10px;
}

.lineup-schedule__events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lineup-schedule__event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--orange-100);
    transition: all 0.3s ease;
}

.lineup-schedule__event:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.lineup-schedule__time {
    color: var(--beige-100);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: left;
}

.lineup-schedule__artist {
    color: var(--beige-100);
    font-weight: 500;
    font-size: 1rem;
    text-align: right;
    flex: 1;
    margin-left: 15px;
}

/* Artist Lightbox Schedule Styles */
.modal__artist-lightbox-schedule {
    margin-bottom: 20px;
}

.artist-schedule-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 92, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--orange-100);
}

.artist-stage {
    color: var(--orange-100);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-time {
    color: var(--dark-brown-100);
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lineup-schedule {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        padding: 20px;
    }
    
    .lineup-schedule__stage {
        padding: 20px;
    }
    
    .lineup-schedule__stage-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .lineup-schedule__event {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px;
    }
    
    .lineup-schedule__time {
        min-width: auto;
        font-size: 0.85rem;
        color: var(--orange-100);
    }
    
    .lineup-schedule__artist {
        text-align: left;
        margin-left: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .lineup-schedule {
        margin: 20px 0;
        padding: 15px;
    }
    
    .lineup-schedule__stage {
        padding: 15px;
    }
    
    .lineup-schedule__stage-title {
        font-size: 1.1rem;
    }
    
    .lineup-schedule__event {
        padding: 12px;
    }
}
