/* --- Farbvariablen (Natur & Umwelt) --- */
:root {
    /* Sanfte grüne Hintergründe */
    --color-bg-soft: #F0F7F4;
    --color-card-bg: #FFFFFF;

    /* Waldgrün für Überschriften */
    --color-primary: #2D5F4C;

    /* Natürliches Dunkelgrün für Text */
    --color-text: #3A4F41;

    /* Frisches Grün als Akzent für Buttons und Highlights */
    --color-accent: #5A9B7D;
    --color-accent-hover: #4A8566;

    /* Allgemeine Einstellungen */
    --border-radius: 6px;
    --spacing-std: 2rem;
}

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* --- Reset & Typografie --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg-soft);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 17px;
    padding-bottom: 3rem;
}

/* --- Layout Container --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* --- Header --- */
.site-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(90, 155, 125, 0.15);
}

.logo-img {
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 120px;
    height: 120px;
}

.logo-img:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.home-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.home-link:hover {
    opacity: 0.8;
}

.subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- Bilder --- */
.hero-image {
    margin-bottom: var(--spacing-std);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(45, 95, 76, 0.12);
    background: linear-gradient(90deg, #F2F9F5 0%, #F7FBF9 50%, #F2F9F5 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(110%) hue-rotate(5deg);
}

/* --- Journey Steps --- */
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.5rem 0;
    position: relative;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, transparent, rgba(90, 155, 125, 0.3));
}

.journey-step::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to top, transparent, rgba(90, 155, 125, 0.3));
}

.journey-icon {
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(45, 95, 76, 0.1));
}

.journey-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Content Blöcke --- */
.content-block {
    background: var(--color-card-bg);
    padding: 2.5rem;
    margin-bottom: var(--spacing-std);
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(90, 155, 125, 0.06);
    border: 1px solid rgba(90, 155, 125, 0.08);
    scroll-margin-top: 2rem;
}

h2 {
    font-family: 'Lora', Georgia, serif;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-family: 'Lora', Georgia, serif;
    color: var(--color-primary);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* --- Spezielle Abschnitte --- */
.highlight-bg {
    background: #F7FBF9;
    border: 2px solid rgba(90, 155, 125, 0.15);
    text-align: center;
}

.large-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.requirements-list {
    list-style: none;
    padding-left: 0;
}

.requirements-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
}

.requirements-list li::before {
    content: "✓";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-box {
    margin-top: 2rem;
    padding: 1.25rem;
    background-color: #F7FBF9;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--color-primary);
    border: 1px solid rgba(90, 155, 125, 0.2);
}

/* --- Kontakt / Button --- */
.contact-section {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(90, 155, 125, 0.2);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 155, 125, 0.3);
}

/* --- Legal Pages --- */
.legal-page h4 {
    font-family: 'Inter', sans-serif;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1rem;
}

.legal-page a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-page a:hover {
    border-bottom-color: var(--color-accent);
}

.legal-update {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(90, 155, 125, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3rem;
    opacity: 0.7;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.separator {
    color: var(--color-accent);
}

/* --- Mobile Optimierung --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    .container { padding: 2rem 1rem; }
    .content-block { padding: 2rem 1.5rem; }
    .cta-button { 
        width: 100%; 
        box-sizing: border-box; 
        overflow-wrap: break-word;
        padding: 1rem 1.5rem;
    }
    .journey-step::before,
    .journey-step::after {
        display: none;
    }
}