/* Harmony of the Gospels Styles */

/* Gospel source colors */
.gospel-mt {
    color: #000000; /* Matthew - Black */
}

.gospel-mk {
    color: #215868; /* Mark - Teal */
}

.gospel-lk {
    color: #7030A0; /* Luke - Purple */
}

.gospel-jn {
    color: #C00000; /* John - Dark Red */
}

/* Color legend */
.harmony-legend {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: #f8f5f0;
    border-radius: 8px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 600;
    border: 1px solid #e5e0d8;
}

.harmony-legend span {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    background: white;
}

.harmony-legend .gospel-mt {
    border-left: 4px solid #000000;
}

.harmony-legend .gospel-mk {
    border-left: 4px solid #215868;
}

.harmony-legend .gospel-lk {
    border-left: 4px solid #7030A0;
}

.harmony-legend .gospel-jn {
    border-left: 4px solid #C00000;
}

/* Harmony intro text */
.harmony-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e0d8;
}

/* Section dropdown navigation */
.harmony-nav-container {
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e0d8;
    z-index: 100;
}

.harmony-dropdown {
    width: 100%;
    max-width: 600px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.harmony-dropdown:focus {
    outline: none;
    border-color: #8b6914;
    box-shadow: 0 0 0 2px rgba(139, 105, 20, 0.2);
}

/* Topic headers */
.topic-header {
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e0d8;
    font-size: 1.4rem;
}

.topic-header:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.topic-reference {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Harmony text paragraphs */
.harmony-text {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    text-align: justify;
    white-space: pre-wrap; /* Preserve tabs for genealogy formatting */
}

/* Section navigation */
.harmony-section-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e5e0d8;
    flex-wrap: wrap;
    gap: 1rem;
}

.harmony-section-nav a {
    padding: 0.75rem 1.5rem;
    background: #8b6914;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.harmony-section-nav a:hover {
    background: #6d5310;
}

.harmony-section-nav .all-sections {
    background: #2c3e50;
}

.harmony-section-nav .all-sections:hover {
    background: #1a252f;
}

/* Print styles */
@media print {
    .harmony-nav-container,
    .harmony-section-nav {
        display: none;
    }
    
    .gospel-mt { color: #000000 !important; }
    .gospel-mk { color: #215868 !important; }
    .gospel-lk { color: #7030A0 !important; }
    .gospel-jn { color: #C00000 !important; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .harmony-legend {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .harmony-legend span {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }
    
    .topic-header {
        font-size: 1.2rem;
    }
    
    .harmony-text {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* ============================================
   SEE ALSO / RELATED CONTENT
   ============================================ */

.see-also {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe4 100%);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color, #8b6914);
}

.see-also h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--primary-color, #2c3e50);
}

.see-also ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.see-also li {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}

.see-also li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color, #8b6914);
}

.see-also li:last-child {
    margin-bottom: 0;
}

.see-also a {
    color: var(--secondary-color, #8b6914);
    text-decoration: none;
    font-weight: 500;
}

.see-also a:hover {
    text-decoration: underline;
}

.see-also-meta {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
    margin-left: 0.5rem;
}

/* Categories display */
.categories {
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color, #e5e0d8);
}

.categories > span {
    color: #666;
    margin-right: 0.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--hover-color, #f8f6f3);
    color: var(--secondary-color, #8b6914);
    border-radius: 3px;
    font-size: 0.85em;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.category-tag:hover {
    background: var(--secondary-color, #8b6914);
    color: white;
}
