
/* Premium Banner Carousel - District.in Style */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 440px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.banner-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-item {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
    color: #121620;
    width: 100%;
    box-sizing: border-box;
}

.banner-item__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-item__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(60px) opacity(0.12);
}

.banner-item__left {
    flex: 1;
    position: relative;
    z-index: 10;
    padding-right: 40px;
}

.banner-item__left .date {
    font-size: 13px;
    font-weight: 700;
    color: #5e6777;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.banner-item__left h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #2563EB; /* Mumbai Indians blue */
}

.banner-item__left .venue {
    font-size: 20px;
    font-weight: 600;
    color: #3d4553;
    margin-bottom: 8px;
}

.banner-item__left .price {
    font-size: 16px;
    font-weight: 700;
    color: #121620;
    margin-bottom: 32px;
}

.banner-item__left .book-btn {
    display: inline-block;
    background: #2563EB; /* Mumbai Indians blue */
    color: #fff;
    padding: 15px 36px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 12px 24px rgba(0,87,184,0.16);
}

.banner-item__left .book-btn:hover {
    background: #004aa3;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,87,184,0.18);
}

.banner-item__right {
    flex: 0 0 300px;
    position: relative;
    z-index: 10;
}

.banner-item__right img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Navigation Controls */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 20;
    border: 1px solid rgba(0,0,0,0.05);
    color: #121620;
    transition: all 0.2s;
}

.banner-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.banner-arrow--prev { left: 24px; }
.banner-arrow--next { right: 24px; }

.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 80px; /* Aligned with left content */
    display: flex;
    gap: 8px;
    z-index: 20;
}

.banner-dot {
    width: 8px;
    height: 4px;
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-dot.is-active {
    background: #121620;
    width: 40px;
}

@media (max-width: 1024px) {
    .banner-item { padding: 0 60px; }
    .banner-dots { left: 60px; }
}

@media (max-width: 850px) {
    .banner-carousel { height: auto; padding: 60px 20px; }
    .banner-item { flex-direction: column-reverse; text-align: center; padding: 0; }
    .banner-item__left { padding-right: 0; margin-top: 32px; }
    .banner-item__left h2 { font-size: 32px; color: #2563EB; }
    .banner-item__right { flex: 0 0 auto; width: 220px; }
    .banner-item__right img { height: 300px; }
    .banner-dots { left: 50%; transform: translateX(-50%); bottom: 20px; }
    .banner-arrow { display: none; }
}
