/* Wrapper styling */
.breadcrumb-wrapper {
    position: relative;
    overflow: hidden; /* prevents image overflow */
    color: #fff;
}
/* Image as background */
.breadcrumb-bg {
    width: 100%;
    height: 450px; /* adjust height */
    object-fit: cover; /* crop nicely */
    display: block;
}

/* Overlay effect */
.breadcrumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Breadcrumb content */
.breadcrumb {
    margin: 0;
    padding: 12px 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    position: relative;
    z-index: 2; /* keeps text above overlay */
}

.breadcrumb-item {
    color: #f1f1f1;
}

.breadcrumb-item a {
    color: #ffd54f;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #ffeb3b;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin: 0 8px;
    color: #f1f1f1;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 576px) {
    .breadcrumb {
        font-size: 14px;
    }
    .breadcrumb-bg {
        height: 150px;
    }
}
