/* HEADER */
.dws-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* DARK */
html[data-theme="dark"] .dws-header {
  background: rgba(2,6,23,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dws-header__container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV */
.dws-header__nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

html[data-theme="dark"] .dws-header__nav a {
  color: #cbd5f5;
}

/* RIGHT */
.dws-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* TOGGLE */
.dws-theme-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE */
.dws-menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
}

/* MOBILE */
@media (max-width: 900px) {

  .dws-header__nav {
    display: none;
  }

  .dws-menu-toggle {
    display: block;
  }

}