/* Page Header Image Styles */

.page-header-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 0;
}

.page-header-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.page-header-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.page-header-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header-image {
        height: 250px;
    }
    
    .page-header-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .page-header-subtitle {
        font-size: 16px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .page-header-image {
        height: 200px;
    }
    
    .page-header-title {
        font-size: 24px;
    }
    
    .page-header-subtitle {
        font-size: 14px;
    }
}
