* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: white;
  height: 100vh;
}

.hero-content {
  flex: 1;
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.hero-button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #cd671d;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #814d09;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    justify-content: center; /* Membawa konten ke tengah secara vertikal */
    height: auto; /* Menyesuaikan tinggi sesuai konten */
  }

  .hero-content {
    padding-right: 0;
    padding-top: 20px; /* Menambah jarak dari atas */
    padding-bottom: 20px; /* Menambah jarak ke bawah */
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-button {
    font-size: 0.9rem;
  }

  .hero-image {
    display: none; /* Menyembunyikan elemen gambar */
    height: 0; /* Menghapus tinggi elemen */
  }
}



#logo {
	text-decoration: none;
	color: white;
	font-size: 5vh;
	font-weight: bold;
}

#menu-icon {
	font-family: Geneva, sans-serif;
	font-size: 6vh;
}

/* Section Lugu */
.lugu-section {
  padding: 40px 20px;
  background-color: #fa9417;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
}

.lugu-container {
  text-align: center;
}

.lugu-image {
  max-width: 350px;
  margin: 0 auto 20px;
  display: block;
}

.lugu-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: black;
  line-height: 1.8;
}

.bli-meaning {
  list-style: none;
  text-align: left;
  padding: 0;
  margin-top: 20px;
}

.bli-meaning li {
  margin-bottom: 15px;
}

.bli-meaning strong {
  color: #A91D3A;
  font-size: 1.2rem;
}

.bli-meaning span {
  font-weight: bold;
  color: #333;
}

.mt-5 {
  margin-top: 30px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .lugu-section {
    padding: 20px;
  }

  .lugu-description {
    font-size: 1rem;
  }

  .bli-meaning strong {
    font-size: 1rem;
  }

  .bli-meaning li {
    margin-bottom: 10px;
  }
}

/* Hero Section Styles */
.hero-peta-section {
  position: relative;
  height: 100vh;
  background: url('img/hero_peta.png') no-repeat center center/cover;
}

.hero-peta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Overlay hitam dengan opacity */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-peta-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-peta-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-peta-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff; /* Warna putih */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1); /* Bayangan gelap */
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-peta-section {
      background-size: cover; /* Sesuaikan ukuran gambar */
      background-position: center; /* Posisikan gambar di tengah atas */
  }
  .hero-peta-section {
      height: 45vh;
     
  }
  
  .hero-peta-title {
      font-size: 2rem;
  }

  .hero-peta-subtitle {
      font-size: 1rem;
  }
}

.hero-peta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #A91D3A; /* Warna biru */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-peta-button:hover {
  background-color: #b83f57; /* Warna biru lebih gelap saat hover */
  transform: scale(1.05); /* Efek zoom ringan saat hover */
}

.hero-peta-button:active {
  background-color: #db6e84; /* Warna biru lebih gelap saat diklik */
  transform: scale(0.95); /* Efek klik */
}