/* Bible Comparison - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1E3A8A 0%, #D97706 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    color: white;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header .tagline {
    font-size: 1.3em;
    color: #fef3c7;
    opacity: 0.95;
    font-style: italic;
}

.main-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.verse-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 6px solid #1E3A8A;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-size: 1.2em;
    line-height: 1.8;
    font-style: italic;
    color: #1E3A8A;
}

.verse-banner strong {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #D97706;
}

h2 {
    color: #1E3A8A;
    font-size: 2em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #D97706;
}

h3 {
    color: #D97706;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
}

p {
    line-height: 1.8;
    color: #374151;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3c7 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1E3A8A;
    font-size: 1.3em;
    margin: 10px 0;
    border: none;
}

.feature-card p {
    font-size: 1em;
    color: #4b5563;
}

.cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #D97706 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h2 {
    color: white;
    border: none;
    margin: 0 0 20px 0;
}

.cta-section p {
    color: white;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.free-banner {
    background: #10b981;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.support-section {
    background: #fef3c7;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.support-section h3 {
    color: #1E3A8A;
    margin-bottom: 15px;
}

.support-section p {
    color: #374151;
    margin-bottom: 20px;
}

.donate-button {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    color: white;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    text-decoration: none;
    display: inline-block;
}

.donate-button:hover {
    transform: scale(1.05);
}

.comparison-showcase {
    background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.comparison-showcase h2 {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-example {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.translation-row {
    margin: 15px 0;
    padding: 15px;
    background: #f9fafb;
    border-left: 4px solid #1E3A8A;
    border-radius: 5px;
}

.translation-name {
    font-weight: bold;
    color: #D97706;
    margin-bottom: 8px;
}

.translation-text {
    color: #374151;
    line-height: 1.6;
}

.how-it-works {
    margin: 40px 0;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    background: linear-gradient(135deg, #1E3A8A 0%, #D97706 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

.step h4 {
    color: #1E3A8A;
    margin: 15px 0 10px 0;
}

.step p {
    font-size: 0.95em;
    color: #6b7280;
}

.footer {
    text-align: center;
    color: white;
    padding: 30px 20px;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}