html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0b0b0b;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
}

::-webkit-scrollbar-track {
  background: #111;
}

/* Hero Fade Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section h1,
section p,
section a,
section span {
  animation: fadeUp 1s ease forwards;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 9999px;
  background: #1f1f1f;
  color: white;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #eab308;
  color: black;
}

.filter-btn.active {
  background: #eab308;
  color: black;
  font-weight: 600;
}
