/* =========================================
   PAGE BANNER & BREADCRUMB STYLES
========================================= */
.page-banner-section {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary, #0b0524);
    /* Fallback to your dark color */
}

/* --- Animated Background --- */
.banner-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle continuous zoom effect */
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    /* Rich premium gradient overlay: darkens the edges and bottoms */
    background: linear-gradient(to right, rgba(11, 5, 36, 0.85) 0%, rgba(11, 5, 36, 0.4) 50%, rgba(11, 5, 36, 0.85) 100%),
        linear-gradient(to top, var(--primary, #0b0524) 0%, transparent 100%);
    z-index: 2;
}

/* --- Content & Typography --- */
.banner-content-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--space-md);
    /* Slide-up entrance animation */
    animation: fadeUpContent 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.banner-title {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Responsive font scaling */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: capitalize;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- Breadcrumb Navigation --- */
.banner-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: var(--fs-sm, 14px);
    font-weight: 500;
}

.banner-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-200, #e2e8f0);
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-breadcrumb a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.banner-breadcrumb .separator {
    display: flex;
    align-items: center;
    color: var(--gray-500, #64748b);
}

.banner-breadcrumb .active {
    color: var(--gray-400, #94a3b8);
    pointer-events: none;
}

/* --- Animations --- */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes fadeUpContent {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-banner-section {
        height: 250px;
        /* Shorter on mobile */
    }

    .banner-breadcrumb {
        padding: 8px 16px;
    }

    .banner-breadcrumb ol {
        font-size: 13px;
        gap: 8px;
    }
}

