.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  z-index: 1000;
}

/* LOGO + BRAND NAME */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a img {
  height: 60px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));

}



/* NAV MENU */
.desktop-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.desktop-menu ul li a {
  margin-left: 1.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.desktop-menu ul li a:hover,
.desktop-menu ul li a.active {
  background: var(--primary-hover);
  color: var(--text-light);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: var(--primary-hover);
}
header .btn {
  background: var(--text-light);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
header .btn:hover {
  background: var(--primary-hover);
  color: var(--text-light);
}
