/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid #e1e1e1;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LEFT SIDE */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* LOGO */
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.8;
}

.logo span {
  font-weight: 400;
  color: #0891b2;
}

/* RIGHT SIDE */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* BUTTON */
.btn {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  color: #666;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  background: #f5f5f5;
  color: #000;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #0891b2;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(8,145,178,0.2);
}

.btn-primary:hover {
  text-decoration: none;
  background: #0e7490;
  color: white;
}

/* LINK BUTTON */
.btn-link {
  color: black;
  font-weight: 600;
}

.btn-link:hover {
  background: transparent;
  color: #0e7490;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.45rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }

  .logo {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .navbar {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .navbar-right {
    width: 100%;
    justify-content: flex-end;
  }
}
