:root {
  --primary: #5e58b6;
  --primary-hover: #4b4691;
  --bg: #010101;
  --bg-card: #1c1c1c;
  --text: #ffffff;
  --text-muted: #cbd5e1;
  --border: #513c28;
  --nav-bg: rgba(1, 1, 1, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  /* Atur scrolling mulus untuk halaman per halaman */
  scroll-behavior: smooth;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

a {
  color: var(--text);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

/* Memastikan feather icon selaras dengan text */
.feather {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
