/* wrapper to isolate everything */
.orpiv-nav-wrapper {
  background-color: #eeece8;
  font-family: Urbanist, sans-serif;
  /* any overrides you need */
}

/* navbar base */
.orpiv-navbar {
  position: relative;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0;
}

/* container */
.orpiv-container {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* flex wrapper */
.orpiv-navbar-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

/* nav menu */
.orpiv-nav-menu {
  display: flex;
  align-items: center;
}

/* links */
.orpiv-nav-link {
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 100%;
  margin: 0 8px;
  padding: 0 15px;
  position: relative;
}
.orpiv-link-text {
  display: block;
}

/* primary button */
.orpiv-nav-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f67146;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  line-height: 120%;
  transition: background-color 0.3s;
}
.orpiv-nav-button:hover {
  background-color: #e56a42;
}

/* desktop vs mobile button */
.orpiv-nav-button-desktop { display: flex; }
.orpiv-nav-button-mobile  { display: none; }

/* hamburger menu */
.orpiv-menu-button {
  display: none;
  cursor: pointer;
}
.orpiv-top-line,
.orpiv-center-line,
.orpiv-bottom-line {
  background-color: #000;
  width: 28px;
  height: 1px;
}
.orpiv-center-line { margin: 6px 0; }

/* responsive */
@media screen and (max-width: 991px) {
  .orpiv-nav-menu { display: none; }
  .orpiv-nav-button-desktop { display: none; }
  .orpiv-nav-button-mobile  { display: flex; }

  .orpiv-menu-button { display: block; }

  .orpiv-container {
    max-width: 728px;
  }
  .orpiv-nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 12px 0;
  }
}

@media screen and (max-width: 767px) {
  .orpiv-container { max-width: none; }
}

@media screen and (max-width: 479px) {
  .orpiv-top-line,
  .orpiv-center-line,
  .orpiv-bottom-line {
    width: 24px;
  }
}
