/* Faith & Freedom Daily Website Styles */

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #3d5a40;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.logo .tagline {
    color: #d4a654;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: normal;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #d4a654;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3d5a40 0%, #5a7a5c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e8e8e8;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: #d4a654;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: #d4a654;
    color: #2d3748;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212,166,84,0.3);
}

.cta-button:hover {
    background: #c49644;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,166,84,0.4);
}

.cta-button.large {
    padding: 20px 60px;
    font-size: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #3d5a40;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #d4a654;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3d5a40;
}

.feature-card p {
    color: #4b5563;
    font-size: 16px;
}

/* What You'll Receive Section */
.what-receive {
    padding: 80px 0;
    background: #f7fafc;
}

.what-receive h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #3d5a40;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #d4a654;
}

.receive-list {
    list-style: none;
}

.receive-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 18px;
    color: #374151;
}

.receive-list li:last-child {
    border-bottom: none;
}

.receive-list li:before {
    content: "✓";
    color: #3d5a40;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Preview Section */
.preview {
    padding: 80px 0;
    background: white;
}

.preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #3d5a40;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.story-card {
    padding: 30px;
    border-radius: 12px;
    background: #f7fafc;
    border-left: 4px solid #3d5a40;
}

.story-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d3748;
}

.story-card p {
    color: #4b5563;
    font-size: 16px;
}

.preview-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f7fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #3d5a40;
}

.testimonial-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4b5563;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #3d5a40;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3d5a40 0%, #5a7a5c 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e8e8e8;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 50px 0 20px;
}

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

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4a654;
    letter-spacing: 2px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 10px;
    color: #d4a654;
}

.footer-links a, .footer-contact a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #d4a654;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    font-size: 14px;
    color: #a0aec0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-grid, .story-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
