.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
}

.logo span {
  color: #ff6a00;
}

.nav {
  display: flex;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  background: #f3f3f3;
  color: #111;
  transition: 0.2s;
}

.nav-btn:hover {
  background: #e6e6e6;
}

.nav-btn.primary {
  background: #ff6a00;
  color: #fff;
}

.nav-btn.primary:hover {
  background: #e65f00;
}

.nav-btn.logout {
  background: #ffe5e5;
  color: #b30000;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    border-bottom: 1px solid #eee;
  }

  .nav.active {
    display: block;
  }

  .nav-buttons {
    flex-direction: column;
    padding: 15px;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}
