/* ================================
   HERO SECTION - BERANDA
   ================================ */
.hero {
  padding: 4rem 0 2rem 0;
  min-height: 70vh;
}

.hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-text {
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: bold;
}

.brand-title {
  color: #000000;
  font-weight: 400;
}

.brand-title-alt {
  color: #335ffe;
  font-weight: bold;
}

.hero-welcome {
  display: none;
  /* Sembunyikan kotak welcome */
}

.hero-description {
  font-size: 20px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 1rem;
  text-align: center;
}

.hero-description strong {
  color: #335ffe;
  font-weight: 600;
}

/* Jika ingin link bisa diklik */
.hero-description a {
  color: #335ffe;
  text-decoration: none;
  font-weight: 600;
}

.hero-description a:hover {
  text-decoration: underline;
}

.hero-image {
  padding: 0;
  margin-bottom: 0;
}

.hero-image-wrapper {
  justify-content: center;
  display: flex;
}

.hero-image-wrapper img {
  width: 1080px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description,
  .hero-guide {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 0 1rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description,
  .hero-guide {
    font-size: 0.9rem;
  }
}
