/* ====================== HERO SECTION ====================== */
.single-hero {
    position: relative;
    height: 50vh;
    min-height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.single-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.single-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
}

/* Dark Overlay */
.single-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
    z-index: -1;
}

/* Hero Content */
.single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.single-hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 1000;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.single-hero-subtitle {
    font-size: 1.45rem;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 25px auto;   /* Extra margin for breadcrumb space */
    opacity: 0.95;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    margin-top: 10px;           /* Title + Subtitle ke neeche space */
    margin-bottom: 15px;
    margin-left: 32%;
}

.breadcrumb ul {
    display: flex;
    justify-content: center;    /* Center Alignment */
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    font-size: 0.98rem;
}

.breadcrumb li {
    color: #ccc;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: #00bfff;
}

.breadcrumb li:after {
    content: "›";
    margin-left: 10px;
    color: #aaa;
}

.breadcrumb li:last-child:after {
    content: "";
}

.breadcrumb li.active {
    color: #fff;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .single-hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .single-hero-content {
        padding: 0 20px;
    }

    .breadcrumb ul {
        font-size: 0.9rem;
        gap: 8px;
    }
}