body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

header {
  background-color: #000;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* --- Animasi Hamburger Menu dari Uiverse.io --- */
#burger-checkbox {
  display: none;
}

.burger {
  display: none; /* Default disembunyikan di desktop */
  cursor: pointer;
  z-index: 1001; /* Pastikan berada di atas menu */
}

.burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
}

#burger-checkbox:checked + .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#burger-checkbox:checked + .burger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

#burger-checkbox:checked + .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- End Animasi Hamburger Menu --- */

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #333;
  color: white;
}

.produk-section, .info-section, .kontak-section {
  padding: 20px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-10px);
}

.product-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  /* Tampilkan burger menu di mobile */
  .burger {
    display: inline-block;
  }
  
  /* Sembunyikan nav-links default agar menggunakan animasi dari burger */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #000;
    flex-direction: column;
    width: 200px;
    padding: 15px;
    display: none;
    height: 100%;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  
  /* Tampilkan menu saat burger checkbox aktif */
  #burger-checkbox:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li {
    margin: 8px 0;
  }

  .nav-link {
    padding: 10px 0;
    text-align: right;
  }
}

.demo-btn {
  padding: 25px 16px;
  margin-left: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 400px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.demo-btn:hover {
  background-color: #000;
}