:root {
            --primary-color: #2c3e50; /*
Elegantes Dunkelblau/Grau */
            --accent-color: #e67e22;  /* Warmes Orange für Buttons */
            --text-color: #333;
            --bg-light: #f4f4f4;
            --white: #ffffff;
        }
 
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
 
        body {
            font-family: 'Helvetica Neue',
Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }
 
        /* Navigation */
        header {
            background: var(--white);
            box-shadow: 0 2px 5px
rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
 
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }
 
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            white-space: nowrap;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        /* Über den Chor */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-top: 1.5rem;
        }

        .about-img {
            width: 100%;
            border-radius: 6px;
            object-fit: cover;
        }

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

        /* Galerie */
        .galerie-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .galerie-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .galerie-grid { grid-template-columns: repeat(2, 1fr); }
        }
 
        .nav-links {
            display: flex;
            list-style: none;
        }
 
        .nav-links li {
            margin-left: 20px;
        }
 
        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s;
            white-space: nowrap;
        }
 
        .nav-links a:hover {
            color: var(--accent-color);
        }
 
        /* Hero Bereich */
        .hero {
            background:
                linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../images/samy-benabed.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
 
        .hero h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px
rgba(0,0,0,0.5);
        }
 
        /* Hauptinhalt */
        .container {
            max-width: 900px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
 
        h2 {
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
 
        p {
            margin-bottom: 1.2rem;
        }
 
        .highlight-box {
            background: var(--bg-light);
            padding: 2rem;
            border-left: 5px solid
var(--accent-color);
            margin: 2rem 0;
        }
 
        .btn {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s;
            margin-top: 1rem;
        }
 
        .btn:hover {
            background: #d35400;
        }
 
        /* FAQ Bereich */
        .faq-section {
            background: #fff;
            margin-top: 4rem;
        }
 
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
 
        .faq-question {
            font-weight: bold;
            color: var(--primary-color);
            cursor: pointer;
        }
 
        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
 
        .footer-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns:
repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
 
        .footer-section h3 {
            margin-bottom: 1rem;
           
border-bottom: 1px solid #555;
            padding-bottom: 0.5rem;
        }
 
        .footer-section ul {
            list-style: none;
        }
 
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
 
        .footer-section a {
            color: #ccc;
            text-decoration: none;
        }
 
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #555;
            margin-top: 2rem;
            font-size: 0.8rem;
        }
 
        /* Hamburger-Button – nur auf Mobilgeräten sichtbar */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Responsive Anpassung */
        @media (max-width: 768px) {
            .hamburger { display: flex; }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                padding: 1rem 2rem;
                z-index: 999;
            }

            .nav-links.open { display: flex; }

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

            header { position: relative; }
        }
