.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}

.footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 5px;
}

.social-icon {
  font-size: 18px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-icon:hover {
  color: #0d6efd;
  transform: translateY(-3px);
}

.tentang-section {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
}

/* Shape modern (pengganti rounded-edge lama) */
.tentang-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background: #e9ecef;
  clip-path: ellipse(80% 100% at 50% 0%);
  z-index: 0;
}

/* Pastikan konten di atas shape */
.tentang-section .container {
  position: relative;
  z-index: 2;
}

/* Image animation */
.image-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.image-wrapper img {
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.08);
}

/* Button efek */
.btn-custom {
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Text spacing biar lega */
.tentang-section p {
  line-height: 1.7;
}
