/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b0b0b;
  color: #e5e5e5;
  text-align: justify;
  text-justify: inter-word;
}

/* ===== PAGE WRAPPER ===== */
header, main, footer {
  max-width: 900px;
  margin: 24px auto;
  background: #000;
  border: 1px solid #1f1f1f;
  border-radius: 6px;
}

/* ===== INNER PADDING ===== */
header > *, 
main > *, 
footer > * {
  padding: 18px 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f1f1f;
}

.logo {
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
}

/* ===== MENU ===== */
.menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.menu a:hover {
  color: #d4af37;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border: 1px solid #222;
  min-width: 180px;
  z-index: 10;
}

.submenu li {
  list-style: none;
}

.submenu a {
  display: block;
  padding: 8px 16px;
}

.submenu a:hover {
  background: #1a1a1a;
}

.dropdown:hover .submenu {
  display: block;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #000, #1a1a1a);
}

.hero h1 {
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 760px;
  margin: auto;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}

a {
  color: #27C8F5; /* cukup gelap */
  text-decoration: underline;
}
a:hover {
  color: #ffcc00; /* highlight aman */
}

/* ===== CONTENT ===== */
.content {
  padding: 32px 20px;
  line-height: 1.7;
}

.content a {
	color:#296AFF;
}
.related-content {
  margin: 48px 0 32px;
  padding: 24px 28px;
  background: linear-gradient(180deg, #111, #0b0b0b);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
}

.related-content h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: gold;
}

.related-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-content li {
  margin-bottom: 10px;
}

.related-content li:last-child {
  margin-bottom: 0;
}

.related-content a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.related-content a:hover {
  color: gold;
  text-decoration: underline;
}

.featured-image {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.featured-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  padding: 25px 0;
  margin-top: 40px;
  color: #ccc;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-nav ul {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav a {
  color: #d4af37; /* gold elegant */
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 14px;
  text-align: center;
  color: #aaa;
}

.footer-copy a {
  color: #d4af37;
  text-decoration: none;
}

.footer-copy a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
h1 {
font-size: 24px;
}
}

}
