/* =========================================================
   ALJ PAGE HEADER V2 — SOLID COLOR LIGHT & DARK
   File: page-header.css
   ========================================================= */

.alj-page-header-v2 {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    /* ✅ Light Mode Background */
    background-color: #7E5BA2;
}

/* Background Image Inside Header */
.alj-page-header-v2 .alj-page-header-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    z-index: 0;
}

/* Container content always above */
.alj-page-header-v2 .container {
    position: relative;
    z-index: 2;
}

/* ✅ Title */
.alj-page-header-v2 h3 {
    font-weight: 800;
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
    color: #ffffff;
}

/* ✅ Breadcrumb Wrapper */
.alj-page-header-v2 .alj-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ✅ Breadcrumb Links */
.alj-page-header-v2 .alj-breadcrumb a p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: 0.25s ease;
}

.alj-page-header-v2 .alj-breadcrumb a:hover p {
    color: #ffffff;
}

/* ✅ Current Page */
.alj-page-header-v2 .alj-breadcrumb .alj-breadcrumb-current {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* ✅ Arrow Icon */
.alj-page-header-v2 .alj-breadcrumb-icon path {
    stroke: #ffffff;
}

/* =========================================================
   🌙 DARK MODE
   ========================================================= */

[data-bs-theme="dark"] .alj-page-header-v2 {
    /* ✅ Dark Mode Background */
    background-color: #48BCCC;
}

/* Background image darker in dark */
[data-bs-theme="dark"] .alj-page-header-v2 .alj-page-header-bg {
    opacity: 0.15;
    filter: brightness(0.8);
}

/* Dark text stays white */
[data-bs-theme="dark"] .alj-page-header-v2 h3,
[data-bs-theme="dark"] .alj-page-header-v2 .alj-breadcrumb p,
[data-bs-theme="dark"] .alj-page-header-v2 .alj-breadcrumb .alj-breadcrumb-current {
    color: #ffffff;
}

/* Dark arrow */
[data-bs-theme="dark"] .alj-page-header-v2 .alj-breadcrumb-icon path {
    stroke: #ffffff;
}
