/* Base Navbar Styling */
.navbar {
  position: fixed;
  top: 00px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  box-sizing: border-box;
  backdrop-filter: blur(2px);
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
  transform: translateY(-120%);
}

/* Logo */
.brand-logo {
  text-decoration: none;
}

.brand-logo img {
  height: 110px;
  width: 110px;
}

/* Tabs */
.nav-tabs {
  display: flex;
  gap: 30px;
}

.nav-tabs a {
  text-decoration: none;
  color: #4b5563;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-tabs a:hover {
  color: #2563eb;
}


.login-btn {
  background-color: #003da7bb;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.login-btn:hover {
  background-color: #facc15;
  color: black;
}

.login-btn:active {
  background-color: #003da7dd;
}

/* Mobile */
@media (max-width:768px) {
  .nav-tabs {
    display:none;
  }

  .brand-logo img {
    height:70px;
    width:70px;
  }
}