nav {
  background: #363636;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nav-container {
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  color: #ffc722;
  font-weight: bold;
  font-size: 2em;
  margin-right: 40px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 40px;
}

.nav-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.15em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffc722;
}


.nav-toggle {
  font-size: 1.9em;
  background: none;
  border: none;
  color: #ffc722;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: none;
}


.mobile-nav-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background: #363636;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  box-sizing: border-box;
}

.mobile-logo {
  font-size: 1.6em;
  font-weight: bold;
  color: #ffc722;
  margin: 0;
  padding: 0;
  line-height: 60px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
}

.mobile-nav-links {
  display: none;
  flex-direction: column;
  background: #363636;
}

.mobile-nav-links.show {
  display: flex;
}


@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }

  .nav-container {
    display: none;
  }

  .mobile-nav {
    display: flex !important;
  }

  .mobile-nav-header {
    display: flex !important;
  }

  .nav-toggle {
    display: block !important;
  }

  body {
    padding-top: 60px;
  }
}


@media (min-width: 901px) {
  .mobile-nav,
  .mobile-only {
    display: none !important;
  }
}


@media (min-width: 601px) and (max-width: 900px) {
  .nav-link {
    font-size: 0.75em;
  }
}


@media (min-width: 601px) and (max-width: 900px) {
  .mobile-nav,
  .mobile-only,
  .mobile-nav-header,
  .nav-toggle {
    display: flex !important;
  }

  .desktop-nav,
  .nav-container {
    display: none !important;
  }
}