nav {
  background-color: #fd7238;
  padding: 1.875rem 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: sticky;
  top: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: 1;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.937rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50px;
  text-align: center;
}

nav a[data-value="signin"],
nav a[data-value="signup"] {
  min-width: 100px;
  background-color: #fff;
  color: #fd7238;
  border: 1px solid #fd7238;
  border-radius: 10px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
nav a[data-value="signin"]:hover,
nav a[data-value="signup"]:hover {
  background-color: #ff944c;
  color: #fff;
}

nav a:hover {
  background-color: #ff944c;
}

.menu-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

/* Media Queries */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-end;
  }

  .menu-icon {
    display: block;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    width: 100%;
    position: sticky;
    align-items: flex-end;
    top: 0;
    background-color: #fd7238;
    padding: 1em;
  }

  .menu-items a {
    display: block;
    padding: 0.5em;
  }

  .menu-items.show {
    display: flex;
  }
}
