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

body {
    font-family: 'Crimson Pro', Georgia, serif;
    background: #f4f1ea;
    color: #2a2520;
    line-height: 1.7;
    font-size: 18px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.main-nav {
    background: #2a2520;
    border-bottom: 3px solid #b8860b;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4f1ea;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li a,
.nav-links li span {
    color: #f4f1ea;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 2px;
    transition: all 0.25s ease;
    font-weight: 500;
    display: block;
}

.nav-links li a:hover {
    background: #7d1d3f;
    color: #f4f1ea;
}

.nav-links li a.active {
    background: #7d1d3f;
    border-bottom: 2px solid #b8860b;
}

.nav-links li.coming-soon span {
    color: #9a8b7a;
    font-style: italic;
    cursor: not-allowed;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7d1d3f 0%, #a14461 100%);
    color: #f4f1ea;
    padding: 5rem 0;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(125, 29, 63, 0.3);
}

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.92;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #b8860b;
    color: #2a2520;
    border-color: #b8860b;
}

.btn-primary:hover {
    background: #d4a574;
    border-color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #f4f1ea;
    border-color: #f4f1ea;
}

.btn-secondary:hover {
    background: #f4f1ea;
    color: #7d1d3f;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
}

/* Regular Header (for non-home pages) */
header {
    background: linear-gradient(135deg, #7d1d3f 0%, #a14461 100%);
    color: #f4f1ea;
    padding: 3.5rem 0;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(125, 29, 63, 0.3);
    border-bottom: 3px solid #b8860b;
}

h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.15rem;
    opacity: 0.92;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content Styling */
.about-content {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 3rem;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(42, 37, 32, 0.08);
    border: 1px solid #e0d9cc;
}

.about-content:last-of-type {
    margin-bottom: 4rem;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #7d1d3f;
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #5a4a33;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-content ul {
    margin: 1.2rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.about-content li {
    margin-bottom: 0.8rem;
}

.about-content strong {
    color: #7d1d3f;
    font-weight: 600;
}

.highlight-box {
    background: #fffef9;
    border-left: 4px solid #b8860b;
    padding: 1.8rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.08);
}

.highlight-box strong {
    color: #7d1d3f;
}

/* Stats Showcase on Homepage */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: #f9f7f3;
    border-radius: 2px;
    border: 1px solid #e0d9cc;
    box-shadow: 0 2px 12px rgba(42, 37, 32, 0.08);
}

.stat-showcase-item {
    text-align: center;
}

.stat-showcase-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #7d1d3f;
    line-height: 1;
}

.stat-showcase-label {
    font-size: 1rem;
    color: #5a4a33;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #7d1d3f 0%, #a14461 100%);
    color: #f4f1ea;
    border-radius: 2px;
}

.cta-section h2 {
    color: #f4f1ea;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Stats Bar (for Explorer page) */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 2rem;
    border-radius: 2px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 2px 12px rgba(42, 37, 32, 0.08);
    border: 1px solid #e0d9cc;
    border-top: 3px solid #7d1d3f;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #7d1d3f;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #5a4a33;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Filters */
.filters {
    background: white;
    padding: 2.5rem;
    border-radius: 2px;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 12px rgba(42, 37, 32, 0.08);
    border: 1px solid #e0d9cc;
}

.filter-section {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #e8e3d8;
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    color: #2a2520;
    letter-spacing: 0.3px;
}

.filter-btn {
    background: #f9f7f3;
    border: 1.5px solid #d4cec0;
    padding: 0.65rem 1.3rem;
    margin: 0.3rem;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Crimson Pro', serif;
    transition: all 0.25s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: #a14461;
    color: #f4f1ea;
    border-color: #a14461;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #7d1d3f;
    color: #f4f1ea;
    border-color: #7d1d3f;
}

.search-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid #d4cec0;
    border-radius: 2px;
    font-size: 1rem;
    font-family: 'Crimson Pro', serif;
    background: #f9f7f3;
}

.search-input:focus {
    outline: none;
    border-color: #7d1d3f;
    background: white;
}

/* Prophecy Grid */
.prophecy-grid {
    display: grid;
    gap: 1.8rem;
}

.prophecy-card {
    background: white;
    border: 1px solid #d4cec0;
    border-left: 4px solid #b8860b;
    border-radius: 2px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(42, 37, 32, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.prophecy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(125, 29, 63, 0.12);
    border-left-color: #7d1d3f;
}

.prophecy-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.2rem;
}

.prophecy-reference {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7d1d3f;
}

.prophecy-number {
    background: #f4f1ea;
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a4a33;
    border: 1px solid #e0d9cc;
}

.prophecy-description {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.category-tag {
    display: inline-block;
    background: #7d1d3f;
    color: #f4f1ea;
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
    font-size: 0.85rem;
    margin-right: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.prophecy-content {
    display: none;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 2px solid #e8e3d8;
}

.prophecy-card.expanded .prophecy-content {
    display: block;
}

.verse-text {
    background: #fdfcfa;
    padding: 1.8rem;
    border-left: 4px solid #b8860b;
    margin: 1.2rem 0;
    line-height: 1.9;
    white-space: pre-wrap;
    font-size: 1.05rem;
    box-shadow: inset 0 0 10px rgba(184, 134, 11, 0.05);
}

.verse-text strong {
    color: #7d1d3f;
    font-weight: 600;
}

.context-section {
    margin: 1.6rem 0;
}

.context-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #7d1d3f;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.nt-refs {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 0.95rem;
    color: #5a4a33;
    border-top: 1px solid #e8e3d8;
}

.nt-refs strong {
    color: #7d1d3f;
}

/* Footer */
footer {
    background: #2a2520;
    color: #f4f1ea;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #b8860b;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #b8860b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #f4f1ea;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.25s ease;
}

.footer-section ul li a:hover {
    color: #b8860b;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5a4a33;
    opacity: 0.8;
}

/* Search Highlighting */
mark {
    background: #fff4b3;
    color: #2a2520;
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a,
    .nav-links li span {
        display: block;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-showcase-number {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
