/* Page Header Styles */
.page-header {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.primary-gradient-header{
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.primary-gradient-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/images/07-1536x1138.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.page-header-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: 1.25rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    line-height: 1.2;
}

.page-header-description {
    font-size: var(--text-xl);
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 0;
    line-height: var(--leading-relaxed);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    
}

.breadcrumb-item {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-family: var(--font-secondary);
  
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 0;
    margin-top: 0;
    display: inline-block;
    font-weight: var(--font-medium);
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: var(--font-bold);
    font-family: var(--font-secondary);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    color: #ffffff;
    text-decoration: underline;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .primary-gradient-header {
        min-height: 150px;
    }
    
    .primary-gradient-header::before {
        opacity: 0.1;
    }
}