/* منو اصلی */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  min-height: 60px; /* ارتفاع ثابت برای یکنواختی */
  background: linear-gradient(to left, #1e3a8a, #4f46e5);
  color: #fff;
  position: relative;
  z-index: 1000;
  line-height: 1.2; /* اضافه شد */
}

.navbar .logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0; /* کمی کمتر شد */
  transition: color 0.3s ease;
  line-height: 1.2; /* اضافه شد */
}
.nav-links li a:hover {
  color: #cbd5e1;
}

/* همبرگر منو */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
}

/* موبایل */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: rgba(15, 23, 42, 0.95);
    padding: 50px 20px 20px;
    gap: 30px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* دسکتاپ */
@media (min-width: 769px) {
  .nav-links {
    flex-direction: row;
    position: static;
    background: transparent;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}