/* SGSS Bible - Global Styles */
:root {
    --primary: #2c3e50;
    --accent: #c0392b;
    --gold: #d4a017;
    --bg: #faf8f5;
    --card-bg: #ffffff;
    --text: #1a1a1a;
    --text-light: #555;
    --border: #e0d8cc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary), #34495e);
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem;
    border-bottom: 4px solid var(--gold);
}
.site-header h1 { font-size: 2rem; margin-bottom: 0.3rem; }
.site-header h1 a { color: #fff; text-decoration: none; }
.site-header .subtitle { font-size: 1rem; opacity: 0.85; font-style: italic; }

/* Navigation tabs in header */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.nav-tab {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.nav-tab:hover { background: rgba(255,255,255,0.25); }
.nav-tab.active { background: rgba(255,255,255,0.3); font-weight: bold; }

/* Main container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Book list */
.testament-section { margin: 2rem 0; }
.testament-section h2 {
    font-size: 1.4rem;
    color: var(--primary);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
}
.book-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: block;
    font-size: 0.95rem;
}
.book-card:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.book-card .bnum {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 0.3rem;
}

/* Download section */
.download-section {
    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}
.download-section h2 { margin-bottom: 0.5rem; color: var(--primary); }
.download-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.download-btn:hover { background: #a93226; }
.download-info { margin-top: 0.5rem; font-size: 0.85rem; color: var(--text-light); }

/* Book page */
.book-header {
    text-align: center;
    padding: 1.5rem 1rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}
.book-header h1 { font-size: 1.7rem; color: var(--primary); }
.book-header .badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.chapter { margin-bottom: 1.8rem; }
.chapter h2 {
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.3rem;
    margin-bottom: 0.6rem;
}
.verse {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    text-indent: -2rem;
}
.vnum {
    font-weight: bold;
    color: var(--accent);
    font-size: 0.8rem;
    vertical-align: super;
    margin-right: 0.3rem;
}

/* Book nav */
.book-nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.nav-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.2s;
}
.nav-btn:hover { border-color: var(--gold); }
.home-btn { margin: 0 auto; }

/* Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

/* PDF-specific styles */
@media print {
    .book-nav, .site-header, .site-footer, .download-section { display: none; }
    body { background: #fff; font-size: 11pt; }
    .container { max-width: 100%; padding: 0.5in; }
    .book-header { border-bottom: 1pt solid #000; }
    .chapter h2 { font-size: 14pt; }
    .vnum { font-size: 7pt; }
}
