/* TV Bingo - Custom Fixes */

/* Fix header background to match page background */
.header {
    background-color: #0a1e4d !important; /* Deep blue matching the page */
    background: linear-gradient(135deg, #0a1e4d 0%, #1a3a6e 100%) !important;
}

.header-bottom {
    background-color: transparent !important;
}

.header-bottom-area {
    background-color: transparent !important;
}

/* Reduce large space between banner and Why TV Bingo section */
.banner-section-secondary {
    padding-top: 50px !important; /* Decent spacing above banner */
    padding-bottom: 60px !important; /* Reduced from default */
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.features-section {
    padding-top: 60px !important; /* Reduced from default */
    margin-top: 0 !important;
}

/* Also reduce space after video hero if needed */
.video-hero-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Mobile-specific fixes for video hero section */
@media (max-width: 767px) {
    .video-hero-section {
        min-height: 50vh !important; /* Reduced height on mobile */
        height: 50vh !important;
        margin-bottom: -20px !important; /* Remove gap below video */
    }

    .video-hero-container {
        min-height: 50vh !important;
        height: 50vh !important;
    }

    .video-hero-section .min-vh-100 {
        min-height: 50vh !important;
        height: 50vh !important;
    }

    .video-hero-section .hero-content-wrapper {
        min-height: 50vh !important;
    }

    /* Reduce header height on mobile if needed */
    .header {
        padding: 10px 0 !important;
    }

    /* Reduce spacing on banner section below video */
    .banner-section-secondary {
        padding-top: 40px !important; /* Decent spacing for mobile */
        padding-bottom: 30px !important;
    }
}

/* Ensure consistent spacing throughout */
.padding-top {
    padding-top: 60px !important;
}

.padding-bottom {
    padding-bottom: 60px !important;
}

/* Optional: Make header slightly transparent for modern look */
.header {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}