/* ====================== SINGLE HERO WITH IMAGE ====================== */
.single-hero {
    position: relative;
    height: 30vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.171), rgba(255, 255, 255, 0.103));
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-container {
    position: absolute;
    bottom: 20%;
    left: 45%;
    z-index: 10;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 0;
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #000000;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: #7a00fd;
}

/* Hero Text */
.single-hero-grid {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.single-hero-text {
    max-width: 700px;
}

#single-hero-heading {
    font-size: 3.2rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.2rem;
    font-family: 'IBM Plex Serif', serif;
}

.subheading {
    font-size: 1.25rem;
    color: #e0d4ff;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    #single-hero-heading {
        font-size: 2.4rem;
    }
    .subheading {
        font-size: 1.1rem;
    }
}