﻿/* ========================================================================== 
   HOMEPAGE STYLES - GroeiAtlas
   
   Used on: / (homepage) ONLY
   Components: Pages/Index.razor
   
   IMPORTANT: These styles are homepage-specific
   - DO NOT use for other pages
   - Hero is .hero-section (not .books-hero etc.)
   - Other pages use site.css for heroes
   
   Structure:
   - hero-section: Homepage hero (different from page heroes)
   - problem-section: "Maar je raakt het overzicht kwijt"
   - insight-section: Two-column insight cards
   - solution-section: Feature grid
   - growth-section: Bullet list with icons
   - cta-section: Final call-to-action
   
   Standards:
   - Section padding: 2.5rem (consistent across all sections)
   - Hero min-height: 55vh
   - CTA padding: 3.5rem (slightly larger for emphasis)
   ========================================================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

/* Problem Section */
.problem-section {
    padding: 2.5rem 2rem;
    background: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thought-card {
    background: #f9fafb;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.thought-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.question-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.question-list li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-style: italic;
}

.question-list li::before {
    /*content: "→ ";*/
    color: #667eea;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Insight Section */
.insight-section {
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.insight-card.highlight {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 2px solid #667eea;
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.insight-icon i {
    font-size: 2rem;
    color: white;
}

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.insight-detail {
    font-style: italic;
    color: #9ca3af;
}

.insight-problem {
    font-weight: 600;
    color: #374151;
}

.insight-card ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.insight-card ul li {
    padding: 0.25rem 0;
    color: #6b7280;
}

.insight-conclusion {
    font-weight: 600;
    color: #667eea;
    margin-top: 1.5rem;
}

.question-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0;
}

.no-bullets {
    list-style: none;
    padding-left: 0;
}

.no-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tag {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    padding: 2.5rem 2rem;
    background: white;
}

.section-conclusion {
    font-size: 1.125rem;
    text-align: center;
    color: #6b7280;
    margin-top: 2rem;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.feature-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    transform: translateY(-4px);
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    color: #374151;
    margin: 0;
}

/* Growth Section */
.growth-section {
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
}

.growth-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.growth-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.growth-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: inline-block;
    text-align: left;
}

.growth-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: #374151;
}

.growth-list i {
    font-size: 1.5rem;
    color: #667eea;
}

.growth-insight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 0.75rem;
}

.growth-tagline {
    font-size: 1.375rem;
    font-weight: 700;
    color: #667eea;
}

/* CTA Section */
.cta-section {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* CTA Buttons - Multiple button support */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    color: white;
}

.cta-button-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-button-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cta-quick-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-quick-note i {
    color: #fbbf24;
}

/* Bottom CTA buttons */
.cta-buttons-bottom {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-large.cta-primary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.cta-button-large.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
    color: white;
}

.cta-button-large.cta-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-button-large.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }

    .cta-button-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }
}
