/* Grundlegende Reset-Einstellungen */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fafb;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #4a2c7a 0%, #6a4b9e 100%);
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 15px;
        }

        /* Menü-Links ohne Kästchen */
        nav ul li a {
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2); /* Subtile Aufhellung beim Hover */
            border-radius: 4px;
        }

        /* Hauptinhalt */
        main {
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        section {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            padding: 40px;
            margin-bottom: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        section:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }

        h1 {
            font-size: 2.8em;
            color: #4a2c7a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        h2 {
            font-size: 2em;
            color: #6a4b9e;
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 5px solid #8d6e63;
            padding-left: 15px;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1em;
            color: #444;
        }

        ul {
            list-style: none; /* Keine Sterne */
            padding-left: 20px;
        }

        ul li {
            margin-bottom: 10px;
            padding: 10px 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        ul li:hover {
            background-color: #eef2ff;
        }

        a {
            color: #6a4b9e;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid #8d6e63;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #4a2c7a;
            border-bottom-color: transparent;
            background-color: #f3e5f5;
            padding: 2px 6px;
            border-radius: 4px;
        }

        /* Bildergalerie */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .gallery-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }

        .gallery-item a {
            display: block;
            border-bottom: none;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.03);
        }

        .caption {
            padding: 18px 20px;
            background-color: #f9fafb;
            font-size: 0.95em;
            color: #555;
            border-top: 1px solid #eee;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 0;
            background: linear-gradient(135deg, #2d1b4e 0%, #4a2c7a 100%);
            color: white; /* Echtes Weiß für Kontrast */
            margin-top: 60px;
        }

        footer p {
            font-size: 1em;
			color: #FFFFFF;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 { font-size: 2.2em; }
            nav ul { flex-direction: column; gap: 15px; }
            section { padding: 25px; }
            .gallery { grid-template-columns: 1fr; }
        }

        /* Code-Blöcke */
        code {
            font-family: 'Consolas', 'Monaco', monospace;
            background-color: #f3e5f5;
            color: #4a2c7a;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.95em;
        }