/**
 * Breadcrumb Header Styles
 */

.kmtheme-breadcrumb-header {
    position: relative;
    width: 100%;
    height: 51vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.breadcrumb-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

.breadcrumb-title {
    font-size: 100px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .kmtheme-breadcrumb-header {
        height: 50vh;
    }
    
    .breadcrumb-title {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .kmtheme-breadcrumb-header {
        height: 50vh;
    }
    
    .breadcrumb-title {
        font-size: 60px;
    }
}

