/* ================= HERO SECTION ================= */

.hero {
  min-height: 100vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  padding-top: 110px;

  background: transparent;

  overflow: hidden;

  z-index: 1;
}

/* ================= VIDEO ================= */

.hero-video-wrapper {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  pointer-events: none;
}

/* Video */

.hero-video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  pointer-events: none;
}

/* Overlay */

.hero-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));

  pointer-events: none;
}

/* ================= CONTENT ================= */

.hero-content {
  position: relative;
  z-index: 5;

  text-align: center;

  max-width: 880px;
  width: 100%;

  padding: 0 24px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 18px;

  letter-spacing: 0.6px;
}

.hero-content p {
  font-size: 21px;
  line-height: 1.7;

  margin-bottom: 36px;

  opacity: 0.95;
}

/* ================= BUTTON ================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;

  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #facc15, #fde047);
  color: #0f172a;

  padding: 14px 32px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  box-shadow: 0 6px 18px rgba(250, 204, 21, 0.35);

  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fde047, #facc15);

  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.45);
}

.btn-secondary {
  border: 2px solid #facc15;
  color: #facc15;

  padding: 14px 32px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #facc15;
  color: #0f172a;

  transform: translateY(-4px);

  box-shadow: 0 6px 18px rgba(250, 204, 21, 0.35);
}

/* ================= RESPONSIVE ================= */

/* Laptop kecil */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding-top: 90px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 260px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .hero {
    padding-top: 80px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }
}
