/*
Theme Name: Scriptures
Description: A custom theme with expandable categories
Version: 1.0
*/

body {
    margin: 0;
    padding: 0;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "GRAD" 0;
    color: #fff;
    background-color: #141414;
}

a {
    color: #a53333;
    text-decoration: none;
}

a:hover {
    color: #ee9844;
}

em {
    color: #757575;
}

.categories-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-item {
    margin-bottom: 10px;
}

.category-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2b2b2b;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
}

.category-parent:hover {
    color: #ee9844;
    background: #812f2f;
}

.category-parent.has-children {
    font-weight: 600;
}

.category-parent.expanded {
    background: #2b2b2b;
}

    .category-parent.expanded {
        background: #812f2f;
    }

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.subcategories {
    margin-left: 20px;
    margin-top: 5px;
}

.subcategory-link {
    display: block;
    padding: 12px 20px;
    background: #4d2424;
    margin-bottom: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    border-radius: 5px;
}

.subcategory-link:hover {
    background: #2b5870;
}

.post-count {
    color: #fff;
    font-size: 0.9em;
}

/* Category page styles */
.category-posts {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-header {
    margin-bottom: 40px;
}

.back-link {
    display: inline-block;
    margin-top: 10px;
    color: #666;
    text-decoration: none;
}

.back-link:hover {
    color: #333;
}

.post-item {
    margin-bottom: 10px;
    padding: 20px;
    background: #1f1f1f;
    border-radius: 5px;
}

.post-item h2 {
    margin: 0;
    font-size: 1.5em;
}

.post-item h2 a {
    text-decoration: none;
}

.post-item h2 a:hover {
    color: #666;
}

.post-meta {
    color: #fff;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.post-meta span {
    margin-right: 15px;
}

.read-more {
    color: #367ca2;
    text-decoration: none;
    font-weight: 500;
}

.pagination {
    margin-top: 40px;
    text-align: center;
}


/* Scripture reference styling - smaller, above title */
.scripture-reference {
    font-weight: 600;
    color: #367ca2;
    margin-bottom: 5px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}





/* Scripture text content */
.scripture-text {
    line-height: 1.4;
    color: #ccc;
}

/* Highlighted scripture styling */
.highlighted-scripture {
    background-color: #1e2a30;
}

.highlighted-scripture .scripture-reference {
    color: #ee9844;
}

