/* Floating Glassmorphism Navbar */
.navbar-area {
  width: 95%;
  max-width: 1300px;
  margin: 20px auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 12px 30px;

  position: fixed; /* Make it float */
  left: 50%;
  transform: translateX(-50%); /* Center perfectly */
  top: 20px; /* Adjust spacing from top */
  z-index: 99;
}

/* Logo height */
.navbar-brand img {
  height: 35px;
}

/* Nav Items */
.nav-item a {
  color: #111;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #3b82f6;
}

/* Login Button */
.signup {
  background: transparent;
  color: #3b82f6;
  border: 1.5px solid #3b82f6;
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.signup:hover {
  background: #3b82f6;
  color: #fff;
}

/* Optional flag and dropdown */
.currency-flag {
  width: 22px;
  margin-right: 5px;
  vertical-align: middle;
}
