/* =========================
   PREMIUM STADIUM CAROUSEL
========================= */

#stadiumCarousel {
    position: relative;
    overflow: hidden;

    border-radius: 60px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .35),
        0 0 30px rgba(199, 161, 90, .15);

    max-height: 400px;
}

/* Carousel Inner */

#stadiumCarousel .carousel-inner {
    border-radius: 60px;
}

/* Slides */

#stadiumCarousel .carousel-item {
    position: relative;
    height: 400px;
    border-radius: 60px;
    overflow: hidden;
}

/* Images */

#stadiumCarousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;

    transition: transform 8s ease;
}

/* Smooth Zoom Effect */

#stadiumCarousel .carousel-item.active img {
    transform: scale(1.08);
}

/* Dark Overlay */

#stadiumCarousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .35));

    z-index: 1;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

#stadiumCarousel .carousel-control-prev,
#stadiumCarousel .carousel-control-next {
    width: 55px;
    height: 55px;

    top: 50%;
    transform: translateY(-50%);

    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);

    border-radius: 50%;

    opacity: 1;

    transition: .3s ease;
}

#stadiumCarousel .carousel-control-prev {
    left: 20px;
}

#stadiumCarousel .carousel-control-next {
    right: 20px;
}

#stadiumCarousel .carousel-control-prev:hover,
#stadiumCarousel .carousel-control-next:hover {
    background: #c7a15a;
    transform: translateY(-50%) scale(1.08);
}

/* Icons */

#stadiumCarousel .carousel-control-prev-icon,
#stadiumCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

/* =========================
   INDICATORS
========================= */

#stadiumCarousel .carousel-indicators {
    bottom: 18px;
    margin-bottom: 0;
}

#stadiumCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    margin: 0 6px;

    border: none;

    background: rgba(255, 255, 255, .5);

    transition: .3s ease;
}

#stadiumCarousel .carousel-indicators .active {
    background: #c7a15a;
    transform: scale(1.25);
}

/* =========================
   GOLD BORDER
========================= */

#stadiumCarousel::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 2px solid rgba(199, 161, 90, .25);
    border-radius: 60px;

    pointer-events: none;

    z-index: 10;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    #stadiumCarousel,
    #stadiumCarousel .carousel-item,
    #stadiumCarousel .carousel-item img {
        height: 320px;
    }

    #stadiumCarousel {
        border-radius: 45px;
    }

    #stadiumCarousel .carousel-inner,
    #stadiumCarousel .carousel-item,
    #stadiumCarousel::after {
        border-radius: 45px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    #stadiumCarousel,
    #stadiumCarousel .carousel-item,
    #stadiumCarousel .carousel-item img {
        height: 120px !important;
    }

    #stadiumCarousel {
        border-radius: 30px;
    }

    #stadiumCarousel .carousel-inner,
    #stadiumCarousel .carousel-item,
    #stadiumCarousel::after {
        border-radius: 30px !important;
    }

    #stadiumCarousel .carousel-control-prev,
    #stadiumCarousel .carousel-control-next {
        width: 42px;
        height: 42px;
    }

    #stadiumCarousel .carousel-control-prev {
        left: 10px;
    }

    #stadiumCarousel .carousel-control-next {
        right: 10px;
    }
}


