/* ====== Global Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0e0e10; /* hitam keunguan */
  color: #e0e0e8;
  line-height: 1.7;
  padding-bottom: 50px;
}

/* ====== Navbar ====== */
.navbar {
  background: linear-gradient(90deg, #5b21b6, #7e22ce);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* ====== Main Section ====== */
.section {
  max-width: 900px;
  margin: 3rem auto;
  background: rgba(30, 30, 45, 0.6);
  border: 1px solid rgba(120, 70, 200, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(120, 70, 200, 0.15);
  backdrop-filter: blur(10px);
}

.section h2 {
  color: #a855f7;
  border-left: 4px solid #9333ea;
  padding-left: 10px;
  margin-top: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.section p {
  margin: 1rem 0;
  color: #d1c4e9;
  font-size: 1rem;
}

/* ====== Lists ====== */
.section ul {
  margin-top: 1rem;
  padding-left: 1rem;
}

.section li {
  background: rgba(75, 0, 130, 0.2);
  border-left: 3px solid #8b5cf6;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s;
}

.section li:hover {
  background: rgba(138, 43, 226, 0.35);
}

/* ====== Images ====== */
.section img {
  margin: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
  transition: transform 0.3s;
}

.section img:hover {
  transform: scale(1.05);
}

/* ====== Footer ====== */
footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem 0;
  background: #1a1a1d;
  color: #bdb4d2;
  font-size: 0.9rem;
  border-top: 1px solid rgba(120, 70, 200, 0.3);
}

/* ====== Link Hover ====== */
a:hover {
  text-decoration: underline;
  color: #d8b4fe;
}
