<style>
    * { box-sizing: border-box; }
    body { margin: 0; background-color: white; }
    .navbar {
      overflow: hidden;
      background-color: #333;
      font-family: Arial, Helvetica, sans-serif;
      text-align: center;
    }
    .navbar a, .dropbtn {
      float: left;
      font-size: 16px;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      font: inherit;
      margin: 0;
    }
    .dropdown { float: left; overflow: hidden; }
    .navbar a:hover, .dropdown:hover .dropbtn { background-color: white; color: #333; }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 300px;
      left: 0;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      width: 100%;
    }
    .dropdown-content .header {
      background: white;
      padding: 16px;
      color: black;
      text-align: left;
    }
    .dropdown:hover .dropdown-content { display: block; }
    .container { overflow: hidden; margin-top: 10px; }
    .filterDiv {
      float: left;
      text-align: center;
      margin: 2px;
      display: none;
      width: 100%;
    }
    .show { display: block; }
    .btn {
      border: none;
      outline: none;
      padding: 12px 16px;
      background-color: #f1f1f1;
      cursor: pointer;
      margin-bottom: 5px;
    }
    .btn:hover { background-color: #ddd; }
    .btn.active {
      background-color: #666;
      color: white;
    }
    ul { text-align: left; }
    section { margin: 20px auto; max-width: 700px; }
    @media screen and (max-width: 600px) {
      .filterDiv { width: 100%; height: auto; }
      .navbar a, .dropbtn { float: none; display: block; }
    }
	.standard-link {
	  color: blue !important;
	  text-decoration: underline !important;
	}

  </style>

<style>
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Slideshow container - FULL WIDTH dengan gambar utuh */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.mySlides {
  display: none;
  width: 100%;
  text-align: center;
}

/* Tampilkan slide pertama */
.mySlides:first-child {
  display: block;
}

.slide-link {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.slide-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Gambar utuh tidak terpotong */
.slide-content img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background-color: #f0f0f0;
}

/* Hover effect */
.slide-link:hover .slide-content img {
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
  z-index: 100;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

/* Overlay untuk button WhatsApp - DIKECILKAN & DIPERBAIKI */
.wa-overlay {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 10px;
}

/* WhatsApp badge - UKURAN LEBIH KECIL & RAPI */
.wa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 8px 18px; /* Dikecilkan */
  border-radius: 25px; /* Dikecilkan */
  font-weight: 600; /* Sedikit lebih tipis */
  font-size: 14px; /* Dikecilkan */
  animation: pulse 2s infinite;
  border: 1.5px solid white;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  white-space: nowrap; /* Mencegah teks pindah baris */
  max-width: 90%; /* Mencegah terlalu lebar */
  margin: 0 auto;
}

.wa-badge i {
  font-size: 16px; /* Icon lebih kecil */
}

.wa-badge:hover {
  background-color: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes pulse {
  0% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); 
  }
  70% { 
    transform: scale(1.03); 
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); 
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); 
  }
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Floating WhatsApp Button - juga dikecilkan */
.floating-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 55px; /* Dikecilkan */
  height: 55px; /* Dikecilkan */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px; /* Dikecilkan */
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-wa:hover {
  background-color: #1da851;
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments - UTAMAKAN MOBILE */
@media only screen and (max-width: 1200px) {
  .slide-content img {
    max-height: 450px;
  }
  
  .wa-badge {
    padding: 7px 16px;
    font-size: 13.5px;
  }
}

@media only screen and (max-width: 992px) {
  .slide-content img {
    max-height: 400px;
  }
  
  .wa-badge {
    padding: 7px 15px;
    font-size: 13px;
    gap: 7px;
  }
  
  .wa-badge i {
    font-size: 15px;
  }
  
  .prev, .next {
    padding: 14px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .slide-content img {
    max-height: 350px;
  }
  
  .wa-overlay {
    bottom: 12px;
    padding: 0 15px;
  }
  
  .wa-badge {
    padding: 6px 14px;
    font-size: 12.5px;
    gap: 6px;
    border-radius: 22px;
    max-width: 85%;
  }
  
  .wa-badge i {
    font-size: 14px;
  }
  
  .prev, .next {
    padding: 12px;
    font-size: 18px;
  }
  
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .slide-content img {
    max-height: 300px;
  }
  
  .wa-overlay {
    bottom: 10px;
    padding: 0 10px;
  }
  
  .wa-badge {
    padding: 5px 12px;
    font-size: 12px;
    gap: 5px;
    border-radius: 20px;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .wa-badge i {
    font-size: 13px;
  }
  
  /* Perpendek teks untuk mobile sangat kecil */
  .wa-badge span.long-text {
    display: none;
  }
  
  .wa-badge span.short-text {
    display: inline;
  }
  
  .prev, .next {
    padding: 10px;
    font-size: 16px;
  }
  
  .floating-wa {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 400px) {
  .slide-content img {
    max-height: 250px;
  }
  
  .wa-overlay {
    bottom: 8px;
  }
  
  .wa-badge {
    padding: 4px 10px;
    font-size: 11px;
    gap: 4px;
    border-radius: 18px;
    max-width: 75%;
  }
  
  .wa-badge i {
    font-size: 12px;
  }
  
  .floating-wa {
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 320px) {
  .slide-content img {
    max-height: 220px;
  }
  
  .wa-badge {
    padding: 4px 8px;
    font-size: 10px;
    max-width: 70%;
  }
  
  .wa-badge i {
    font-size: 11px;
  }
}
</style>
