/* Hero Section - Diagonal Stripes Design (matching screenshot) */
.page-hero-banner {
    position: relative;
    background: #000000;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
}

/* Diagonal Stripe Pattern - Exact match from screenshot */
.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.9) 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-small-badge {
    display: inline-block;
    padding: 10px 28px;
    background: #e6c770;
    border: none;
    border-radius: 4px;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.hero-large-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: none;
}

.hero-description-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

/* Hero Section Background Images */
.page-hero-banner.blog-hero,
.page-hero-banner.services-hero,
.page-hero-banner.contact-hero {
    background-image: url('../images/blog/blog_banner3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero-banner.blog-hero::before,
.page-hero-banner.services-hero::before,
.page-hero-banner.contact-hero::before {
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.85) 20px,
        rgba(255, 255, 255, 0.08) 20px,
        rgba(255, 255, 255, 0.08) 40px
    );
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-banner {
        min-height: 350px;
        padding: 80px 20px;
    }
    
    .hero-large-title {
        font-size: 38px;
    }
    
    .hero-description-text {
        font-size: 16px;
    }
    
    .hero-small-badge {
        font-size: 11px;
        padding: 8px 20px;
    }
    
    .page-hero-banner.blog-hero,
    .page-hero-banner.services-hero,
    .page-hero-banner.contact-hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .page-hero-banner {
        min-height: 300px;
        padding: 60px 15px;
    }
    
    .hero-large-title {
        font-size: 30px;
    }
    
    .hero-description-text {
        font-size: 15px;
    }
}
