/* navbar styling */
header {
  display: flex;
  height: 58px;
  max-width: var(--max-width);
  width: 90%;
  padding: 0 1rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;

  margin-top: 1%;
  background: #ffffff33;
  backdrop-filter: blur(2px);
  z-index: 999;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  z-index: 1000;
  flex: 1;
  justify-content: center;
  margin: 0 1rem;
  position: static;
  transform: none;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-items a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-items a:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  position: static;
}

.btn-group a {
  display: flex;
  width: 99px;
  height: 32px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 5px;

  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  border-radius: 6px;
  border: 1px solid transparent;
  background: none;
  transition: all 0.2s ease;
}

.btn-group a:hover {
  text-decoration: underline;
}

.btn-group a.signup-btn {
  border-color: var(--outline, #c8d7db);
  background: url("../img/button.png") lightgray 50% / cover no-repeat;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 800;
}

.btn-group a:disabled {
  background-color: var(--error);
  cursor: not-allowed;
}
