.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
}
.logo span { color: #0d6efd; }

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.nav-links a:hover {
  color: #0d6efd;
}

/* ACTION BUTTONS */
.nav-actions {
  display: flex;
  gap: 12px;
}

.btn-outline {
  padding: 8px 14px;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  padding: 8px 14px;
  background: #0d6efd;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* MOBILE */
.menu-btn {
  display: none;
  background: none;
  font-size: 22px;
  border: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 14px;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: #111;
}

.mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}
