/* NAVBAR FIX - Ensure navbar is clickable and positioned correctly */
nav {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Ensure navbar links are clickable */
nav a {
    position: relative;
    z-index: 10000 !important;
    pointer-events: auto !important;
}

/* Remove margin from hero section and use padding instead */
.hero-header {
    margin-top: 0 !important;
    padding-top: 80px !important;
    height: 100vh !important;
    box-sizing: border-box !important;
}

/* Ensure mobile menu has proper z-index */
.mobile-menu {
    z-index: 9998 !important;
}

/* Reset hero content positioning */
.hero-content-container {
    padding-top: 0 !important;
    height: calc(100vh - 80px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure cart dropdown doesn't interfere */
.cart-dropdown {
    z-index: 9997 !important;
}

/* Make sure body has no conflicting padding */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Ensure all sections after hero have proper spacing */
main > section:not(.hero-header) {
    margin-top: 0 !important;
}

/* Fix for any absolute positioned elements in hero */
.hero-header .absolute {
    z-index: 1 !important;
}