 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #0d0d0d, #ff6600);
  color: #f4f4f4;
  font-family: 'Arial', sans-serif;
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo-img {
    height: 40px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 60px 30px;
}

section h2, section h1 {
  color: #070300;
  margin-bottom: 20px;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  color: #ccc;
}

form {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
}

button {
  background-color: #ff6600;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

#playPauseBtn {
  padding: 10px 20px;
  font-size: 14px;
  background-color: orange;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.4; /* Atur transparansi */
}

#galeri {
  padding: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.video-grid video {
  width: 100%;
  border: 2px solid orange;
  border-radius: 8px;
}

#produk {
  padding: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.produk-item {
  background-color: #111;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid orange;
}

.produk-item img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

wa-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.wa-button:hover {
  background-color: #128C7E;
}

.wa-button {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.wa-button:hover {
  background-color: #128C7E;
}

.wa-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}
.social-share {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.social-share a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-share a:hover img {
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .social-share {
    gap: 15px;
  }

  .social-share a img {
    width: 28px;
    height: 28px;
  }
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 100px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
