/* ===== HERO / BANNER FINAL ===== */

.sinkarkes-hero {
  background: url('../images/banner.jpg') center/cover no-repeat;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center; /* ✅ teks ditengah banner */
  position: relative;
  color: #fff;
}

.sinkarkes-hero::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.sinkarkes-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center; /* ✅ teks di tengah */
}

.sinkarkes-hero-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.sinkarkes-hero .hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent; /* ✅ hilangkan warna hijau */
  color: #fff; /* ✅ ikon putih */
  font-size: 24px;
}

.sinkarkes-hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .sinkarkes-hero {
    height: 240px;
  }
  .sinkarkes-hero h1 {
    font-size: 22px;
  }
}
