/* ===== Typography Revised ===== */
h1 {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.8rem;
 text-shadow:0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
  margin-top: -20px;
}

h2, h3, h5, h6 {
   color: #ffffff;
  font-weight: 700;
  text-shadow:0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}

h4 {
   color: #ffffff;
  font-weight: 800;
  font-size: 2.2rem;
 text-shadow:0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}

p, li {
   color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}

/* ===== Hero Section ===== */
.hero-section p {
  font-size: 1.2rem;
   color: #ffffff;
  font-weight: 500;
  text-shadow:0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}

/* ===== Card Custom - Improved Readability ===== */
.card-custom {
  border-radius: 1rem;
  border: none;
  background: rgba(0, 0, 0, 0.397); /* sedikit lebih tebal dari sebelumnya */
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 255, 255, 0.15);
  color: #ffffff;

}

.card-custom .card-header {
   color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
   text-shadow:0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}

.card-custom .card-body {
  padding: 1.5rem;
  font-size: 1rem;
   color: #ffffff;
  text-shadow:0 1px 3px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}

/* ===== Highlight Utility ===== */
.highlight {
  background-color: rgba(0, 0, 0, 0.454);
   color: #ffffff;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 0.4rem;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.25);
  text-shadow:  0 1px 3px rgb(0, 0, 0), /* bayangan gelap lembut */
    0 0 6px rgb(0, 0, 0);   /* efek tambahan glow ringan */
}

/* ===== Responsive Improvements ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }

  h4 {
    font-size: 1.6rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .card-custom {
    margin-bottom: 1rem;
  }

  .ratio {
    aspect-ratio: 16 / 9;
  }

  .card-custom .card-body {
    font-size: 0.95rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.6rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .card-custom {
    margin-bottom: 1rem;
  }
  .ratio {
    aspect-ratio: 16 / 9;
  }
}

#lokasi.about-section {
  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;

  /* Ukuran dan layout */
  max-width: 800px;         /* batasi lebar maksimum */
  margin: 0 auto 1rem;      /* center secara horizontal dan beri jarak bawah */
  padding: 30px 15px;       /* padding atas-bawah dan kiri-kanan */
  border-radius: 0.75rem;   /* opsional: sudut membulat sedikit */
}
@media (max-width: 768px) {
  #lokasi.about-section {
    padding: 20px 10px;
    max-width: 100%;
  }
}

.card-body p {
  text-align: justify;
  hyphens: auto;
}

/* Untuk membuat card tidak terlalu besar dan lebih proporsional */
@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 45%;
  }
}

