/* Region Hero Header - Centered overlay style */

.region-hero {
    width: 100%;
    margin-bottom: 0;
}

.region-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.region-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.region-hero-title {
    font-size: 80px;
    margin: 0 0 0.5rem 0;
    color: white;
}

.region-hero-subtitle {
    font-size: 30px;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .8);
}

/* Fallback for no image */
.region-hero-no-image {
    background-color: #f5f5f5;
    padding: 4rem 0;
    text-align: center;
}

.region-hero-no-image .region-hero-title {
    font-size: 56px;
    color: #1a1a1a;
    text-shadow: none;
}

.region-hero-no-image .region-hero-subtitle {
    font-size: 20px;
    color: #666;
    text-shadow: none;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .region-hero-image {
        height: 400px;
    }

    .region-hero-title {
        font-size: 42px;
    }

    .region-hero-subtitle {
        font-size: 18px;
    }

    .region-hero-no-image {
        padding: 3rem 0;
    }

    .region-hero-no-image .region-hero-title {
        font-size: 42px;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .region-hero-image {
        height: 300px;
    }

    .region-hero-title {
        font-size: 48px;
    }

    .region-hero-subtitle {
        font-size: 18px;
    }

    .region-hero-content {
        padding: 1rem;
    }

    .region-hero-no-image {
        padding: 2rem 0;
    }

    .region-hero-no-image .region-hero-title {
        font-size: 32px;
    }
}
