/**
 * Hero Section Styles
 *
 * @package Modex
 */

/* Hero Section - Based on User Design */
.page-hero-section {
    position: relative;
    background-color: var(--color-secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 0px;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 36, 99, 0.85); /* Dark blue overlay with 85% opacity */
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-top-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.hero-top-label::before,
.hero-top-label::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
}

.page-title .highlight {
    color: #FFCC00;
}

.page-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    /* max-width: 600px; */
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: #FFCC00;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs .current {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 50px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .breadcrumbs {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .breadcrumbs {
        flex-wrap: wrap;
        justify-content: center;
    }
}
