/* Navigation Header */
.weantz-header{
  position:sticky; top:0; z-index:999;
  background:#0b1220; color:#fff;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.nav-container{
  max-width:1200px; margin:auto; padding:1rem;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  font-size:1.4rem; font-weight:700; color:#fff; text-decoration:none;
}
.nav a{
  color:#cfd8ff; margin-left:1rem; text-decoration:none; font-weight:500;
}
.nav a:hover{ color:#ffffff; }
@media(max-width:800px){
  .nav-container{flex-wrap:wrap}
  .nav{width:100%; margin-top:1rem}
  .nav a{display:inline-block; margin:0 .75rem .5rem 0}
}
