/* Styles for the sticky navigation */
.head-nav.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px; 
  z-index: 1000;
  background-color: #ffffff;
  animation: fadeIn 0.3s ease-in-out;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Change link color when nav is sticky */
.head-nav.sticky-nav .menu-link {
  color: black !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.head-nav.sticky-nav .menu-link:hover {
  color: rgba(2, 117, 133, 1) !important;
}

/* Side navigation styles */
.wp-navi-aside {
  z-index: 1001; /* Higher than sticky nav */
}

.navi-aside-wrap {
  z-index: 1002; /* Higher than the mask */
  background-color: #fff;
}

.navi-aside-mask {
  z-index: 1001; /* Same as wp-navi-aside */
  background-color: rgba(0, 0, 0, 0.5);
}