/* Standard Hero Section */
.standard-hero {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Even darker overlay for maximum contrast */
    z-index: 1;
}

.standard-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 1); /* Stronger shadow */
}

.hero-breadcrumbs a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-breadcrumbs a:hover {
    color: #ff9900 !important;
}

.hero-breadcrumbs span {
    color: #ffffff !important;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); /* Stronger shadow for maximum visibility */
}

@media (max-width: 768px) {
    .standard-hero {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 32px;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    }
}
