/* Universal Navbar Spacing Fix - Prevents overlap on all pages */

/* Force body padding for all pages */
body {
    padding-top: 80px !important;
    margin-top: 0 !important;
}

/* Ensure all top-level content has proper spacing */
main,
.main-content,
.container:first-child,
.hero-section,
section:first-of-type,
.page-header,
header:first-of-type {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}

/* Special handling for hero sections */
.hero-section {
    padding-top: 2rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 80px !important;
    }
    
    .hero-section {
        padding-top: 1.5rem !important;
    }
}

/* Override any conflicting styles */
* {
    box-sizing: border-box;
}
