body {
  background-color: #065e07;
}


#product1{
  text-align: center;
}
#product1{
  text-align: center;
  color: white;
}

#product1 .pro-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}


#product1 .pro{
  width: 250px;
  min-width: 250px;
  padding: 10px 12px;
  color: white;
  background-color: #21dc53;
  border: 8px solid #198754;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  margin-top: 15px;
}

#product1 .pro img{
  width: 200px;
  height: 150px;
  border-radius: 20px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 5px 0;
  transition: 0.2s ease;
}

#product1 .pro .des {
  text-align: start;
  padding: 5px;
}

#product1 .pro .des span{
  color: #eaeaea;
  font-size: 15px;
  padding-left: 2px;
}

#product1 .pro .des h5 {
  padding-top: 0px;
  color: white;
  font-size: 30px;
}

#product1 .pro:hover{
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
}
 
#product1 .pro .des i {
  font-size: 20px;
  color: yellow;
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 35px;
  font-weight: 700;
  color:rgb(255, 255, 255);
}

#product1 .pro a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: white;
  font-weight: 500;
  color: #198754;
  border: 1px solid white;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

#banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("images/banner1.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  margin-top: 50px;
  margin-bottom: 50px;
  color: white; /* agar teks tetap terlihat */
  overflow: hidden;
}

#banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Sesuaikan gelap-terangnya */
  z-index: 1;
}

#banner > * {
  position: relative;
  z-index: 2; /* Supaya teks berada di atas overlay */
}

#banner span{
  color: rgb(0, 255, 0);
  font-weight: bold;
}

#banner button {
  font-weight: bold;
      display: inline-block;
      padding: 12px 30px;
      background-color: #21dc53;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
}

#banner button:hover{
  background: #198754;
  color: white;
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
      background-color: #21dc53;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1 1 400px;
      padding-right: 40px;
    }

    .hero-text h1 {
      font-size: 3em;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .hero-text p {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
    }

    .hero-text a {
      display: inline-block;
      padding: 12px 30px;
      background-color: #198754;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .hero-text a:hover {
      background-color: #065e07;
    }

    .hero-image {
      flex: 1 1 600px;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    }

  .hero-text {
    padding-right: 0;
    margin-bottom: 30px;
    }
}

.kategori-container {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.kategori-item {
  width: 80px;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  transition: background-color 0.3s;
  cursor: pointer;
}

    .kategori-item:hover {
      background-color: #21dc53;
    }

    .kategori-item img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 8px;
    }

.kategori-item p {
  font-size: 13px;
  margin: 0;
  color: white;
}

footer {
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}

footer .logo{
  margin-top: 20px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0px 0px 8px 0px;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: white;
  margin-top: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: white;
  padding-right: 4px;
  cursor: pointer;
}