body {
  background: linear-gradient(to bottom right, #0b3d2e, #1a472a);
  color: #f4f4f4;
  font-family: "Segoe UI", sans-serif;
}

/* ===== Navbar Active State ===== */
header {
  background: #14532d;
  border-radius: 12px;
  padding: 12px 20px;
}

header .nav-link {
  color: #d9f99d !important;
  transition: all 0.3s ease;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 6px;
}

header .nav-link:hover {
  color: #facc15 !important;
  background: rgba(34, 197, 94, 0.1);
}

header .nav-link.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff !important;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

header .nav-link.active:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #fef08a !important;
}

header .btn-primary {
  background: #22c55e;
  border: none;
  transition: 0.3s ease;
}

header .btn-primary:hover {
  background: #16a34a;
  transform: scale(1.05);
}

/* ===== Content Styles (tetap sama) ===== */
h2 {
  color: #d9f99d;
  font-weight: bold;
}

p {
  color: #fef9c3;
  text-align: justify;
}

footer {
  background: #14532d;
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
}

footer .nav-link {
  color: #d9f99d !important;
}

footer .nav-link:hover {
  color: #facc15 !important;
}

footer p {
  color: #fef9c3;
}

/* ===== Mobile Spacing Fix ===== */
/* ===== Mobile Navbar Top Spacing ===== */
@media (max-width: 991.98px) {
  /* Jarak antara burger icon dengan menu pertama (Home) */
  .navbar-collapse .navbar-nav {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(250, 204, 21, 0.3);
  }

  /* Jarak antara menu terakhir (About) dengan tombol Login */
  .navbar-collapse .d-flex {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(250, 204, 21, 0.3);
  }
}
