/* =======================================
   MODERN GLASS HEADER
======================================= */
.jch-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.jch-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand area */
.jch-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jch-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #FACC15, #eab308 40%, #1E3A8A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0b1120;
  font-size: 20px;
}

.jch-logo img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 999px;
}

.jch-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jch-brand-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.jch-brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Desktop nav */
.jch-nav {
  display: flex;
}

.jch-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jch-menu li a {
  color: var(--text-main);
  font-size: 0.9rem;
  opacity: 0.85;
  position: relative;
  padding-bottom: 3px;
}

.jch-menu li a:hover {
  opacity: 1;
  color: var(--gold);
}

/* Underline hover */
.jch-menu li a::after {
  content: "";
  height: 2px;
  width: 0%;
  background: #FACC15;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width .25s ease;
}

.jch-menu li a:hover::after,
.jch-menu li.current-menu-item > a::after {
  width: 100%;
}

/* Header CTA */
.jch-header-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(to right, #FACC15, #FDE047);
  color: #111;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile toggle */
.jch-menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* Mobile menu panel */
.jch-mobile-menu {
  display: none;
  background: rgba(15, 23, 42, 0.95);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(148,163,184,0.35);
}

.jch-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jch-mobile-links a {
  font-size: 1rem;
  color: #fff;
}

.jch-mobile-cta {
  display: block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #FACC15;
  color: #111;
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {

  .jch-nav {
    display: none;
  }

  .jch-header-cta {
    display: none;
  }

  .jch-menu-toggle {
    display: block;
  }

  .jch-header-inner {
    padding: 14px 18px;
  }
}
/* ---------------------------------------------------------
   PAGE HEADER
---------------------------------------------------------- */

.holy-bible-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 30px;

  .holy-bible-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }

  .holy-bible-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 25px;
  }

  .holy-bible-intro {
    max-width: 740px;
    margin: auto;
    font-size: 1rem;
    opacity: 0.9;
  }
}

