:root {
  --primary-dark: #187fc0;
  --primary-medium: #d3effa;
  --primary-light: #f3fcff;
  --bg-gray: #bfbfbf;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Navbar Customization */
.navbar {
  background-color: var(--primary-medium);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-dark) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--primary-dark) !important;
  font-weight: 500;
  margin-right: 15px;
}

.btn-donate {
  background-color: var(--primary-dark);
  color: white;
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 600;
}

.btn-donate:hover {
  background-color: var(--primary-medium);
  color: white;
}

.section-common {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background-color: var(--primary-light);
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  color: var(--primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-desc {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.org-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-table {
  margin-bottom: 0;
  width: 100%;
}

.org-table thead th {
  background-color: var(--primary-dark);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 15px;
  border: none;
}

.org-table tbody td {
  padding: 15px;
  vertical-align: middle;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
}

.org-table tbody tr:last-child td {
  border-bottom: none;
}

.org-table tbody tr:hover {
  background-color: var(--primary-light);
}

.badge-role {
  background-color: var(--primary-medium);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Hero Section */
.hero-section-full {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(24, 127, 192, 0.65); */
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper p {
  color: white;
}

.hero-title {
  color: white;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1.1;
  text-align: left;
}

.lead {
  color: #555;
  font-weight: 500;
}

/* Animasi Sederhana (Fade In Up) */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-section-full {
    height: auto;
    padding: 150px 0 100px 0;
  }
}

.hero-carousel-img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Penyesuaian Responsif untuk Layar HP */
@media (max-width: 768px) {
  .program-card {
    flex-direction: column; /* Di HP kembali vertikal */
  }
  .program-card-img-wrapper {
    width: 100%;
    height: 200px; /* Tinggi tetap di HP */
  }
  .program-card-body {
    width: 100%;
    padding: 20px;
  }
}

/* Section Titles */
.section-title {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.about-program-card {
  border: none;
  background-color: var(--primary-dark);
  transition: transform 0.3s;
  border-radius: 15px;
  overflow: hidden;
}

.about-program-card h5 {
  color: var(--primary-light);
  font-weight: 600;
}

.about-program-card p {
  color: var(--primary-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(58, 79, 61, 0.1);
}

.program-card {
  background-color: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(24, 127, 192, 0.2);
}

.program-card-img-wrapper {
  position: relative;
  width: 40%;
  min-height: 100%;
  overflow: hidden;
}

.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-img {
  transform: scale(1.1);
}

.program-card-body {
  padding: 25px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-icon-small {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  padding: 8px;
  background-color: var(--bg-light);
  border-radius: 8px;
  color: var(--primary-blue);
}

.program-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.program-desc {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}

.program-link {
  margin-top: auto;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s;
}

.program-link:hover {
  color: #1469a0;
  gap: 8px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--primary-medium);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 50px 0 20px;
}

footer a {
  color: var(--primary-light);
  text-decoration: none;
}
