/**
 * Z-Index Management - Simple and Effective
 */

/* Hero section stays in normal flow */
.hero {
  position: relative;
  z-index: 1;
}

/* Header and navigation on top */
.header {
  position: relative;
  z-index: 1000;
}

.header-top,
.header-bottom {
  position: relative;
  z-index: 1000;
}

/* Navbar items need higher z-index than hero */
.navbar-item {
  position: relative;
  z-index: 1001;
}

/* Dropdown menu highest priority */
.dropdown-menu {
  position: absolute !important;
  z-index: 1002 !important;
}
