/* Pengaturan Background & Overlay Hero Section */
.hero-section,
#hero {
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay hitam 40% */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2; /* Menjaga teks & logo tetap terlihat jelas di atas overlay */
}