/* Lebensbalance-Check Landing Page Styles */

:root {
    --gold: #c9a227;
    --gold-light: #e4c76b;
    --gold-dark: #a68521;
    --primary-color: #2c5f7d;
    --primary-light: #3a7a9e;
    --primary-dark: #1e4156;
    --accent-color: #8b6f47;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Hero Section - Gold Theme */
.hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 70px; /* Space for fixed nav */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-top: 1rem;
}

/* Main Content */
.main-content {
    padding: 60px 20px;
}

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

/* Intro Section */
.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Areas Section - Die 12 Bereiche */
.areas-section {
    margin-bottom: 80px;
}

.areas-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.area-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.area-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
}

.area-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.area-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.area-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Benefits Section */
.benefits {
    margin-bottom: 80px;
}

.benefits h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: transparent;
    padding: 1.5rem 1rem;
    text-align: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Step Box (So funktioniert's) */
.step-box {
    background: #ffffff;
    padding: 2.5rem 2rem 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.step-box h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-dark);
    margin: 1rem 0 0.5rem;
}

.step-box p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 0;
}

.cta-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    font-family: var(--font-body);
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

.comparison-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.comparison-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.comparison-points {
    max-width: 600px;
    margin: 0 auto;
}

.comparison-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.check-icon {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.comparison-point span:last-child {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .intro h2 {
        font-size: 2rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .area-card {
        padding: 1rem;
    }

    .area-card h4 {
        font-size: 1rem;
    }

    .area-card p {
        font-size: 0.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .comparison-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
