/* NAVBAR - CreatorStore Ultra Pro Solid */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1rem 0; /* Lekko mniejszy padding */
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9; /* Cieńsza, bardziej subtelna linia (slate-100) */
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01); /* Prawie niewidoczny cień */
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90vw;
  max-width: 1200px; /* Dopasowany do kontenera hero */
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0f172a;
  font-size: 1.4rem;
  letter-spacing: -0.6px;
  text-decoration: none;
}

.logo i {
  color: #4f46e5;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 3rem; /* Lekko mniejszy odstęp */
}

.nav-links a {
  color: #475569; /* Slate-600 */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #4f46e5;
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Zmniejszony odstęp */
}

.lang-btn {
  background: transparent; /* Bez tła */
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.login {
  color: #475569;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.login:hover {
  color: #0f172a;
}

.signup {
  background: transparent; /* "Ghost" button lub wypełniony ale pro */
  color: #4f46e5;
  border: 1px solid #4f46e5;
  padding: 0.65rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.signup:hover {
  background: #4f46e5;
  color: white;
  transform: none; /* Bez podnoszenia */
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #0f172a;
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-links, .right-menu { display: none; }
  .hamburger { display: block; }
  .navbar { padding: 0.8rem 0; }
}