/* Blue Haven real Red Sea hero video */
.hero {
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
}

.bh-realsea-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: saturate(1.05) contrast(1.02) brightness(0.96);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 19, 41, 0.26), rgba(7, 19, 41, 0.52));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: min(28vw, 260px);
    height: 32%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 231, 170, 0), rgba(255, 231, 170, 0.22), rgba(255,255,255,0));
    filter: blur(16px);
    z-index: 1;
    pointer-events: none;
    opacity: .8;
}
