/*
Theme Name: Netzwerk Gesundheit Osthessen
Theme URI: https://netzwerk-gesundheit-osthessen.de
GitHub Theme URI: martin2025x/ngo-theme
Primary Branch: main
Author: Martin Günther, Farbenspiel-Design
Description: Modernes, seriöses One-Page Theme für das Netzwerk Gesundheit Osthessen - Alternative & ganzheitliche Gesundheitsangebote
Version: 1.4.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ngo-theme
Tags: one-page, responsive, wellness, health, custom-colors, custom-logo

Farbschema aus dem Logo:
- Primär Blau: #1a6bb5 (Überschriften)
- Sekundär Grün: #4a9a3e (Akzente)
- Akzent Türkis: #2d8cb8 (Links/Hover)
- Dunkelgrau: #4a4a4a (Fließtext)
- Hellgrau: #f8f9fa (Hintergrund)
*/

/* ========================================
   CSS CUSTOM PROPERTIES (Variables)
   ======================================== */
:root {
    /* Farben aus Logo */
    --color-primary: #1a6bb5;
    --color-primary-light: #2d8cb8;
    --color-primary-dark: #145a96;
    --color-secondary: #4a9a3e;
    --color-secondary-light: #5cb84d;
    --color-secondary-dark: #3a7a30;
    --color-accent-yellow: #f5b041;
    --color-accent-orange: #e67e22;
    
    /* Text */
    --color-text: #4a4a4a;
    --color-text-light: #6c757d;
    --color-text-dark: #2c2c2c;
    --color-heading: #1a6bb5;
    
    /* Hintergründe */
    --color-bg-light: #f8f9fa;
    --color-bg-white: #ffffff;
    --color-bg-section: #f0f7f4;
    --color-bg-dark: #2c3e50;
    
    /* Farbverläufe */
    --gradient-primary: linear-gradient(135deg, #1a6bb5 0%, #2d8cb8 50%, #4a9a3e 100%);
    --gradient-soft: linear-gradient(180deg, #f8f9fa 0%, #e8f4e8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 107, 181, 0.9) 0%, rgba(74, 154, 62, 0.85) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    
    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 10px 40px rgba(26, 107, 181, 0.1);
    --shadow-hover: 0 15px 50px rgba(26, 107, 181, 0.15);
    
    /* Typografie */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Größen */
    --container-width: 1300px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: grid;
    gap: 30px;
}

/* 4-Spalten Layout */
.row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .row-4,
    .row-3,
    .row-2 {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.5px;
}

.site-logo .logo-green {
    color: #4a9a3e;
}

.site-logo .logo-blue {
    color: #1a6bb5;
}

.site-logo:hover .logo-green {
    color: #3a7a32;
}

.site-logo:hover .logo-blue {
    color: #155a9a;
}

.site-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.site-logo:hover img {
    transform: scale(1.02);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav a {
    display: block;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: calc(100% - 40px);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .site-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--color-bg-white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-nav a {
        padding: 15px 20px;
        text-align: center;
        background: var(--color-bg-light);
        border-radius: var(--border-radius);
    }
}

@media (max-width: 480px) {
    .site-logo .logo-text {
        font-size: 0.95rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--gradient-soft);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('assets/images/hero-pattern.svg') no-repeat center right;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

/* Animierte Hintergrund-Elemente (Sonne & Männchen aus Logo) */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-element {
    position: absolute;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

/* Sonne - oben rechts, schwebt sanft nach oben und zur Mitte + langsame Rotation */
.hero-sonne {
    width: 450px;
    height: auto;
    top: -80px;
    right: -5%;
    animation: sonneFloatRotate 30s ease-in-out infinite, sonnePulse 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 200, 50, 0.4));
}

/* Männchen - unten links, schwebt nach oben und zur Mitte */
.hero-maennchen {
    width: 400px;
    height: auto;
    bottom: -5%;
    left: -3%;
    animation: maennchenFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(74, 154, 62, 0.25));
}

/* Sonne schwebt und dreht sich langsam (1 volle Umdrehung = 30s) */
@keyframes sonneFloatRotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    16.67% {
        transform: translate(-60px, -30px) rotate(60deg);
    }
    33.33% {
        transform: translate(0, 0) rotate(120deg);
    }
    50% {
        transform: translate(-60px, -30px) rotate(180deg);
    }
    66.67% {
        transform: translate(0, 0) rotate(240deg);
    }
    83.33% {
        transform: translate(-60px, -30px) rotate(300deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Sonne pulsiert / strahlt */
@keyframes sonnePulse {
    0%, 100% {
        opacity: 0.12;
        filter: drop-shadow(0 0 40px rgba(255, 200, 50, 0.3));
    }
    50% {
        opacity: 0.22;
        filter: drop-shadow(0 0 60px rgba(255, 200, 50, 0.5));
    }
}

/* Männchen schwebt nach oben und zur Mitte */
@keyframes maennchenFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -40px);
    }
}

/* Responsive: Auf Tablet/Mobile kleiner und dezenter */
@media (max-width: 1024px) {
    .hero-sonne {
        width: 280px;
        top: -40px;
        right: -50px;
        opacity: 0.1;
    }
    
    .hero-maennchen {
        width: 250px;
        bottom: 0;
        left: -40px;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .hero-sonne {
        width: 180px;
        top: 0;
        right: -30px;
    }
    
    .hero-maennchen {
        width: 150px;
        bottom: 5%;
        left: -30px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 107, 181, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Gradient für "Netzwerk Gesundheit" - Grün zu hellerem Grün */
.hero-title .title-green {
    background: linear-gradient(135deg, #3a7a32 0%, #5cb85c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient für "Osthessen" - Blau zu hellerem Blau */
.hero-title .title-blue {
    background: linear-gradient(135deg, #1a6bb5 0%, #4da6e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    display: inline;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Transparentes Logo: ohne Karten-Box/Schatten frei stehen lassen */
.hero-image img.hero-logo-large {
    border-radius: 0;
    box-shadow: none;
}

/* Video Container */
.hero-video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.hero-video-container:hover::before {
    opacity: 0.3;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--color-primary);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        order: -1;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-bg-white);
    box-shadow: 0 4px 15px rgba(26, 107, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 107, 181, 0.4);
    color: var(--color-bg-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-bg-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 107, 181, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Abwechselnde Hintergründe */
.bg-light {
    background: var(--color-bg-light);
}

/* Sanfter Gradient - HELLER Hintergrund, DUNKLER Text */
.bg-gradient {
    background: var(--gradient-soft);
}

/* Sicherstellen: Bei hellem Hintergrund = dunkler Text */
.bg-gradient .section-title,
.bg-gradient h2 {
    color: var(--color-primary);
}

.bg-gradient .section-label {
    background: rgba(26, 107, 181, 0.1);
    color: var(--color-primary);
}

.bg-gradient .section-description {
    color: var(--color-text-light);
}

/* AUSNAHME: Kontakt-Sektion hat eigenen Primary-Gradient */
/* (wird unten durch .kontakt-section überschrieben) */

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a6bb5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========================================
   MITGLIEDER SECTION (Cards/Kacheln)
   ======================================== */
.mitglieder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mitglied-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(26, 107, 181, 0.1);
}

.mitglied-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(1);
    opacity: 0.7;
    transition: var(--transition);
}

.mitglied-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 107, 181, 0.2);
    border-color: var(--color-primary);
}

.mitglied-card:hover::before {
    opacity: 1;
}

.mitglied-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.mitglied-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.mitglied-card:hover .mitglied-image img {
    transform: scale(1.08);
}

.mitglied-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mitglied-card:hover .mitglied-overlay {
    opacity: 1;
}

.mitglied-content {
    padding: 25px;
}

.mitglied-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-heading);
}

.mitglied-specialty {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.mitglied-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-bg-light);
    color: var(--color-primary);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mitglied-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-white);
}

@media (max-width: 1200px) {
    .mitglieder-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .mitglieder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   ANGEBOTE SECTION (Instagram-Style Feed)
   ======================================== */
.angebote-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.angebot-item {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.angebot-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.angebot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.angebot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.angebot-meta {
    flex: 1;
}

.angebot-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.angebot-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.angebot-image {
    position: relative;
    padding-top: 100%;
}

.angebot-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.angebot-content {
    padding: 15px;
}

.angebot-title {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-heading);
}

.angebot-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .angebote-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .angebote-feed {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MITGLIED WERDEN SECTION
   ======================================== */
.mitglied-werden {
    background: var(--gradient-primary);
    color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.mitglied-werden::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
    pointer-events: none;
}

.mitglied-werden .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.mitglied-werden .section-title,
.mitglied-werden h2,
.mitglied-werden h3 {
    color: #ffffff !important;
}

.mitglied-werden .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Sicherstellen, dass alle Texte auf Gradient-Hintergründen weiß sind */
.bg-gradient h1,
.bg-gradient h2,
.bg-gradient h3,
.bg-gradient h4,
.bg-gradient .section-title {
    color: #ffffff !important;
}

.bg-gradient .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.bg-gradient .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.vorteil-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vorteil-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.vorteil-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.vorteil-title {
    font-size: 1.1rem;
    color: var(--color-bg-white);
    margin-bottom: 10px;
}

.vorteil-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.preis-box {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.preis-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.preis-period {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.preis-features {
    list-style: none;
    margin-bottom: 30px;
}

.preis-features li {
    padding: 10px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-bg-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.preis-features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Erster Punkt: alles in eine Zeile, Zusatz dezent kleiner */
.preis-features li.preis-feature-wide {
    white-space: nowrap;
    font-size: 0.95rem;
}

.preis-feature-note {
    font-size: 0.8em;
    color: var(--color-text-light);
}

.preis-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.preis-buttons .btn {
    justify-content: center;
}

.preis-pdf-hinweis {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-align: center;
}

.preis-pdf-hinweis a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   VERANSTALTUNGEN SECTION
   ======================================== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    align-items: center;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.event-date-box {
    background: var(--gradient-primary);
    color: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h3 {
    margin-bottom: 10px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.event-location svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-date-box {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .event-location {
        justify-content: center;
    }
}

/* ========================================
   DOWNLOADS SECTION
   ======================================== */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 260px));
    justify-content: center;
    gap: 25px;
}

.download-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbfd 100%);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26, 107, 181, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(26, 107, 181, 0.15);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1a6bb5 0%, #2d8cb8 50%, #4a9a3e 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 107, 181, 0.2);
    border-color: rgba(26, 107, 181, 0.3);
}

.download-card:hover::before {
    opacity: 0;
}

.download-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(26, 107, 181, 0.25);
}

.download-card:hover .download-icon {
    background: linear-gradient(145deg, #e8f4fc 0%, #d4ebf7 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 107, 181, 0.15);
}

.download-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
    transition: var(--transition);
}

.download-card:hover .download-icon svg {
    color: var(--color-primary);
}

.download-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.download-size {
    font-size: 0.85rem;
    color: var(--color-text-light);
    background: rgba(26, 107, 181, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   KONTAKT SECTION
   ======================================== */
.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.kontakt-info h3 {
    margin-bottom: 25px;
}

.kontakt-list {
    list-style: none;
}

.kontakt-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-bg-light);
}

.kontakt-list li:last-child {
    border-bottom: none;
}

.kontakt-icon {
    width: 45px;
    height: 45px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontakt-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.kontakt-text strong {
    display: block;
    color: var(--color-text-dark);
    margin-bottom: 3px;
}

.kontakt-text span {
    color: var(--color-text-light);
}

/* Kontaktformular */
.kontakt-form {
    background: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--color-bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--color-bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(26, 107, 181, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

@media (max-width: 900px) {
    .kontakt-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand img {
    max-height: 110px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Footer Icon Links (Kontakt) */
.footer-icon-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-icon-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.footer-icon-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 107, 181, 0.4);
}

.footer-icon-link svg {
    width: 32px;
    height: 32px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    color: var(--color-bg-white);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--color-bg-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-bg-white);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-bg-white);
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Footer-Logo auf Mobil größer */
    .footer-brand img {
        max-height: 130px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-icon-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--color-bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   MODAL / LIGHTBOX
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--color-bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* ========================================
   PDF EMBED
   ======================================== */
.pdf-container {
    width: 100%;
    height: 80vh;
    border: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation für Karten */
.stagger-animation > * {
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-animation > *:nth-child(8) { animation-delay: 0.8s; }

/* ========================================
   UNTERSEITEN (Impressum, Datenschutz, etc.)
   ======================================== */
.page-header {
    background: var(--gradient-soft);
    padding: 150px 0 80px;
    text-align: center;
}

.page-content {
    padding: 80px 0;
}

.page-content .container {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 30px;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }
.visible { display: block; }

@media (max-width: 768px) {
    .hidden-mobile { display: none; }
}

@media (min-width: 769px) {
    .hidden-desktop { display: none; }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .scroll-top,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    section {
        padding: 30px 0;
    }
}

/* ========================================
   GRID LAYOUTS (row-2, row-3, row-4)
   ======================================== */
.row-2, .row-3, .row-4 {
    display: grid;
    gap: 30px;
}

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

.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.row-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .row-2, .row-3, .row-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FEATURE CARDS (Über uns Sektion)
   ======================================== */
.feature-card {
    background: var(--color-bg-white);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 107, 181, 0.1) 0%, rgba(74, 154, 62, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   KONTAKT SEKTION (Kompakt, horizontal)
   ======================================== */
.kontakt-section {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #e8f4f8 100%);
    position: relative;
    padding: 80px 0;
}

.kontakt-section .section-header {
    margin-bottom: 40px;
}

/* Kontakt-Bar (horizontal, einzeilig) - gleiche Breite wie Formular */
.kontakt-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 40px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.kontakt-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.kontakt-bar-item:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.kontakt-bar-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .kontakt-bar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 25px 20px;
    }
}

/* Kompaktes Kontaktformular */
.kontakt-form-compact {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 181, 0.1);
}

/* Name + E-Mail nebeneinander, zusammen volle Breite */
.kontakt-form-compact .ngo-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .kontakt-form-compact {
        padding: 25px 20px;
    }
    .kontakt-form-compact .ngo-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.kontakt-form-compact .ngo-contact-form .form-group {
    margin-bottom: 18px;
}

.kontakt-form-compact .ngo-contact-form label {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.kontakt-form-compact .ngo-contact-form input,
.kontakt-form-compact .ngo-contact-form textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
}

.kontakt-form-compact .ngo-contact-form textarea {
    min-height: 100px;
}

.kontakt-form-compact .ngo-contact-form .captcha-group {
    padding: 15px;
    margin-bottom: 15px;
}

.kontakt-form-compact .ngo-contact-form .btn {
    width: auto;
    min-width: 200px;
    padding: 14px 30px;
}

.kontakt-form-compact .form-notice {
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    text-align: center;
}

/* ========================================
   NGO KONTAKTFORMULAR (Spam-Schutz Plugin)
   ======================================== */
.kontakt-form {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.kontakt-form h3 {
    color: var(--color-primary) !important;
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-bg-light);
}

.ngo-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .ngo-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.ngo-contact-form .form-group {
    margin-bottom: 20px;
}

.ngo-contact-form label {
    display: block;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ngo-contact-form .required {
    color: #dc3232;
}

.ngo-contact-form .optional {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.85rem;
}

.ngo-contact-form input[type="text"],
.ngo-contact-form input[type="email"],
.ngo-contact-form input[type="tel"],
.ngo-contact-form input[type="number"],
.ngo-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: #ffffff;
    transition: var(--transition);
}

.ngo-contact-form input:focus,
.ngo-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(26, 107, 181, 0.1);
}

.ngo-contact-form input::placeholder,
.ngo-contact-form textarea::placeholder {
    color: #aaa;
}

.ngo-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ngo-contact-form .captcha-group {
    background: linear-gradient(135deg, rgba(74, 154, 62, 0.08) 0%, rgba(26, 107, 181, 0.08) 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px dashed var(--color-secondary);
    margin-bottom: 20px;
}

.ngo-contact-form .captcha-group label {
    color: var(--color-secondary);
    font-weight: 600;
}

.ngo-contact-form .privacy-group {
    margin-bottom: 25px;
}

.ngo-contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.ngo-contact-form .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.ngo-contact-form .checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.ngo-contact-form .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
}

.ngo-contact-form .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ngo-contact-form .form-messages {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.ngo-contact-form .form-messages.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #b8dabc;
}

.ngo-contact-form .form-messages.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f1b0b7;
}

.ngo-contact-form .field-error {
    border-color: #dc3232 !important;
}

/* ========================================
   ANGEBOTE SEKTION (Heller Hintergrund)
   ======================================== */
.angebote-section {
    background: linear-gradient(180deg, #f0f7f4 0%, #e8f4f0 100%);
}

.angebote-section .section-label {
    background: rgba(26, 107, 181, 0.1);
    color: var(--color-primary);
}

.angebote-section .section-title,
.angebote-section h2 {
    color: var(--color-primary) !important;
}

.angebote-section .section-description {
    color: var(--color-text) !important;
}

/* Plugin nicht aktiviert Hinweis */
.angebote-section p:only-child {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    border: 1px dashed var(--color-primary);
}


/* Scroll-Hinweis im Hero (NGO Änderung 06/2026) */
.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a6bb5;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.hero-scroll-hint:hover { opacity: 1; }
.hero-scroll-chevron {
    display: inline-block;
    font-size: 1.2rem;
    animation: ngo-bounce 1.8s infinite;
}
@keyframes ngo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-scroll-chevron { animation: none; }
}

/* Home-Icon in der Hauptnavigation (statt "Home") */
.main-nav .nav-home {
    display: inline-flex;
    align-items: center;
}
.main-nav .nav-home svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Scroll-Aufforderung in der Mitglieder-Sektion */
.mitglieder-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a6bb5;
    opacity: 0.85;
}
.mitglieder-scroll-chevron {
    display: inline-block;
    font-size: 1.2rem;
    animation: ngo-bounce 1.8s infinite;
}
@media (prefers-reduced-motion: reduce) {
    .mitglieder-scroll-chevron { animation: none; }
}
