
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
			--primary-green: #0d1b2a;      /* Dunkelstes Blau (Header, Footer) */
			--secondary-green: #1b3a5c;    /* Sekundärblau (Hover, Akzente) */
			--light-green: #2f6690;        /* Helleres Blau (Buttons, Links) */
			--beige: #eef2f6;              /* Kühles Hellgrau-Blau statt Beige */
			--light-beige: #f8fafc;        /* Fast weiß mit Blaustich */
			--white: #ffffff;
			--text-dark: #1a1a1a;
			--text-light: #4a4a4a;
			--shadow: rgba(13, 27, 42, 0.15);
		}
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-beige);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            background: var(--primary-green);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            /* Fade-in Animation von oben */
            animation: slideDown 0.8s ease-out forwards;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Scroll-Effekt: Schatten + leichtes Heruntersetzen */
        .navbar.scrolled {
            background: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px var(--shadow);
            padding: 0.8rem 2rem;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }
        
        /* Unterstreichen-Animation bei Hover */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--beige);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .nav-link:hover {
            color: var(--beige);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }
        
        .bar {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .hamburger.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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='%23ffffff' 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");
        }
        
        .hero-content {
            z-index: 1;
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.5s both;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--beige);
            color: var(--primary-green);
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.7s both;
        }
        
        .cta-button:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--light-green);
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        
        /* ==========================================
           6. ÜBER UNS SEKTION
           ========================================== */
        
        .about {
            background: var(--white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        
        .about-image {
            background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
            border-radius: 20px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
        }
        
        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
        }
        
        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* ==========================================
           7. AKTUELLES / BLOG SEKTION
           ========================================== */
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .news-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px var(--shadow);
        }
        
        .news-image {
            height: 180px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }
        
        .news-content {
            padding: 1.5rem;
        }
        
        .news-date {
            color: var(--light-green);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }
        
        .news-title {
            font-size: 1.3rem;
            color: var(--primary-green);
            margin-bottom: 0.8rem;
        }
        
        .news-excerpt {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .read-more {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--light-green);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-green);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--beige);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--light-green);
            box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-button {
            width: 100%;
            padding: 1rem;
            background: var(--primary-green);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-button:hover {
            background: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--shadow);
        }
        
        .footer {
            background: var(--primary-green);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .social-links a {
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 2px solid var(--white);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--white);
            color: var(--primary-green);
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* ==========================================
           11. RESPONSIVE DESIGN
           ========================================== */
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-green);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 3rem;
                gap: 2rem;
                transition: left 0.4s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .contact-form {
                padding: 2rem 1.5rem;
            }
            
            .event-item {
                flex-direction: column;
                text-align: center;
            }
            
            .event-date {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
    
/* =============================================
   Active-Link-Style (wird von components.js
   automatisch für die aktuelle Seite gesetzt)
   ============================================= */
.nav-link.active {
    color: var(--beige);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: var(--beige);
}
