/*==========================================================================
Page Banner Section - Professional Header Design
==========================================================================*/

.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0E1317;
    z-index: 1;
    opacity: 0.8;
}

/* Banner Content Container */
.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

/* Page Title */
.page-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Bai Jamjuree', sans-serif;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/* Breadcrumb Navigation */
.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
}

.page-banner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.page-banner-breadcrumb a:hover {
    color: #B89146;
}

.page-banner-breadcrumb .separator {
    color: #B89146;
    font-weight: 600;
    margin: 0 5px;
}

.page-banner-breadcrumb .current {
    color: #B89146;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-banner {
        height: 350px;
    }
    
    .page-banner-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .page-banner {
        height: 300px;
    }
    
    .page-banner-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .page-banner-breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner-title {
        font-size: 30px;
    }
    
    .page-banner-breadcrumb {
        font-size: 13px;
        gap: 8px;
    }
}
