html {
  scroll-behavior: smooth;
}

.hero-section {
  min-height: 100vh;
  background-image: url("img/Logo\ KDMP.jpg"); /* ganti dengan path gambar */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

/* Overlay gelap agar teks lebih terbaca */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}
.about-section {
  padding: 50px;
  background-color: brown;
  color: #fff;
  /* height: 1vh; */
}
