  [data-bs-theme="dark"] {
    --bs-dark: #1a2e1a; /* Navbar/footer */
    --bs-body-bg: #0d1a0d; /* Background gelap */
    --bs-success: #66b032; /* Warna hijau lebih terang */
  }

  :root {
  --color-1: #1e9600;
  --color-2: #66b032;
  --color-dark-1: #212529e6;

  /* Warna Primer Hijau */
  --green-500: #28a745;
  --green-600: #218838;
  --green-gradient-start: #1e9600;
  --green-gradient-end: #66b032;

  --bs-bg-opacity: 1;

  /* Override Variabel Bootstrap */
  --bs-success: var(--green-500);
  --bs-success-rgb: 40, 167, 69;
  --bs-success-dark: var(--green-600);

  --bs-badge-color: #13512f;
}

.hero-section-home {
  background-image: url('../img/city-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 113, 26, 0.699);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  /*padding: 2rem;*/
}

.hero-content h1 {
  font-weight: bold;
}

.hero-content p {
  font-size: 1.5rem;
}

/* Gambar lingkaran di pojok bawah kanan */
.circle-image {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 80%;
    height: 80%;
    background-image: url('../img/circle-green.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

/* Responsif: Ukuran lebih kecil di layar kecil */
@media (max-width: 576px) {
  .circle-image {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }
}

img400x200 {width:400px;height:200px;object-fit:cover;}
img500x300 {width:500px;height:300px;object-fit:cover;}

/* IFRAME OUR TEAM*/
/* Desktop */
.iframe-container {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background: #f5f5f5; /* Fallback color */
}

/* Tablet */
@media (max-width: 1024px) {
  .iframe-container {
  height: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .iframe-container {
  height: 100vh;
  }
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.card-kegiatan {
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);        /* jarak antara pinggir card & isinya */
}
.card-kegiatan img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 100%;
  height: 220px;
  /*object-fit: cover;*/
  border-radius: 15px;  /* menyesuaikan radius agar tetap di dalam padding */

}
.pagination .page-link {
  cursor: pointer;
}

.card-kegiatan:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card-kegiatan {
  height: 100%;           /* buat card isi kolom penuh */
}
.card-body {
  flex: 1 1 auto;         /* serap sisa tinggi */
}

/* medsos section*/
.social-icon {
  cursor: pointer;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-icon:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.screenshot {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  cursor: pointer;
  border-radius: .5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
