/* Hero Section */
.hero-bg {
  position: relative;
  height: 400px;
  margin-top: 4rem;    /* atur sesuai kebutuhan */
  margin-bottom: 4rem; /* atur sesuai kebutuhan */

  /* tetap pakai background image inline-style atau di sini */
  /* background: url('{{ Storage::url($bgMenu->path_foto ?? "default.png") }}') center/cover no-repeat; */
}

/* overlay gradasi: transparan di atas, gelap di bawah */
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* gradasi dari transparan ke hitam semi */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.397) 100%
  );
  z-index: 1;
}

.hero-bg h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* pastikan teks di atas overlay */
  color: white;
  font-size: 2.5rem;
  text-align: center;
  width: 100%;
}
