/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;              /* ✅ equal padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #111827;
}

.nav-logo img {
  height: 48px;                    /* ✅ proper visible logo */
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
}

/* ===== MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563eb;
}

/* ===== AUTH BUTTONS ===== */
.auth-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background: #fff;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    border-top: 1px solid #e5e7eb;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
  }
}
