:root {
    --green-dark: #0c3b21;
    --green: #4a9f36;
    --green-light: #edf6ea;
    --text: #1f2a21;
    --muted: #667266;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius: 22px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
}

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

.topbar {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 20;
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border: 3px solid var(--green);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 24px;
    font-weight: 700;
}

.logo-title {
    color: var(--green-dark);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .5px;
}

.logo-subtitle {
    color: var(--muted);
    font-size: 13px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    padding: 30px 0 24px;
    border-bottom: 3px solid transparent;
}

.nav a.active,
.nav a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}

.member-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    text-decoration: none;
}

.member-btn,
.btn.primary {
    background: linear-gradient(135deg, #65b845, #3f9b2d);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(74,159,54,.25);
}

.btn.secondary {
    border: 2px solid rgba(255,255,255,.8);
    color: white;
}

.hero {
    position: relative;
    min-height: 560px;
    background: url('../images/head.PNG') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,29,17,.78), rgba(5,29,17,.34), rgba(5,29,17,.08));
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    color: #8bd866;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    color: white;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .95;
    margin: 0 0 12px;
}

.hero h2 {
    color: white;
    font-size: clamp(26px, 3vw, 38px);
    margin: 0 0 28px;
}

.hero p {
    color: white;
    font-size: 20px;
    line-height: 1.6;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.news-box {
    background: rgba(10, 55, 30, .92);
    color: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.news-box h3 {
    font-size: 25px;
    margin: 0 0 14px;
}

.news-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.17);
}

.news-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.18);
    font-size: 22px;
}

.news-item strong {
    color: #9be06c;
}

.news-item p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.45;
}

.news-link {
    display: inline-block;
    margin-top: 10px;
    color: #9be06c;
    text-decoration: none;
    font-weight: 700;
}

.feature-strip {
    background: linear-gradient(180deg, #f7fbf5, #eef7eb);
    padding: 34px 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.feature {
    text-align: center;
    padding: 5px 28px;
    border-right: 1px solid #d8e3d6;
}

.feature:last-child { border-right: 0; }

.feature-icon {
    color: var(--green);
    font-size: 38px;
    margin-bottom: 8px;
}

.feature h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.card-section {
    padding: 50px 0 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.info-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    border: 1px solid #e6ece4;
}

.info-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.card-body {
    position: relative;
    padding: 34px 30px 30px;
}

.floating-icon {
    position: absolute;
    top: -38px;
    left: 28px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    color: var(--green);
    font-size: 30px;
    box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

.info-card h3 {
    margin: 10px 0 10px;
    color: var(--green-dark);
}

.info-card p {
    color: var(--muted);
    line-height: 1.55;
}

.info-card a {
    color: var(--green);
    text-decoration: none;
    font-weight: 800;
}

.footer-cta {
    background: linear-gradient(135deg, #06391e, #0d5d2f);
    color: white;
    margin-top: 25px;
}

.footer-cta-inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-cta h3,
.footer-cta p {
    margin: 0;
}

.footer-cta p {
    margin-top: 6px;
    opacity: .85;
}

@media (max-width: 1050px) {
    .nav { display: none; }
    .hero-inner { grid-template-columns: 1fr; padding: 70px 0; }
    .features { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .feature { border-right: 0; }
    .card-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 24px, 1180px); }
    .topbar-inner { flex-wrap: wrap; padding: 15px 0; }
    .member-btn { width: 100%; }
    .hero { min-height: auto; }
    .hero-inner { min-height: auto; gap: 35px; }
    .hero p { font-size: 17px; }
    .btn { width: 100%; }
    .features { grid-template-columns: 1fr; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; padding: 24px 0; }
}


/* CSS für Slideshow */
.slideshow-container {
    position: relative;
    max-width: 300px;
	width=100%
    margin: auto;
}

.slide {
    display: none;
}

img {
    vertical-align: middle;
	max-width:500px;
    width: 100%;
}

.fade {
    animation: fadeEffect 0.7s;
}

@keyframes fadeEffect {
    from {opacity: 0.4} 
    to {opacity: 1}
}