/* Gallery Showcase - Navigation Gap Fix */

/* Override any padding at the top of the body */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Ensure banner connects directly with navbar */
.banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure no gap between navbar and content */
.main-nav + .banner {
    margin-top: 0 !important;
}

/* Fix for mobile devices */
@media (max-width: 767px) {
    body {
        padding-top: 0 !important;
    }
    
    .banner {
        margin-top: 0 !important;
    }
}
