/* Container Utama */
.hero-wrap {
    width: 100%;
    height: 400px;
    /* Sesuaikan tinggi yang diinginkan */
    position: relative;
    overflow: hidden;
}

/* Background Image Statis */
.slider-item-static {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay Gelap */
.hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .5;
    /* Tingkat kegelapan */
    background: #000000;
}

/* Memastikan teks berada di atas overlay */
.hero-wrap .container {
    position: relative;
    z-index: 2;
}

.bread {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs span,
.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsif untuk HP */
@media (max-width: 767.98px) {
    .hero-wrap {
        height: 300px;
        /* Lebih pendek di HP */
    }
}