/* bible-drawer.css — link de referência + drawer lateral */

/* Link de referência inline (chip) */
a.bible-ref {
  display: inline;
  color: #C9A84C;
  text-decoration: none;
  border-bottom: 1px dashed rgba(212,168,67,0.4);
  padding: 0 2px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
a.bible-ref:hover {
  color: #fff;
  background: rgba(212,168,67,0.15);
  border-bottom-color: #C9A84C;
}
body.a11y-high-contrast a.bible-ref {
  color: #0033CC !important;
  border-bottom-color: #0033CC !important;
  background: #FFFF99 !important;
  padding: 1px 4px !important;
  font-weight: 700;
}

/* Backdrop */
#bible-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9990;
  opacity: 0;
  transition: opacity 0.3s;
}
#bible-backdrop.open { display: block; opacity: 1; }

/* Drawer (desktop: lateral direita) */
#bible-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 440px;
  max-width: 90vw;
  height: 100vh;
  background: #1A2540;
  color: #E8E0C5;
  border-left: 1px solid rgba(212,168,67,0.3);
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 9991;
  display: flex;
  flex-direction: column;
  font-family: 'Lora', serif;
}
#bible-drawer.open { transform: translateX(0); }
.bible-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.bible-drawer-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(212,168,67,0.15);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.bible-drawer-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 6px;
}
.bible-drawer-ref {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #fff;
}
.bible-drawer-close {
  background: transparent;
  border: none;
  color: #E8E0C5;
  font-size: 32px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.bible-drawer-close:hover { background: rgba(212,168,67,0.15); }

.bible-drawer-hint {
  background: rgba(212,168,67,0.08);
  border-left: 3px solid #C9A84C;
  padding: 10px 14px;
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: rgba(232,224,197,0.85);
  border-radius: 4px;
  line-height: 1.5;
}
.bible-drawer-hint strong { color: #C9A84C; }

.bible-drawer-body p.bible-verse-highlight {
  background: rgba(212,168,67,0.12);
  border-left: 3px solid #C9A84C;
  padding: 8px 12px;
  margin: 6px 0;
  border-radius: 0 6px 6px 0;
  color: #fff;
}
.bible-drawer-body p.bible-verse-highlight .bible-vnum { color: #FFE08A; }

.bible-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.85;
}
.bible-drawer-body p {
  margin: 0 0 14px;
  color: #E8E0C5;
}
.bible-vnum {
  color: #C9A84C;
  font-weight: 700;
  font-size: 0.72em;
  vertical-align: super;
  margin-right: 4px;
  font-family: 'Cinzel', serif;
}
.bible-loading,
.bible-error {
  text-align: center;
  padding: 40px 20px;
  color: rgba(232,224,197,0.6);
  font-style: italic;
}
.bible-error { color: #F08A8A; }

.bible-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(212,168,67,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bible-drawer-footer small { color: rgba(232,224,197,0.5); font-size: 0.72rem; }
.bible-drawer-mark {
  background: rgba(212,168,67,0.15);
  color: #C9A84C;
  border: 1px solid rgba(212,168,67,0.4);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.bible-drawer-mark:hover { background: rgba(212,168,67,0.25); color: #fff; }

/* Mobile: bottom-sheet */
@media (max-width: 600px) {
  #bible-drawer {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 80vh;
    max-height: 80vh;
    border-left: none;
    border-top: 1px solid rgba(212,168,67,0.3);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.55);
  }
  #bible-drawer.open { transform: translateY(0); }
  .bible-drawer-header { padding: 18px 20px 14px; }
  .bible-drawer-ref { font-size: 1.2rem; }
  .bible-drawer-body { padding: 18px 20px; font-size: 1rem; }
}

/* Alto contraste */
body.a11y-high-contrast #bible-drawer {
  background: #FFFFFF !important;
  color: #000000 !important;
  border-left-color: #000000 !important;
}
body.a11y-high-contrast .bible-drawer-tag,
body.a11y-high-contrast .bible-drawer-ref,
body.a11y-high-contrast .bible-vnum,
body.a11y-high-contrast .bible-drawer-mark { color: #000000 !important; }
body.a11y-high-contrast .bible-drawer-body p { color: #000000 !important; }
body.a11y-high-contrast .bible-drawer-mark { background: #FFFF99 !important; border-color: #000000 !important; }
