/* =========================
   VIDEO HERO – SUMATRA STONE STORY
========================= */

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* VIDEO */
.video-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

/* CONTENT */
.video-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;
  max-width: 720px;
}

/* TITLE */
.video-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* TITLE */
.video-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  line-height: 1.1;
  margin-bottom: 24px;

  color: #ffffff; /* 🔥 PAKSA PUTIH */
}

/* TEXT */
.video-hero-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* BUTTON (PAKAI YANG SUDAH ADA) */
.video-hero-content .btn-hero {
  width: fit-content;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .video-hero {
    height: 85vh;
  }

  .video-hero-content h1 {
    font-size: 2.4rem;
  }

  .video-hero-content p {
    font-size: 1rem;
  }
}
