/* ============================================================
   TRUE GOSPEL CANADA — Bible Reader CSS
   ============================================================ */

/* ── LAYOUT ──────────────────────────────────────────────────── */
.bible-page { background: var(--parchment); }

.bible-layout {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  min-height: calc(100vh - 108px);
  max-width: 1400px;
  margin: 0 auto;
  border-left: .5px solid var(--border);
  border-right: .5px solid var(--border);
}

/* ── LEFT SIDEBAR — book list ────────────────────────────────── */
.bible-sidebar {
  border-right: .5px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 108px;
  height: calc(100vh - 108px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
}
.bible-sidebar::-webkit-scrollbar { width: 4px; }
.bible-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.bible-sidebar-head {
  padding: .75rem;
  border-bottom: .5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}
.bible-search-form {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--parchment);
  border: .5px solid var(--border);
  border-radius: var(--radius);
  padding: .35rem .6rem;
  transition: border-color var(--trans);
}
.bible-search-form:focus-within { border-color: var(--gold-dk); }
.bible-search-form .ti { color: var(--muted); font-size: .9rem; flex-shrink: 0; }
.bible-search-form input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--ui); font-size: .82rem; color: var(--text); min-width: 0;
}
.bible-search-form input::placeholder { color: var(--muted); }
.bible-search-form button {
  background: var(--gold-dk); color: #fff; border: none;
  border-radius: 4px; padding: .2rem .55rem;
  font-family: var(--ui); font-size: .72rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
}
.bible-search-form button:hover { background: var(--gold); }

.bible-book-nav { padding: .5rem; flex: 1; }
.bible-testament-label {
  font-family: var(--ui); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  padding: .6rem .4rem .35rem; margin-top: .35rem;
}
.bible-book-grid { display: flex; flex-direction: column; gap: 1px; }
.bible-book-btn {
  display: block; padding: .42rem .7rem;
  font-family: var(--ui); font-size: .82rem; color: var(--text-lt);
  text-decoration: none; border-radius: 5px;
  transition: background var(--trans), color var(--trans);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bible-book-btn:hover { background: var(--parch-dk); color: var(--text); text-decoration: none; }
.bible-book-btn.active { background: rgba(154,117,48,.12); color: var(--gold-dk); font-weight: 600; }

/* ── MAIN READER ─────────────────────────────────────────────── */
.bible-main { padding: 1.75rem 2rem 3rem; min-width: 0; }

/* Chapter header */
.bible-chapter-header { margin-bottom: 1.75rem; }
.bible-chapter-nav-top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.bible-nav-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ui); font-size: .82rem; color: var(--gold-dk);
  text-decoration: none; padding: .45rem .85rem;
  border: .5px solid var(--border); border-radius: var(--radius);
  background: var(--white); transition: all var(--trans);
  white-space: nowrap;
}
.bible-nav-btn:hover { border-color: var(--gold-dk); box-shadow: var(--shadow); text-decoration: none; }
.bible-nav-btn--outline { color: var(--muted); }
.bible-chapter-nav-top .bible-nav-btn:last-child { justify-content: flex-end; margin-left: auto; }

.bible-chapter-select-wrap select {
  font-family: var(--ui); font-size: .88rem; color: var(--text);
  border: .5px solid var(--border); border-radius: var(--radius);
  padding: .45rem .75rem; background: var(--white); cursor: pointer;
  outline: none; transition: border-color var(--trans);
}
.bible-chapter-select-wrap select:focus { border-color: var(--gold-dk); }

.bible-chapter-title {
  font-family: var(--font); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400; color: var(--text); margin-bottom: .5rem;
}
.bible-chapter-meta {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-family: var(--ui); font-size: .78rem; color: var(--muted);
}
.bible-gateway-link {
  display: inline-flex; align-items: center; gap: .2rem;
  color: var(--gold-dk); font-weight: 600;
  text-decoration: none; transition: color var(--trans);
}
.bible-gateway-link:hover { color: var(--gold); }
.bible-gateway-link .ti { font-size: .7rem; }

/* ── VERSE TEXT ──────────────────────────────────────────────── */
.bible-text {
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text);
  max-width: 700px;
}
.bible-verse {
  display: inline;
  position: relative;
  border-radius: 3px;
  transition: background var(--trans);
  cursor: default;
  scroll-margin-top: 140px; /* offset for sticky header so #vN hash anchors land correctly */
}
.bible-verse:hover { background: rgba(201,168,76,.06); }
.bible-verse--highlight { background: rgba(201,168,76,.18) !important; border-radius: 3px; }
.bible-verse--indexed { }

.bible-verse-num {
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold-dk);
  vertical-align: super;
  line-height: 0;
  margin-right: .2rem;
  user-select: none;
  cursor: pointer;
}
.bible-verse-text { }

/* Index ref button inline */
.bible-ref-btn {
  display: inline-flex; align-items: center; gap: 2px;
  background: rgba(154,117,48,.1); border: .5px solid rgba(154,117,48,.3);
  border-radius: 3px; color: var(--gold-dk); font-family: var(--ui);
  font-size: .65rem; font-weight: 700; padding: 1px 4px;
  cursor: pointer; margin-left: 3px; vertical-align: middle;
  transition: background var(--trans); line-height: 1;
}
.bible-ref-btn:hover { background: rgba(154,117,48,.2); }
.bible-ref-btn .ti { font-size: .7rem; }

/* Inline ref panel */
.bible-ref-panel {
  display: block;
  background: var(--white);
  border: .5px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem;
  margin: .35rem 0 .35rem 1rem;
  box-shadow: var(--shadow);
}
.bible-ref-panel[hidden] { display: none; }
.bible-ref-entry {
  display: flex; align-items: center; gap: .5rem;
  padding: .35rem .4rem; border-radius: 4px;
  text-decoration: none; color: var(--text);
  font-family: var(--ui); font-size: .82rem;
  transition: background var(--trans);
}
.bible-ref-entry:hover { background: var(--parch-dk); text-decoration: none; color: var(--text); }
.bible-ref-entry small { color: var(--muted); font-size: .72rem; margin-left: auto; }
.bible-ref-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Bottom nav */
.bible-chapter-nav-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: .5px solid var(--border);
  gap: .75rem;
}

/* Chapter grid (book overview) */
.bible-chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: .5rem;
  max-width: 700px;
}
.bible-chapter-card {
  display: flex; align-items: center; justify-content: center;
  height: 52px; background: var(--white); border: .5px solid var(--border);
  border-radius: var(--radius); font-family: var(--ui); font-size: .95rem;
  font-weight: 600; color: var(--text); text-decoration: none;
  transition: all var(--trans);
}
.bible-chapter-card:hover { border-color: var(--gold-dk); color: var(--gold-dk); box-shadow: var(--shadow); transform: translateY(-1px); text-decoration: none; }

/* ── SEARCH RESULTS ──────────────────────────────────────────── */
.bible-search-results { display: flex; flex-direction: column; gap: .5rem; max-width: 720px; }
.bible-search-result {
  display: flex; flex-direction: column; gap: .3rem;
  padding: .85rem 1rem; background: var(--white);
  border: .5px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: inherit; transition: all var(--trans);
}
.bible-search-result:hover { border-color: var(--gold-dk); box-shadow: var(--shadow); transform: translateX(2px); text-decoration: none; color: inherit; }
.bible-result-ref { font-family: var(--ui); font-size: .8rem; font-weight: 700; color: var(--gold-dk); }
.bible-result-text { font-family: var(--font); font-size: .95rem; color: var(--text); line-height: 1.6; }
.bible-result-text mark { background: rgba(201,168,76,.25); color: var(--text); border-radius: 2px; padding: 0 2px; }
.bible-search-more { font-family: var(--ui); font-size: .82rem; color: var(--muted); text-align: center; padding: 1rem; }

/* ── LANDING PAGE ────────────────────────────────────────────── */
.bible-landing { max-width: 800px; }
.bible-landing-icon { font-size: 3rem; color: var(--gold-dk); margin-bottom: 1rem; }
.bible-landing h1 { font-family: var(--font); font-size: 2rem; font-weight: 400; color: var(--text); margin-bottom: .5rem; }
.bible-landing > p { font-family: var(--ui); font-size: .95rem; color: var(--muted); margin-bottom: .35rem; }
.bible-landing-sub { margin-bottom: 2rem !important; }
.bible-testament-section h2 { font-family: var(--font); font-size: 1.1rem; font-weight: 400; color: var(--text); margin: 1.5rem 0 .75rem; padding-bottom: .4rem; border-bottom: .5px solid var(--border); }
.bible-landing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .4rem; margin-bottom: 1rem; }
.bible-landing-book {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .75rem; background: var(--white); border: .5px solid var(--border);
  border-radius: var(--radius); text-decoration: none; transition: all var(--trans);
}
.bible-landing-book:hover { border-color: var(--gold-dk); color: var(--gold-dk); text-decoration: none; }
.bible-landing-book span { font-family: var(--ui); font-size: .85rem; color: var(--text); }
.bible-landing-book:hover span { color: var(--gold-dk); }
.bible-landing-book small { font-family: var(--ui); font-size: .72rem; color: var(--muted); flex-shrink: 0; }

/* ── RIGHT SIDEBAR ───────────────────────────────────────────── */
.bible-right-sidebar {
  border-left: .5px solid var(--border);
  padding: 1.25rem 1rem;
  position: sticky;
  top: 108px;
  height: calc(100vh - 108px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
}
.bible-right-sidebar::-webkit-scrollbar { width: 4px; }
.bible-right-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.bible-tool-card {
  background: var(--white); border: .5px solid var(--border);
  border-radius: var(--radius-lg); padding: .85rem 1rem;
}
.bible-tool-card--dark { background: var(--ink); border-color: rgba(201,168,76,.2); }
.bible-tool-title {
  font-family: var(--ui); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
  margin-bottom: .65rem; display: flex; align-items: center; gap: .35rem;
}
.bible-tool-title .ti { font-size: .82rem; color: var(--gold-dk); }
.bible-tool-sub { font-family: var(--ui); font-size: .78rem; color: var(--muted); margin-bottom: .65rem; line-height: 1.5; }

/* Mini chapter grid */
.bible-mini-chapter-grid { display: flex; flex-wrap: wrap; gap: 3px; }
.bible-mini-ch {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  font-family: var(--ui); font-size: .72rem; border-radius: 4px;
  border: .5px solid var(--border); background: var(--parchment);
  color: var(--text-lt); text-decoration: none; transition: all var(--trans);
}
.bible-mini-ch:hover { border-color: var(--gold-dk); color: var(--gold-dk); text-decoration: none; }
.bible-mini-ch.active { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; font-weight: 700; }

/* Index links in sidebar */
.bible-index-link {
  display: flex; align-items: center; gap: .45rem;
  padding: .35rem .25rem; border-radius: 4px;
  font-family: var(--ui); font-size: .82rem; color: var(--text);
  text-decoration: none; transition: background var(--trans);
  border-bottom: .5px solid var(--parch-dk);
}
.bible-index-link:last-child { border-bottom: none; }
.bible-index-link:hover { background: var(--parch-dk); text-decoration: none; color: var(--text); }
.bible-index-link span { flex: 1; }

/* Daily verse in sidebar */
.bible-daily-verse { padding: 0; margin: 0; border: none; }
.bible-daily-verse p { font-family: var(--font); font-size: .88rem; font-style: italic; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: .5rem; }
.bible-daily-verse cite { font-style: normal; }
.bible-daily-verse cite a { font-family: var(--ui); font-size: .75rem; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: .3rem; }
.bible-daily-verse cite a span { color: rgba(255,255,255,.35); font-size: .7rem; }
.bible-daily-verse cite a:hover { color: var(--gold-lt); }

/* Tool buttons */
.bible-tool-btn {
  display: flex; align-items: center; gap: .5rem;
  width: 100%; padding: .55rem .75rem; margin-bottom: .35rem;
  background: var(--parchment); border: .5px solid var(--border);
  border-radius: var(--radius); font-family: var(--ui); font-size: .84rem;
  color: var(--text); text-decoration: none; transition: all var(--trans);
}
.bible-tool-btn:last-child { margin-bottom: 0; }
.bible-tool-btn:hover { border-color: var(--gold-dk); color: var(--gold-dk); text-decoration: none; }
.bible-tool-btn--gold { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; }
.bible-tool-btn--gold:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.bible-empty { text-align: center; padding: 4rem 1.5rem; color: var(--muted); }
.bible-empty .ti { font-size: 2.5rem; display: block; margin-bottom: .75rem; color: var(--border); }

/* ── TOAST ───────────────────────────────────────────────────── */
.bible-toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--ink); color: #fff; padding: .65rem 1.25rem;
  border-radius: var(--radius); font-family: var(--ui); font-size: .85rem;
  border-left: 3px solid var(--gold); opacity: 0;
  transition: all .22s ease; pointer-events: none; z-index: 9999; white-space: nowrap;
}
.bible-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bible-layout { grid-template-columns: 200px 1fr; }
  .bible-right-sidebar { display: none; }
}
@media (max-width: 768px) {
  .bible-layout { grid-template-columns: 1fr; }
  .bible-sidebar {
    position: fixed; left: -100%; top: 108px; bottom: 0; z-index: 150;
    width: 260px; transition: left .25s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
  }
  .bible-sidebar.open { left: 0; }
  .bible-main { padding: 1.25rem 1rem 2.5rem; }
  .bible-chapter-nav-top { grid-template-columns: 1fr 1fr; }
  .bible-chapter-select-wrap { grid-column: 1 / -1; order: -1; text-align: center; }
  .bible-chapter-select-wrap select { width: 100%; }
  .bible-text { font-size: .97rem; }
  .bible-chapter-nav-bottom { flex-direction: column; gap: .5rem; }
  .bible-chapter-nav-bottom .bible-nav-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .bible-chapter-grid { grid-template-columns: repeat(auto-fill, minmax(44px, 1fr)); gap: .35rem; }
  .bible-chapter-card { height: 44px; font-size: .88rem; }
  .bible-landing-grid { grid-template-columns: 1fr 1fr; }
}