/* ============================================================
   Homepage banner slideshow — same pattern as the Airsoft site's
   banner (random order, autoplay every 5s, dot navigation).
   ============================================================ */

.banner-slideshow {
    position: relative;
    max-width: 900px;
    margin: var(--space-2) auto var(--space-3);
    /* padding: 0 var(--space-4); */
    border-radius: var(--radius-md);
}

.banner-slides {
    position: relative;
}

.banner-slide {
    display: none;
    width: 100%;
    aspect-ratio: 2.5 / 1;
    border-radius: var(--radius-md);
    background-color: var(--surface);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide.active {
    display: block;
    opacity: 1;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.banner-dot.active {
    background: var(--color-gold-bright);
}

/* ------------------------------------------------------------
   Desktop: 2.5/1 makes the banner too tall at 900px wide, so
   flatten it out.
   ------------------------------------------------------------ */
@media (min-width: 1025px) {
    .banner-slide {
        aspect-ratio: 4 / 1;
    }
}
