/* Hero Widget Styles */
.widget_hero {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.hero-widget {
    overflow: hidden;
}

.hero-widget .video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.hero-widget .video-background-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-widget .overlay {
    z-index: -1;
}

.hero-widget .hero-content {
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 767px) {
    .hero-widget .hero-content {
        text-align: center;
    }
    
    .hero-widget .btn {
        margin: 0 auto;
    }
}
