/**
 * Custom CSS Fixes and Adjustments
 * Clean, organized fixes for layout and display issues
 */

/* ====================================
   HERO SECTION FIXES
   ==================================== */
.hero-section {
    margin-top: 0 !important;
    padding-top: 100px;
}

.hero-section::before {
    z-index: 1;
    pointer-events: none;
}

.hero-section .container,
.hero-content {
    z-index: 2;
    position: relative;
}

/* ====================================
   NAVIGATION FIXES
   ==================================== */
.navbar {
    z-index: 1030 !important;
}

/* ====================================
   UTILITY FIXES
   ==================================== */
.container.d-flex {
    display: flex !important;
}

/* Prevent unwanted pseudo elements */
body::before,
body::after,
html::before,
html::after {
    display: none !important;
} 