/* =========================
   NAVBAR
========================= */
.navbar{
  width:100%;
  background:#1e1e1e;
  border:1px solid #333;
  border-radius:14px;
  padding:16px 30px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:35px;
}

/* LOGO */
.nav-logo{
  font-size:1.3rem;
  font-weight:700;
  color:white;
  letter-spacing:-0.5px;
}

/* CENTER MENU */
.nav-links{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-links a{
  text-decoration:none;
  color:#bbb;
  font-weight:500;
  padding:10px 16px;
  border-radius:8px;
  transition:0.3s ease;
}

.nav-links a:hover{
  background:#2a2a2a;
  color:white;
}

.nav-links a.active{
  background:#3498db;
  color:white;
}

/* RIGHT SIDE */
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-btn{
  border:none;
  padding:10px 18px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
}

/* BUTTONS */
.primary-btn{
  background:#e74c3c;
  color:white;
}

.primary-btn:hover{
  background:#ff5b49;
}

.secondary-btn{
  background:#2c2c2c;
  color:white;
}

.secondary-btn:hover{
  background:#3a3a3a;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){

  .navbar{
    flex-direction:column;
    gap:18px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .nav-actions{
    width:100%;
    justify-content:center;
  }
}