  /* --- 1. GRUNDDESIGN --- */
  
       body {
            margin: 0;
            padding: 0;
            padding-top: 100px;
            font-family: 'Segoe UI', sans-serif;
            color: #333;
            background-color: #f4f4f4;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* --- 2. NAVIGATION (Desktop) --- */
        .menu-toggle, .hamburger { 
            display: none; 
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            z-index: 1000;
        }

        .navbar a {
            color: white;
            text-decoration: none;
            margin-right: 40px;
            font-size: 14px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 600;
            transition: 0.3s;
        }

        .navbar a:hover { opacity: 0.7; }

        .navbar a.active {
            text-decoration: underline;
            opacity: 1;
        }

        .Überschrift{
            font-size: 40px;
        }

        /* --- 3. HEADER --- */
        header {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/home (2).jpg');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        header h1 {
            font-size: clamp(30px, 8vw, 60px);
            text-transform: uppercase;
            letter-spacing: 5px;
            margin: 0;
            padding: 0 20px;
        }

        /* --- 4. INHALT (Hobbys & Steckbrief) --- */
        section {
            padding: 80px 20px;
            text-align: center;
            background-color: #d8ddd6;
        }

        .hobby-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .card {
            background: white;
            padding: 25px;
            width: 280px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .btn-verein {
            display: inline-block;
            background-color: #3e4a3d;
            color: white;
            text-decoration: none;
            padding: 15px 35px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .btn-verein:hover {
            transform: translateY(-15px);
            background-color: #526351;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .info-section {
            background-color: #e9ede9;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 60px 20px;
            gap: 40px;
        }

        table {
            width: 100%;
            max-width: 500px;
            background: white;
            border-collapse: collapse;
        }

        table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }

        /* --- 5. LOGO & FOOTER --- */
        footer {
            background-color: #3e4a3d;
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            font-size: 12px;
            margin: 0 10px;
        }

        .footer-links a:hover {
            text-decoration: underline;
            opacity: 1;
        }

        .corner-logo {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 100px;
            z-index: 1000;
        }

        .corner-logo img { width: 100%; opacity: 0.9; }

        /* --- 6. HANDY-MENÜ --- */
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            
            .hamburger {
                display: block;
                position: fixed;
                top: 15px;
                left: 15px;
                z-index: 10001;
                cursor: pointer;
            }

            .hamburger span {
                display: block;
                width: 28px;
                height: 3px;
                background: white;
                margin: 6px 0;
                transition: 0.4s;
            }

            .navbar {
                position: fixed;
                top: 70px;
                left: -100%;
                width: auto;
                height: auto;
                min-width: 150px;
                background-color: #3e4a3d;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 15px 25px;
                border-radius: 0 15px 15px 0;
                transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
            }

            .menu-toggle:checked ~ .navbar {
                left: 0;
            }

            .navbar a {
                margin: 12px 0;
                font-size: 14px;
                white-space: nowrap;
                margin-right: 0;
                color: white;
            }

            .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
            .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
            .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
            
            header {
                height: 50vh;
                background-attachment: scroll;
            }
            
            header h1 {
                font-size: clamp(24px, 6vw, 40px);
                letter-spacing: 2px;
                padding: 0 15px;
            }
            
            section {
                padding: 40px 15px;
            }
            
            .hobby-container {
                gap: 15px;
                margin-bottom: 30px;
            }
            
            .card {
                width: 100%;
                max-width: 280px;
                padding: 20px;
            }
            
            .card h3, .card-text h3 {
                font-size: 16px;
            }
            
            .card p, .card-text p {
                font-size: 13px;
                line-height: 1.5;
            }
            
            .btn-verein {
                padding: 12px 30px;
                font-size: 12px;
            }
            
            .info-section {
                padding: 30px 15px;
                gap: 20px;
            }
            
            table td {
                padding: 10px;
                font-size: 13px;
            }
            
            .corner-logo { width: 70px; }
        }