/* Remove all unwanted gaps */
body, html {
    margin: 0;
    padding: 0;
}

/* Remove Bootstrap's default padding */
/*.container,
.container-fluid,
.row {
    margin: 0 !important;
    padding: 0 !important;
}*/

.banner_space
     {
    margin: 0 !important;
    padding: 0 !important;
}





.video-section {
    position: relative;
}

/* Ensures the fallback image fills correctly */
.fallback-image {
    width: 100%;
    height: auto;
}

/* Fade overlay */
.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    pointer-events: none;
}

/* Text in center */
.banner-text {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.banner-text h1 {
    font-size: 42px;
    font-weight: bold;
}

.banner-text p {
    font-size: 20px;
}

/* TEXT RESIZING FOR MOBILE */
@media (max-width: 768px) {
    .banner-text h1 { font-size: 28px; }
    .banner-text p { font-size: 16px; }
}

/* FULL MOBILE FIX — Only fallback image is shown */
@media (max-width: 480px) {
    .banner-text h1 { font-size: 22px; }
    .banner-text p { font-size: 14px; }
}
