html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
  transition: background 0.3s, color 0.3s;
}

/* Navbar */
.container {
  width: 85%;
  margin: auto;
}

.navbar {
  background: hsl(263, 88%, 36%);
  padding: 10px 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
}

.menu li {
  display: inline-block;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.menu a:hover {
  background: #fea10d;
  color: black;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .navbar-box {
    flex-direction: column;
    align-items: center;
  }
  .menu {
    gap: 8px;
    justify-content: center;
  }
  .menu a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}

.logo-kiri,
.logo-kanan {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

/* Dark Mode Button */
.mode-container {
  text-align: right;
  padding: 10px 20px;
}

.mode-container button {
  padding: 8px 15px;
  background: #0509f5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.mode-container button:hover {
  background: #01070d;
}



/* Konten Wisata */
.konten-wisata {
  padding: 30px 15%;
}

.konten-wisata h1 {
  color: hsl(263, 88%, 36%);
  text-align: center;
}

.konten-wisata p {
  text-align: justify;
  line-height: 1.6;
}

.konten-wisata ol {
  padding-left: 20px;
}

.konten-wisata img {
  width: 100%;
  max-width: 700px;
  margin: 10px 0;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
