 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8b4513;
  padding: 15px 20px;
}

.nav-brand {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-toggle i {
  color: #fff;
}

.sambutan {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(to right, #f5faff, #e6f2ff);
  display: flex;
  justify-content: center; 
}

.sambutan-wrapper {
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #eaf3ff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sambutan-img {
  max-width: 300px; 
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.sambutan-text {
  flex: 1;
  color: #333;
  min-width: 280px;
}

.sambutan-sub {
  color: #1877f2;
  font-weight: bold;
  margin-bottom: 8px;
}

.produk-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.produk-item {
  width: 250px;
  border: 1px solid #8b4513;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color:	#f5f0e9;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 400px; 
}

.produk-item img {
  width: 100%;
  max-height: 220px;          
  object-fit: contain;
  margin-bottom: 15px;
}

.produk-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  min-height: 40px; 
}

.produk-item p {
  margin: 5px 0;
  min-height: 40px; 
}

.produk-container {
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fef9f1; 
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sertifikat {
  background-color: #e7e2e2;
  padding: 60px 20px;
  text-align: center;
  color: #000;
}

.sertifikat h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.sertifikat-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sertifikat-item {
  max-width: 280px;
  cursor: pointer;
}

.sertifikat-item img {
  width: 100%;
  height: 350px; 
  object-fit: contain; 
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background-color: white; 
  padding: 10px; 
}

.sertifikat-item img:hover {
  transform: scale(1.05);
}

.sertifikat-item p {
  margin-top: 10px;
  font-size: 15px;
  color: #000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 15px #000;
  animation: zoomIn 0.3s ease;
}

.modal-caption {
  margin-top: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.harga {
  font-weight: bold;
  color: #5c2e00;
  margin: 10px 0;
}

.btn-pesan {
  background-color: #d9761e;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: auto;
}

.btn-pesan:hover {
  background-color: #b55f14;
}

.btn-checkout {
  display: inline-block;
  margin-top: 40px;
  background-color: #228b22;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-checkout:hover {
  background-color: #1a6e1a;
}

.filter-bar {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.filter-bar input[type="text"] {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 300px;
}

.filter-bar button {
  padding: 10px 20px;
  background-color: #8b4513;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.filter-bar form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.filter-bar select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.keranjang-wrapper {
  margin-top: 20px;
  overflow-x: auto;
}

.keranjang-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.keranjang-wrapper th,
.keranjang-wrapper td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: center;
}

.keranjang-wrapper th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.keranjang-wrapper button {
  background-color: #eee;
  border: none;
  padding: 6px 8px;
  margin: 0 2px;
  border-radius: 4px;
  cursor: pointer;
}

.keranjang-wrapper button:hover {
  background-color: #ccc;
}

#total-harga {
  font-weight: bold;
  font-size: 16px;
  color: #8b4513;
  text-align: right;
  margin-top: 10px;
}

.form {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form form {
  display: flex;
  flex-direction: column;
}

.form label {
  font-weight: bold;
  margin-top: 10px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.form textarea {
  resize: vertical;
  height: 80px;
}

.form button[type="submit"],
.form #kirim-wa {
  margin-top: 20px;
  background-color: #25d366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.form button[type="submit"]:hover,
.form #kirim-wa:hover {
  background-color: #1da851;
}

.kontak-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 30px;
      background: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .kontak-container h3 {
      margin-top: 0;
      color: #333;
    }

    .kontak-container p, .kontak-container a {
      font-size: 16px;
      line-height: 1.6;
      color: #333;
    }

    .kontak-container a {
      color: #007bff;
      text-decoration: none;
    }

    .kontak-container iframe {
      width: 100%;
      height: 350px;
      border: none;
      border-radius: 8px;
      margin-top: 20px;
    }

    body {
      font-family: Arial, sans-serif;
      background: #fff;
    }

.simple-footer {
  background-color: #8b4513;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  border-top: 3px solid #8b4513; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-link {
  margin-top: 12px; 
}

.footer-text {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-link .btn-pengembang {
  display: inline-block;
  padding: 5px 16px;
  background-color: #1b2a38;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.footer-link .btn-pengembang:hover {
  background-color: #757f85;
}

.pengembang-body {
  background-color: #8b4513;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.pengembang-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.univ-logo {
  text-align: center;
  padding-top: 40px; 
  margin-bottom: 16px;
}

.univ-logo-wrapper {
  background-color: #ffffff;
  display: inline-block;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
}

.univ-logo-wrapper img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.pengembang-item {
  background-color: #fff;
  color: #000;
  padding: 15px;
  border-radius: 12px;
  width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-align: center;
}

.pengembang-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8b4513;
  margin-bottom: 10px;
}

.btn-back {
  display: inline-block;
  margin-top: 40px;
  background-color: #1b2a38;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-back-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.btn-back:hover {
  background-color: #757f85;
}

.content-2 {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-2 h2 {
  text-align: center;
  color: #8b4513;
}

.content-2 ol {
  padding-left: 20px;
  line-height: 1.8;
}

.peringatan {
  color: red;
  margin-top: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 999;
    width: 200px;
  }

  .nav-links li a {
    color: #333;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {
.filter-bar form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.filter-bar input[type="text"] {
  flex: 1;
  min-width: 0;
  font-size: 14px;
}

.filter-bar button {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
  background-color: #8b4513;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  height: 100%;
}

  .filter-bar div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px; 
  }

  .filter-bar select {
    width: auto;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
  }
   }

 @media (max-width: 768px) {
  .kontak-container {
    padding: 20px;
  }

  .kontak-container p,
  .kontak-container a {
    font-size: 15px;
  }

  .kontak-container iframe {
    height: 300px;
  }
}

