/*Beranda*/
#hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0)
    ),
    url(asset/pic-9.jpg);
  background-size: cover; /* Membuat gambar menutupi seluruh elemen */
  background-position: center; /* Memusatkan gambar */
  background-repeat: no-repeat; /* Menghindari pengulangan gambar */
  width: 100%; /* Lebar elemen 100% */
  height: 100vh; /* Tinggi elemen sesuai tinggi viewport */
}
.hero {
  margin-top: 200px;
}
.whatsapp-button {
  z-index: 1;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 20px;
  color: #fff;
  background-color: #25d366;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.whatsapp-button:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

/* zona */
#zona {
  padding: 70px 0;
}
#zona .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#zona .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* tentang */
#tentang {
  padding: 70px 0;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.counter {
  font-size: 5rem;
  font-weight: bold;
  color: #333;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* video */
/* Perbaikan untuk elemen video agar terlihat lebih modern */
.ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Rasio 16:9 */
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px; /* Sudut yang lebih membulat */
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.ratio:hover {
  transform: scale(1.02); /* Sedikit membesar saat di-hover */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ratio video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px; /* Agar sudut video juga ikut membulat */
}

/* footer */
/* Footer */
.footer {
  background-color: #1a1a1a; /* Warna latar belakang lebih gelap */
  color: #f8f9fa; /* Warna teks lebih terang */
  padding: 70px 0; /* Padding atas dan bawah lebih besar */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-menu {
  list-style-type: none;
  padding: 0;
}

.footer-menu-list {
  margin-bottom: 10px; /* Jarak antar item lebih jelas */
}

.footer-menu-list a {
  color: #adb5bd !important; /* Warna link lebih netral */
  transition: color 0.3s ease;
}

.footer-menu-list a:hover {
  color: #ffc107 !important; /* Berubah warna saat di-hover */
}

/* Ikon Media Sosial */
.bi-instagram,
.bi-tiktok,
.bi-facebook {
  font-size: 1.5rem;
  color: #fff;
  border: none;
  padding: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.bi-instagram:hover {
  color: #e1306c; /* Warna Instagram */
  transform: scale(1.1);
}

.bi-tiktok:hover {
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  transform: scale(1.1);
}

.bi-facebook:hover {
  color: #1877f2; /* Warna Facebook */
  transform: scale(1.1);
}

.footer-content h5 {
  color: #ffc107; /* Warna judul lebih menonjol */
  position: relative;
  padding-bottom: 10px;
}

.footer-content h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #ffc107; /* Garis bawah pada judul */
}
