/* Spiritual Legacy Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.8;
    color: #2c1810;
    background: #fefaf0;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Spiritual Header */
.spiritual-header {
    background: linear-gradient(rgba(44, 24, 16, 0.85), rgba(44, 24, 16, 0.95));
    color: #f8f0e0;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #8b4513;
}

.spiritual-header h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.scripture {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.header-breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

/* Navigation */
.spiritual-nav {
    background: #5d4037;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.spiritual-nav a {
    color: #f8f0e0;
    text-decoration: none;
    margin-right: 2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.spiritual-nav a:hover {
    color: #d4af37;
}

.nav-home {
    font-weight: bold;
}

/* Introduction Section */
.legacy-intro {
    background: white;
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legacy-intro h2 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Introduction Content Styles */
.letter-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.greeting {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c1810;
}

.letter-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.scripture-highlight {
    background: #fff9e6;
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.year-theme {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.year-theme h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #5d4037;
    border-left: 3px solid #8b4513;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    line-height: 1.6;
}

cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
}

.spiritual-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.spiritual-warning h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.emphasis {
    font-weight: 600;
    color: #2c1810;
    font-size: 1.1rem;
}

/* Legacy Promises */
.legacy-promises {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.promise {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff9e6;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #f0e6d6;
}

.promise-icon {
    font-size: 1.5rem;
}

/* Daniel Chapters Section */
.daniel-chapters {
    margin: 4rem 0;
}

.daniel-chapters h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chapter-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.chapter-card:hover {
    transform: translateY(-5px);
}

.chapter-header {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    padding: 1.5rem;
}

.chapter-number {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.chapter-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0;
}

.chapter-preview {
    padding: 1.5rem;
}

.chapter-preview p {
    margin-bottom: 1.5rem;
    color: #555;
}

.read-btn {
    display: inline-block;
    background: #8b4513;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.read-btn:hover {
    background: #5d4037;
}

.upcoming {
    opacity: 0.7;
}

.coming-soon {
    padding: 3rem 2rem;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* Prayers Section */
.key-scriptures {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.key-scriptures h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.scripture-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.scripture-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.verse {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reference {
    text-align: right;
    font-weight: bold;
    opacity: 0.9;
}

/* Final Blessing */
.father-blessing {
    background: white;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.blessing-content h2 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 2rem;
}

.blessing-text {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.blessing-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c1810;
}

/* Footer */
.spiritual-footer {
    background: #2c1810;
    color: #f8f0e0;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-verse {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Individual Chapter Page Styles */
.chapter-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    color: #5d4037;
}

.part {
    margin-bottom: 2.5rem;
}

.part h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0e6d6;
    padding-bottom: 0.5rem;
}

.part h4 {
    color: #5d4037;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.lesson-point {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0e6d6;
}

.lesson-point:last-child {
    border-bottom: none;
}

.lesson-point h5 {
    color: #5d4037;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.key-insight {
    background: #e8f5e8;
    border-left: 4px solid #27ae60;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.insight {
    background: #fff9e6;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    font-style: italic;
}

.final-word {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.final-word h4 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.final-call {
    background: #fff3cd;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}

.final-call p {
    margin-bottom: 1rem;
}

.letter-closing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0e6d6;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .spiritual-header h1 {
        font-size: 2rem;
    }
    
    .scripture {
        font-size: 1.1rem;
    }
    
    .spiritual-nav a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .legacy-promises {
        flex-direction: column;
        align-items: center;
    }
    
    .chapters-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-intro,
    .key-scriptures,
    .father-blessing {
        padding: 2rem 1.5rem;
    }
    
    .chapter-content {
        padding: 1rem;
    }
    
    .letter-content {
        padding: 0 1rem;
    }
    
    blockquote {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    .spiritual-header {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .spiritual-header h1 {
        font-size: 1.8rem;
    }
    
    .legacy-intro h2,
    .daniel-chapters h2,
    .key-scriptures h2 {
        font-size: 1.8rem;
    }
    
    .chapter-header h3 {
        font-size: 1.2rem;
    }
    
    .promise {
        padding: 0.8rem 1rem;
    }
}

/* Spiritual Cards Section */
.spiritual-cards {
    margin: 4rem 0;
}

.year-navigation {
    margin-bottom: 3rem;
}

.year-navigation h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card-preview {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
    border-left: 4px solid #d4af37;
}

.card-preview:hover {
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: 1rem;
}

.card-date {
    display: inline-block;
    background: #f0e6d6;
    color: #5d4037;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.card-preview h4 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    font-size: 1.3rem;
    margin: 0;
}

.card-excerpt {
    margin-bottom: 1.5rem;
}

.card-excerpt p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Spiritual Card Single Page */
.spiritual-card-single {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.card-meta {
    margin-bottom: 2rem;
}

.card-date-full {
    background: #f0e6d6;
    color: #5d4037;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.quote-full blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #2c1810;
    border-left: 4px solid #d4af37;
    padding: 2rem;
    margin: 2rem 0;
    background: #fff9e6;
    border-radius: 8px;
    font-style: italic;
}

.card-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0e6d6;
}

.nav-btn {
    display: inline-block;
    background: #8b4513;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #5d4037;
} 

/* Card Navigation */
.card-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0e6d6;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-btn {
    display: inline-block;
    background: #8b4513;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.nav-btn:hover {
    background: #5d4037;
}

/* Responsive card navigation */
@media (max-width: 768px) {
    .card-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        max-width: 100%;
    }
}

/* Daniel Chapter 3 Specific Styles */
.song-lyrics {
    background: linear-gradient(135deg, #fff9e6, #f0e6d6);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    font-style: italic;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.scripture-quote {
    background: #e8f5e8;
    border-left: 4px solid #27ae60;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.key-insight {
    background: #fff3cd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}

.part-divider {
    border-top: 2px solid #8b4513;
    margin: 3rem 0;
    padding-top: 2rem;
}

/* Chapter Navigation */
.card-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0e6d6;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-btn {
    display: inline-block;
    background: #8b4513;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.nav-btn:hover {
    background: #5d4037;
}

/* Responsive chapter navigation */
@media (max-width: 768px) {
    .card-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        max-width: 100%;
    }
    
    .song-lyrics {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

/* Simple Footer Fix - Stick to Bottom */
body {
    position: relative;
    min-height: 100vh;
}

.spiritual-footer {
    background: #2c1810;
    color: #f8f0e0;
    text-align: center;
    padding: 3rem 0;
    width: 100%;
    position: relative;
}
/* Footer */
.spiritual-footer {
    background: #2c1810;
    color: #f8f0e0;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-verse {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}
.card-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 2rem;
}

.nav-btn {
    background: #8b4513;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1;
}

.nav-btn:hover {
    background: #5d4037;
    color: white;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .card-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-btn {
        width: 100%;
    }
}
.chapter-card.upcoming {
    opacity: 0.8;
    background: #f9f9f9;
}

.coming-soon {
    text-align: center;
    padding: 1.5rem;
    color: #666;
}

.coming-soon p {
    margin: 0.5rem 0;
}