/* ================= HERO ================= */
.hero-section {
    height: 75vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(217, 119, 6, .25),
            rgba(180, 134, 11, .15),
            rgba(26, 11, 5, .2));
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Carousel */
#heroCarousel {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
}

.carousel-inner {
    height: 100%;
    background: var(--card-bg);
}

#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 🔥 NO CROP */
}


/* ===== HERO TEXT OVERLAY ===== */
.hero-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    width: 100%;
    padding: 0 15px;
}

.hero-caption h2 {
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ================= BANNER BOTTOM TEXT ================= */
.hero-bottom-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;

    padding: 5px 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    color: #fff;
    text-align: center;

    background: linear-gradient(to top,
            rgba(26, 11, 5, 0.85),
            rgba(26, 11, 5, 0.55),
            rgba(26, 11, 5, 0));

    backdrop-filter: blur(1px);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(26, 11, 5, .75);
    border-radius: 50%;
}

/* ================= NOTICE BAR ================= */
.notice-bar {
    background: var(--header-gradient);
    color: var(--text-light);
    font-size: 15px;
    padding: 8px 0;
}

.notice-title {
    color: var(--gold);
    white-space: nowrap;
}

/* ================= RESPONSIVE ================= */

/* Desktop (Large screens) */
@media (min-width: 1200px) {
    .hero-section {
        height: 88vh;
        /* 🔥 BIG DESKTOP BANNER */
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        height: 80vh;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        height: 60vh;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        height: 45vh;
        /* ✅ MOBILE PERFECT */
    }
}

@media (max-width: 992px) {
    #heroCarousel {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 42vh;
    }

    #heroCarousel {
        padding: .75rem;
    }

    .notice-bar {
        font-size: 13px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-bottom-text {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .hero-bottom-text {
        font-size: 13px;
        line-height: 1.4;
    }
}
