/* =========================================================
   KJV BIBLE SEARCH
========================================================= */

.bible-search {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 30px 0;
    flex-wrap: wrap;
}

.bible-search input {
    width: 350px;
    max-width: 100%;
    padding: 8px 10px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 100%;

    border: 1px solid #c3b6e0;
    border-radius: 6px;
    box-sizing: border-box;
}

.bible-search button {
    padding: 8px 14px;

    border: none;
    border-radius: 6px;

    background: #6a5aa8;
    color: #ffffff;

    font-weight: bold;
    cursor: pointer;

    box-shadow: 0 2px 4px rgba(60,20,120,.25);
}

.bible-search button:hover {
    background: #7a6ac0;
}
/* =========================================================
   KJV SEARCH SUMMARY
========================================================= */

.search-summary {

    text-align: center;

    font-size: 0.95em;

    color: #5b5b6b;

    margin: 10px 0 18px 0;

    font-style: italic;

}
/* =========================================================
   BOOK SECTIONS
========================================================= */

.bible-section {
    margin-bottom: 25px;
}

.bible-section h3 {
    margin-bottom: 10px;
    color: #4c3b86;
    font-weight: bold;
}

/* =========================================================
BOOK BUTTON GRID
========================================================= */

.book-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.book-btn {
    display: inline-block;

    padding: 4px 10px;

    background: #ede7f7;
    border: 1px solid #d8cdef;
    border-radius: 6px;

    text-decoration: none;

    color: #485366;
    font-size: 0.875em;
    font-weight: bold;

    transition: all .15s ease;
}

.book-btn:hover {
    background: #ddb9ff;
    color: #262c36;
}

.book-btn.active-book {
    background: #f2d98c;
    color: #262c36;
    border-color: #d6bf72;
}

/* =========================================================
   CURRENT READING
========================================================= */

.chapter-panel {
    text-align: center;
    margin-top: 35px;
}

#current-reading {
    color: #4c3b86;
    font-weight: bold;
}

/* =========================================================
CHAPTER NAVIGATION
========================================================= */

.chapter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 6px;

    margin: 15px 0 25px 0;
}

.chapter-btn {
    display: inline-block;

    min-width: 32px;

    padding: 4px 8px;

    text-align: center;

    background: #ede7f7;
    border: 1px solid #d8cdef;
    border-radius: 6px;

    text-decoration: none;

    color: #485366;
    font-weight: bold;
    font-size: 0.875em;

    transition: all .15s ease;
}

.chapter-btn:hover {
    background: #ddb9ff;
    color: #262c36;
}

.chapter-btn.active-chapter {
    background: #f2d98c;
    color: #262c36;
    border-color: #d6bf72;
}

/* =========================================================
   SCRIPTURE READER
========================================================= */

#scripture-reader {
    margin-top: 10px;
}

#scripture-reader .verse-box {
    margin-bottom: 0;
}

#scripture-reader .scripture-paragraph {
    text-align: left;
}

.scripture-text {
    display: inline;
}

/* =========================================================
   PREVIOUS / NEXT CHAPTER BUTTONS
========================================================= */

.chapter-nav {
    margin: 25px 0;
    text-align: center;
}

.chapter-nav a {
    display: inline-block;

    margin: 6px;

    padding: 6px 10px;

    text-decoration: none;

    color: #ffffff;
    background: #6a5aa8;

    border-radius: 6px;

    font-weight: bold;

    box-shadow: 0 2px 4px rgba(60,20,120,.25);
}

.chapter-nav a:hover {
    background: #7a6ac0;
}

/* =========================================================
   SEARCH RESULTS
========================================================= */

.search-results {

    margin-top: 30px;

    background: #ffffff;

    border: 1px solid #c3b6e0;
    border-radius: 8px;

    padding: 20px;
}

.search-results h3 {
    margin-top: 0;
    color: #4c3b86;
}

.search-result {
    margin-bottom: 18px;
    padding-bottom: 18px;

    border-bottom: 1px solid #ece6fa;
}

.search-result:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.search-reference {
    font-weight: bold;
    color: #4c3b86;
}

.search-result a {
    text-decoration: none;
}

.search-result a:hover {
    text-decoration: underline;
}
/* =========================================================
   SEARCH RESULT TEXT
========================================================= */

.search-text {
    margin-top: 5px;
    color: #485366;
    line-height: 1.6;
}

.search-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.search-link:hover .search-reference {
    text-decoration: underline;
}
/* =========================================================
   KJV VERSE TARGETS
   Used for external-reference navigation and verse highlighting
========================================================= */

.verse-container {
    display: inline;
}

.highlight-verse {
    background-color: rgba(255, 221, 92, 0.24);
    animation: kjv-verse-arrival 420ms ease-out both;
}

@keyframes kjv-verse-arrival {
    from {
        background-color: rgba(255, 221, 92, 0);
    }

    to {
        background-color: rgba(255, 221, 92, 0.24);
    }
}

@media (prefers-reduced-motion: reduce) {
    .highlight-verse {
        animation: none;
    }
}

/* =========================================================
   KJV SEARCH TERM HIGHLIGHT
========================================================= */

.search-highlight {

    font-weight: bold;

    color: inherit;

    border-bottom:
        1px solid rgba(133, 70, 210, 0.35);

}
/* =========================================================
   MOBILE ADJUSTMENTS — KJV BIBLE EXPLORER
========================================================= */

@media (max-width: 768px) {

    .bible-search {
        flex-direction: column;
        align-items: center;
    }

    .bible-search input {
        width: 100%;
    }

    .book-grid {
        gap: 5px;
    }

    .book-btn {
        font-size: 0.85em;
    }

    .chapter-btn {
        min-width: 32px;
        font-size: 0.85em;
    }

    .chapter-nav a {
        display: block;
        margin: 8px auto;
        width: fit-content;
    }
}
/* =========================================================
   KJV DATA CREDIT
========================================================= */

.kjv-credit {

    text-align: center;

    font-size: 0.75em;

    color: #aaaaaa;

    margin-top: 40px;

    line-height: 1.6;

}