/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #1a365d;
            --beige: #f5f0e6;
            --warm-white: #f9f7f3;
            --gray: #6b7280;
            --light-gray: #e5e7eb;
            --accent: #c05621;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background-color: var(--warm-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: var(--navy);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--navy);
            color: white;
            border-radius: 4px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

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

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--navy);
            color: var(--navy);
        }

        .btn-outline:hover {
            background-color: var(--navy);
            color: white;
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--navy);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            margin: 1rem auto 0;
        }
        
        @media (max-width: 768px) {
            .site-name {
                font-size: 0.8rem;
            }
            .nav-toggle {
                margin-left: 16px;
            }
        }

        /* Header & Navigation */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }

        .branding {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }   


        .site-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--black);
            white-space: nowrap;
        }


        .logo {
            width: 100px;
            height: auto;
            /* width: auto; */
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--navy);
            cursor: pointer;
        }

        .nav-links {
            font-size: 1.2rem;
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            font-weight: 500;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: url('/images/group_edit.jpg') no-repeat center center/cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-color: rgba(26, 54, 93, 0.7); */
			background-color: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 1.5rem;
        }

        .hero-logo {
            height: 80px;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero .btn {
            margin-top: 1rem;
        }

        /* What We Do Section */
        .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--warm-white);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        /* Events Section */
        .events {
            background-color: var(--warm-white);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-img {
            height: 700px;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        @media (max-width: 576px) {
          .event-img {
            height: auto;         /* dynamische Höhe */
            object-fit: contain;  /* zeigt das ganze Bild */
            max-height: 90vh;     /* optional: nicht größer als Bildschirmhöhe */
            background: #fff;     /* optional: neutraler Rand hinter dem Bild */
          }
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-date {
            display: flex;
            align-items: center;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .event-date i {
            margin-right: 0.5rem;
        }

        .event-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .event-location {
            display: flex;
            align-items: center;
            color: var(--gray);
            margin-bottom: 1rem;
        }

        .event-location i {
            margin-right: 0.5rem;
        }

        /* Support Section */
        .support {
            background-color: white;
            text-align: center;
        }

        .support-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .support p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .quote {
            margin-top: 3rem;
            padding: 2rem;
            background-color: var(--warm-white);
            border-radius: 8px;
            position: relative;
        }

        .quote:before {
            content: '"';
            position: absolute;
            top: 0.5rem;
            left: 1rem;
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .quote-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .quote-author {
            font-weight: 500;
            color: var(--accent);
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--warm-white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
            cursor: pointer;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 54, 93, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-icon {
            color: white;
            font-size: 2rem;
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .modal.open {
            display: flex;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .modal-img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Footer */
        footer {
            background-color: var(--navy);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            height: auto;
            width: 150px;
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
        }

        .footer-links a:hover {
            color: white;
        }

        .contact-item {
            color: white;
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .contact-icon {
            margin-right: 0.8rem;
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--light-gray);
        }

        .footer-bottom a {
            color: var(--light-gray);
        }

        .footer-bottom a:hover {
            color: white;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 0.5rem 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }

            .section {
                padding: 3rem 0;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

            .btn-group .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }

            .hero-logo {
                height: 60px;
            }

            .section-title {
                font-size: 1.6rem;
            }
        }


        .popup-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        /* Popup-Box */
        .popup {
            background: white;
            padding: 20px;
            border-radius: 10px;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }

        /* Schließen-Button */
        .close-btn {
            background: #ff4d4d;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
        }


        .cta-modal { 
        position: fixed; 
        inset: 0; 
        display: none; 
        justify-content: center; 
        align-items: center; 
        }

        .cta-modal.is-open { 
        display: flex; 
        }

        .cta-modal__overlay {
        position: absolute; inset: 0;
        background: rgba(0,0,0,0.55);
        }

        .cta-modal__body a {
        color: var(--accent);
        font-weight: 500;
        text-decoration: underline;
        }

        .cta-modal__dialog {
        position: relative; 
        z-index: 1;
        max-width: 560px; 
        width: calc(100% - 32px);
        background: #fff; 
        color: #111;
        border-radius: 12px; 
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        padding: 24px 24px 28px;
        }

        .cta-modal__title { margin: 0 0 12px; font-size: 1.5rem; line-height: 1.25; }
        .cta-modal__body p { margin: 0 0 12px; }
        .cta-modal__body ul { margin: 0 0 12px 18px; }

        .cta-modal__close {
        position: absolute; top: 8px; right: 12px;
        border: 0; background: transparent; cursor: pointer;
        font-size: 1.75rem; line-height: 1; color: #666;
        }

        @media (prefers-color-scheme: dark) {
        .cta-modal__dialog { background: #1a365d; color: #eaeaea; }
        .cta-modal__close  { color: #aaa; }
        }