html, body {
  
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url("<?= ASSET_USER_URL ?>/img/cover/beranda/hero.jpg") center/cover no-repeat;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(90deg, #5b8cff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* gambar penuh, crop kalau perlu */
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Tambah tanda panah » di menu yang punya submenu */
.dropdown-submenu > a::after {
  content: " »";
  float: right;
}.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Tambah tanda panah » di menu yang punya submenu */
.dropdown-submenu > a::after {
  content: " »";
  float: right;
}