/* ============================================================
   Références bibliques cliquables + boîte de versets
   Palette enluminée : navy / or / ivoire (cf. app.css)
   ============================================================ */

/* --- Le lien dans le texte --- */
.bible-ref {
    color: var(--gold-deep, #8a6f2a);
    text-decoration: none;
    border-bottom: 1px dotted var(--gold, #c9a55a);
    cursor: pointer;
    white-space: nowrap;            /* « Jn 3,16 » ne se coupe pas en fin de ligne */
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.bible-ref:hover,
.bible-ref.bible-ref-active {
    color: var(--navy, #1a1a4a);
    border-bottom-color: var(--navy, #1a1a4a);
    background: rgba(201, 165, 90, 0.16);
    border-radius: 3px;
}

/* --- La boîte (popover) --- */
.bible-ref-pop {
    position: absolute;
    z-index: 1200;
    width: max-content;
    max-width: min(360px, calc(100vw - 24px));
    background: linear-gradient(135deg, var(--ivory, #fdfdf6) 0%, var(--paper, #f7f3e8) 100%);
    border: 1px solid var(--gold, #c9a55a);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(40, 30, 10, 0.22);
    padding: 0.7rem 0.85rem 0.6rem;
    font-family: 'Lora', serif;
    color: var(--ink, #1d1d2e);
    font-size: 0.95rem;
    line-height: 1.55;
    animation: bible-ref-pop-in 0.13s ease-out;
}

@keyframes bible-ref-pop-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Flèche pointant vers le lien */
.bible-ref-pop-arrow {
    position: absolute;
    bottom: -7px;
    left: var(--arrow-left, 24px);
    width: 12px;
    height: 12px;
    background: var(--paper, #f7f3e8);
    border-right: 1px solid var(--gold, #c9a55a);
    border-bottom: 1px solid var(--gold, #c9a55a);
    transform: translateX(-50%) rotate(45deg);
}

.bible-ref-pop.bible-ref-pop-below .bible-ref-pop-arrow {
    bottom: auto;
    top: -7px;
    background: var(--ivory, #fdfdf6);
    border: none;
    border-left: 1px solid var(--gold, #c9a55a);
    border-top: 1px solid var(--gold, #c9a55a);
}

/* En-tête : la référence (« Jean 3, 16-18 ») */
.bible-ref-pop-head {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    color: var(--navy, #1a1a4a);
    font-weight: 700;
    font-size: 1.02rem;
    font-variant: small-caps;
    letter-spacing: 0.4px;
    margin-bottom: 0.45rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(201, 165, 90, 0.4);
}

.bible-ref-pop-versets {
    margin: 0 0 0.5rem;
    text-align: justify;
    hyphens: auto;
    max-height: 42vh;
    overflow-y: auto;
}

.bible-ref-pop-num {
    font-family: 'Lato', sans-serif;
    font-size: 0.68em;
    font-weight: 700;
    color: var(--gold, #c9a55a);
    vertical-align: super;
    margin: 0 0.2em 0 0.1em;
    user-select: none;
}

.bible-ref-pop-texte { color: #1a1a1a; }

.bible-ref-pop-ellipsis {
    color: var(--gold-deep, #8a6f2a);
    font-weight: 700;
}

.bible-ref-pop-loading,
.bible-ref-pop-vide {
    color: #888;
    font-style: italic;
    padding: 0.15rem 0;
}

/* Pied : « Lire davantage » + source */
.bible-ref-pop-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.35rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(201, 165, 90, 0.4);
}

.bible-ref-pop-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--navy, #1a1a4a);
    color: var(--gold-soft, #e3c98a);
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.32rem 0.7rem;
    border-radius: 6px;
    border: 1px solid var(--gold, #c9a55a);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.bible-ref-pop-more:hover {
    background: #2a2a6e;
    color: var(--ivory, #fdfdf6);
    text-decoration: none;
}

.bible-ref-pop-more span { font-size: 1.1em; line-height: 1; }

.bible-ref-pop-src {
    font-size: 0.72rem;
    color: #999;
    font-style: italic;
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .bible-ref-pop { font-size: 0.92rem; }
    .bible-ref-pop-versets { max-height: 38vh; }
}
