/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-image: url('../img/breadcrumbs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adjust based on navbar height/overlap preference */
}

/* Dark Overlay */
.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark overlay 0.8 opacity */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    color: var(--primary-color);
    /* Lime */
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-item {
    color: #fff;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    /* Highlight active page */
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 33px 0;
        margin-top: 0;
        /* Mobile nav usually solid */
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 14px;
    }
}