/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #0f0f1a;
  color: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #1a1a2e;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* jarak antara logo dan teks */
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
}

.logo img {
  height: 40px; /* sesuaikan ukuran logo */
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700;
}

.btn-primary {
  background: #ffd700;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ff9900;
  color: #fff;
}

.hero {
  display: flex !important;        /* pakai flex */
  flex-direction: column !important; /* paksa kolom (atas-bawah) */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: #000;
}

.hero-banner {
  width: 100%;
}

.hero-banner img {
  width: 100%;
  max-width: 1000px;   /* lebar maksimal 1000px */
  height: 1000px;      /* tinggi tetap 1000px */
  object-fit: cover;   /* potong gambar biar tidak gepeng */
  margin: 0 auto 20px; /* center + kasih jarak bawah */
  display: block;
  border-radius: 10px; /* opsional */
}
.hero-text {
  max-width: 800px;
}


.features, .bonus, .contact {
  padding: 50px 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature {
  background: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
}

.bonus ul {
  list-style: none;
  margin: 20px 0;
}

.bonus ul li {
  margin: 10px 0;
  font-size: 1.2rem;
}

.artikel {
  padding: 50px 20px;
  background: #0f0f1a;
  text-align: center;
  line-height: 1.8;
}

.artikel h2 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 2rem;
}

.artikel p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  color: #ddd;
}


footer {
  text-align: center;
  padding: 20px;
  background: #111;
  margin-top: 30px;
}
