body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  overflow: auto;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* agar video tidak mengganggu klik */

}

.overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #9a2a0a;
  padding-top: 250px;
}

.overlay h1 {
  margin-top: 120px;
  font-size: 70px;
  font-weight: bold;
  color: green;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.overlay p {
  font-size: 36px;
  color: gold;
}

.logo {
  width: 292px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.menu-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 10px;
}

.icon-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-img:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.website-button {
  display: inline-block;
  padding: 20px 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  z-index: 2;
  position: relative;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .overlay {
    padding-top: 180px;
  }

  .overlay h1 {
    font-size: 32px;
    margin-top: 40px;
  }

  .overlay p {
    font-size: 18px;
  }

  .logo {
    width: 125px;
  }

  .menu-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .icon-img {
    width: 100px;
    height: 100px;
  }

  .website-button {
    padding: 14px 20px;
    font-size: 14px;
  }
} /* <- PASTIKAN ditutup di sini */

@media (max-width: 480px) {
 .overlay {
  padding-top: 150px;
}
 .overlay h1 {
  font-size: 24px;
  margin-top: 30px;
}
  .overlay p {
    font-size: 16px;
  }

  .menu-icons {
    grid-template-columns: repeat(2, 1fr);
  }

 .icon-img {
    width: 100px;
    height: 100px;
  }
}