/* =============================================
   MORMON PIONEER LANDING PAGE - CSS STYLES
   Add this to: Appearance → Customize → Additional CSS
   ============================================= */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(122, 155, 142, 0.9), rgba(140, 163, 184, 0.9));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #c9b5a0;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
}

.cta-button:hover {
    background: #b88b7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Intro Section */
.intro-section {
    background: #f7f5f0;
    padding: 60px 20px;
}

.intro-section h2 {
    color: #7a9b8e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #7a9b8e, #8ca3b8);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #7a9b8e;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 155, 142, 0.15);
}

.feature-card h3 {
    color: #7a9b8e;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Counties Section */
.counties-section {
    padding: 60px 20px;
    background: white;
}

.counties-section h2 {
    color: #7a9b8e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.county-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.county-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.county-card:hover {
    transform: translateY(-5px);
    border-color: #7a9b8e;
}

.county-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4a5568;
}

.county-year {
    font-size: 1.2rem;
    color: #7a9b8e;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Discovery Section */
.discovery-section {
    background: linear-gradient(135deg, #e8ede8, #f7f5f0);
    padding: 60px 20px;
}

.discovery-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.discovery-content h2 {
    color: #7a9b8e;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.award-badge {
    display: inline-block;
    background: #c9b5a0;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.quote-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #8ca3b8;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: #4a5568;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .county-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-section h2,
    .counties-section h2,
    .discovery-content h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}