/* ========== PAGE BANNER (Small Hero for Non-Homepage) ========== */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 61, 43, 0.5), rgba(45, 95, 63, 0.4));
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.page-banner-breadcrumb a {
    color: var(--safari-gold);
    text-decoration: none;
    transition: var(--transition);
}

.page-banner-breadcrumb a:hover {
    color: var(--white);
}

.page-banner-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.page-banner-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-banner-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-banner-content h1 {
        font-size: 2rem;
    }
    
    .page-banner-content p {
        font-size: 1rem;
    }
}
