html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* SNAP CONTAINER */
.snap-container {
  height: 100vh;
  overflow: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;

  /* HIDE SCROLLBAR */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.snap-container::-webkit-scrollbar {
  display: none;
}

/* EACH PAGE */
.snap-section {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

/* HERO */
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.);
}

/* TEXT KIRI BAWAH */
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  max-width: 420px;
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-content p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}


