/* SFV-Elbe – Grunddesign */

:root {
    --green-dark: #17352b;
    --green: #2f5d46;
    --green-light: #e9f0eb;
    --blue: #315d68;
    --sand: #f4f1e9;
    --text: #1d2723;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 10;
    background: var(--green-dark);
    color: var(--white);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.92;
}

.main-nav a:hover {
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

.hero img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero img {
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(8, 25, 19, 0.72), rgba(8, 25, 19, 0.18));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 60px;
    padding-bottom: 60px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero .eyebrow {
    color: #dce9df;
}

h1,
h2 {
    line-height: 1.15;
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.hero-text {
    max-width: 600px;
    font-size: 1.15rem;
}

.intro {
    padding-top: 90px;
    padding-bottom: 90px;
    max-width: 850px;
    text-align: center;
}

.intro .eyebrow {
    color: var(--blue);
}

.intro h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.feature-section {
    background: var(--sand);
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 55px;
    align-items: center;
}

.feature-card {
    overflow: hidden;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.feature-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.feature-card-content {
    padding: 30px;
}

.feature-card-content .eyebrow {
    color: var(--blue);
}

.feature-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.site-footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    margin-left: 20px;
    text-decoration: none;
    opacity: 0.9;
}

@media (max-width: 800px) {
    .header-inner {
        align-items: flex-start;
        padding: 18px 0;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .hero {
        min-height: 540px;
    }

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

    .footer-inner {
        flex-direction: column;
    }

    .footer-inner a:first-child {
        margin-left: 0;
    }
}

.logo img {
    width: 180px !important;
    height: auto;
}

.gewae-simpel {
    text-align: left;
}

.gewae-simpel ul {
    text-align: left;
}