/* schedule.css */
* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('../images/maggieBG.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #111;
}

.schedule-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px;
    background-color: rgba(245, 245, 245, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Carousel Styles */
.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 25px 5px;
    margin-bottom: 30px;
    scrollbar-width: thin; /* Firefox */
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for Chrome/Safari */
.carousel-container::-webkit-scrollbar { height: 6px; }
.carousel-container::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

.carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.4);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.5);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

/* Navigation & Lineup Styles */
header h1 { text-align: center; margin-bottom: 25px; text-transform: uppercase; }
header h2 { text-align: center; margin-bottom: 18px; text-transform: uppercase; }
header h3 { text-align: center; margin-bottom: 9px; text-transform: uppercase; }

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #222;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
}

.filter-btn.active { background: #222; color: #fff; }

.day-header {
    background: rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    border-left: 6px solid #222;
    margin: 30px 0 15px 0;
}

.lineup-row {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.artist-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.artist-name { font-weight: 800; font-size: 1.2rem; display: block; }
.time-slot { font-size: 0.85rem; font-weight: 600; color: #444; }
.artist-description { margin-top: 8px; font-size: 0.95rem; line-height: 1.4; }

@media (max-width: 600px) {
    .lineup-row { flex-direction: column; align-items: center; text-align: center; }
    .carousel-item { flex: 0 0 85%; } /* Larger on mobile */
}