

/* Hero Banner Text Overlay */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(40deg,
        transparent 50% ,rgba(180, 170, 210, 0.2) 90%),
    url('../images/banners/banner-5.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 100 0.8) 0%, transparent 100%);
    z-index: 1;
}

.hero-text-banner {
    position: relative;
    z-index: 2;
    font-size: 4.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.5px;
    line-height: 1.2;
    padding: 15px 45px;
    background: rgba(0, 30, 70, 0.78);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 20, 50, 0.65);
    max-width: 90%;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-text-banner {
        font-size: 3.4rem;
        padding: 12px 35px;
    }
}

@media (max-width: 768px) {
    .hero-text-banner {
        font-size: 2.8rem;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .hero-text-banner {
        font-size: 2.3rem;
        padding: 8px 20px;
    }
}

