/* Banner */
.festival-banner {
    position: relative;
    height: 250px;
}
.festival-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.festival-banner-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.festival-banner-text h1 {
    font-size: 2rem;
    font-weight: 700;
}
.festival-banner-text p {
    font-size: 1rem;
}
.festival-banner-text .btn {
    font-weight: 600;
}

/* Festival Cards Scroll */
.festival-cards {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
}
.festival-card {
    min-width: 180px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.festival-card:hover {
    transform: scale(1.05);
}
.festival-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.festival-card-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 6px;
    text-align: center;
}
.festival-card-text i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

/* Schedule */
.festival-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.schedule-day {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.schedule-date {
    font-weight: 700;
    color: #ff7e5f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.schedule-events .event {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
}
.schedule-events .event:last-child {
    border-bottom: none;
}
.schedule-events .time {
    font-weight: 600;
    color: #333;
    width: 70px;
}
.schedule-events .title {
    color: #555;
    font-weight: 500;
}

/* Scrollbar */
.festival-cards::-webkit-scrollbar {
    height: 6px;
}
.festival-cards::-webkit-scrollbar-thumb {
    background: #ff7e5f;
    border-radius: 3px;
}
