/* Reset & Global */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  position: relative; /* Agar overlay bisa absolute terhadap body */
  min-height: 100vh;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/tanitani.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px); /* Blur langsung */
  opacity: 0.5;
  z-index: -1;
}

.main-content {
  position: relative;
  z-index: 1; /* Pastikan konten ada di atas overlay */
  color: #fff; /* Warna teks agar tetap terbaca */
}

.hero-content {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
}

.tani-ketua-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.tani-ketua-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tani-ketua-sambutan {
  max-width: 550px;
  background: #ffffffc9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.tani-kegiatan-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.tani-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tani-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tani-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tani-info {
  padding: 1rem;
}

.tani-info h3 {
  margin: 0 0 0.5rem;
  color: #2c3e50;
}

.tani-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.tani-date {
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .tani-ketua-layout {
    flex-direction: column;
    text-align: center;
  }

  .tani-ketua-sambutan {
    text-align: center;
  }

  .tani-card {
    width: 90%;
  }
}

@media (max-width: 768px) {
    .kt-kegiatan-gallery {
        grid-template-columns: 1fr;
    }
}
