/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Single color overlay to ensure text readability */
.hero-overlay {
    z-index: 1;
    background: rgba(10, 22, 40, 0.6) !important;
}

/* Hide pattern - no noise */
.hero-pattern {
    display: none !important;
}

/* Hero content without backdrop blur - video is pre-blurred */
.hero .hero-content,
.hero-content {
    position: relative !important;
    z-index: 2 !important;
    background: rgba(255, 255, 255, 0.25) !important;
    padding: 4rem 8rem !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Responsive video handling */
@media (max-width: 1024px) {
    .hero .hero-content,
    .hero-content {
        padding: 3.5rem 6rem !important;
        max-width: 1200px !important;
    }
}

@media (max-width: 768px) {
    .hero-video {
        /* On mobile, ensure video doesn't cause performance issues */
        object-fit: cover;
    }
    
    .hero .hero-content,
    .hero-content {
        padding: 2.5rem 2rem !important;
        border-radius: 16px !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero .hero-content,
    .hero-content {
        padding: 2rem 1.5rem !important;
        border-radius: 12px !important;
    }
}
