/* Fix for navbar gap on non-index pages */
/* This will be applied to all pages except index.html */

/* Remove the gap by resetting the top position and removing top padding */
body:not(.home-page) .navbar {
    top: 0 !important;
    padding-top: 0 !important;
}

/* Adjust the navbar brand and toggler position */
body:not(.home-page) .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Ensure the navbar content is properly aligned */
body:not(.home-page) .navbar-collapse {
    padding-top: 0;
}

/* Adjust the navigation links spacing */
body:not(.home-page) .navbar-nav .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Make sure the navbar doesn't have extra margin */
body:not(.home-page) .navbar {
    margin-top: 0 !important;
}
