        /* KORREKTUR: Menu-Container - Basis bleibt gleich */
        .menu-container {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .menu-toggle {
            display: none;
        }

        /* KORREKTUR 1: Menu-Button - Transparenterer Hintergrund */
        .menu-button {
            display: block;
            cursor: pointer;
            
            /* ? NEUER ANSATZ: Immer volle Breite, aber visuell kleiner */
            width: 100%;
            padding: 10px 7px;
            box-sizing: border-box;
            
            /* ? Transparenterer Hintergrund */
            background: linear-gradient(to right, 
                rgba(255, 255, 255, 0.75) 50px,  /* ? Transparenter: 0.75 ? 0.4 */
                transparent 50px
            );
            
            /* ? Border-radius mit Pseudo-Element (siehe unten) */
            position: relative;

            /* ? NUR background-color animieren */
            transition: background-color 0.3s ease;
            
            color: #333;
        }
		
		
		

        /* KORREKTUR 2: Border-radius mit Pseudo-Element - Transparenter */
        .menu-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.4);  /* ? Transparenter: 0.75 ? 0.4 */
            border-radius: 0 0 12px 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        /* KORREKTUR 3: Hamburger-Linien - Elegant mittig im 50px Bereich */
        .menu-button span {
            display: block;
            width: 20px;
            height: 2px;
            background-color: #333;
            margin: 5px 0;          /* ? Nur vertical margin */
            
            /* ? Elegante Zentrierung im 50px Bereich */
            margin-left: 8px;      /* ? (50px - 20px) / 2 = 15px */
            
            transition: all 0.3s ease;
        }

        /* KORREKTUR 4: Scrolled State - Pseudo-Element ausblenden */
        .menu-button.scrolled {
            background-color: white; /* ? Volle Breite weiß */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .menu-button.scrolled::before {
            opacity: 0; /* ? Pseudo-Element ausblenden = volle Breite */
        }

        /* KORREKTUR 5: Geöffnetes Menü - Pseudo-Element ausblenden */
        .menu-toggle:checked ~ .menu-button {
            background-color: white;
        }

        .menu-toggle:checked ~ .menu-button::before {
            opacity: 0; /* ? Pseudo-Element weg = volle Breite */
        }

        /* Menu-Inhalt bleibt unverändert */
        .menu {
            background-color: rgba(255, 255, 255, 0.75);
            width: 100%;
            display: none;
            box-sizing: border-box;
            box-shadow: none;
            transition: box-shadow 0.3s ease;
        }

        .menu ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .menu li {
            padding: 5px 20px;
            text-align: left;
        }

        .menu li a {
            color: #333;
            text-decoration: none;
            display: block;
        }

        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background-color: #eee;
        }

        .menu-toggle:checked ~ .menu {
            display: block;
        }

        .menu-toggle:checked ~ .menu .submenu {
            max-height: 200px;
        }

        /* Hamburger Animation bleibt gleich */
        .menu-toggle:checked ~ .menu-button span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle:checked ~ .menu-button span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle:checked ~ .menu-button span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .menu-toggle:checked ~ .menu > ul {
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            border-radius: 0 0 12px 12px;
        }

        /* KORREKTUR 6: Logo - Links positioniert (mehr Platz rechts) */
        .logo-container {
            position: fixed;
            top: 0px;
            right: 15px;        /* ? Mehr Platz rechts, da Menu-Button jetzt links ist */
            z-index: 1001;
        }

        .menu-logo {
            padding: 5px;
            opacity: 0;
            transition: opacity 0.3s ease; /* ? NUR opacity */
            /* KEIN transform */
        }

        .menu-logo img {
            max-width: 80px;
            height: auto;
            max-height: 36px;
        }

        body.scrolled .menu-logo {
            opacity: 1;
        }

        /* Responsive Design bleibt unverändert */
        @media screen and (min-width: 700px) {
            .menu-toggle,
            .menu-button {
                display: none;
            }

            .menu {
                display: flex !important;
                background-color: transparent;
                position: relative;
                transition: background-color 0.3s ease;
            }

            .menu ul {
                display: flex;
                justify-content: flex-start;
            }

            .menu li {
                margin: 3px 10px;
                position: relative;
            }

            .submenu {
                display: none;
                position: absolute;
                background-color: white;
                padding: 10px;
                box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
                border-radius: 0 0 12px 12px;
                top: 100%;
                left: 0;
            }

            ul.submenu {
                display: block;
            }

            .menu li:hover .submenu,
            .menu li:focus-within .submenu {
                display: block;
            }

            .menu.scrolled {
                background-color: white;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }

            /* Desktop Logo */
            .logo-container {
                right: 20px;
            }

            .menu-logo {
                padding: 10px 20px;
                height: 40px;
                display: flex;
                align-items: center;
            }
        }

        .oval-bottom {
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 0 0 12px 0;
            padding: 0 10px;
        }


 
