/* Resetting default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('/assets/videos/hero-video.mp4') center center no-repeat;
  background-size: cover;
  z-index: -1;
}

/* Video background via CSS - hidden using background video */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/videos/hero-video.mp4') center center no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0;  /* Background video will not be seen */
  visibility: hidden; /* Hide it completely */
}

/* Hero content (teks) */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: lighter;
  letter-spacing: 1px;
}
