        /* Allgemeine Stile */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #000;
            color: #fff;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        a {
            color: #ff0;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 1.2rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        a:hover {
            color: #ff0;
            text-shadow: 0 0 10px #ff0;
        }

        /* Neon-Box-Stil */
        .neon-box {
            border: 3px solid #0ff;
            border-radius: 15px;
            padding: 1rem;
            margin: 1rem auto;
            box-shadow: 0 0 20px #0ff, 0 0 40px #3300ff;
            max-width: 1400px;
        }

        /* Header */
        header {
            padding: 1rem;
            text-align: center;
            color: #0ff;
            text-shadow: 0 0 10px #0ff;
            background-size: cover;
            background-position: center center;
            height: 300px;
        }

        /* Menü */
        nav {
            display: flex;
            justify-content: center;
            background-color: #222;
            padding: 0.5rem;
        }

        nav a {
            color: #0ff;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 1.2rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        nav a:hover {
            color: #ff0;
            text-shadow: 0 0 10px #ff0;
        }

        /* Hauptinhalt */
        main {
            padding: 2rem;
            text-align: center;
        }

        main h1 {
            color: #0f0;
            text-shadow: 0 0 15px #0f0;
        }

        main p {
            font-size: 1.2rem;
            line-height: 1.5;
        }

		.main-image-home img {
			width: 100%;
			border-radius: 20px;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
		}
		
		/*Preisbox */
		.preise-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 1rem; /* Abstand zwischen den Boxen */
			margin: 2rem auto;
		}

		.preis-box {
			flex: 1;
			min-width: 320px;
			max-width: 350px;
			background-color: #222;
			border: 2px solid #0ff;
			border-radius: 15px;
			padding: 1rem;
			text-align: center;
			box-shadow: 0 0 5px #0ff, 0 0 15px #3300ff;
			transition: transform 0.3s ease;
			margin: 1rem; /* Zusätzlicher Abstand um jede Box */
		}

		.preis-box:hover {
			transform: scale(1.05);
			box-shadow: 0 0 10px #0ff, 0 0 15px #ff0;
		}

		.preis-box h3 {
			color: #0ff;
			margin-bottom: 1rem;
		}

		.preis-box p {
			font-size: 1.5rem;
			color: #fff;
			margin: 0.5rem 0;
		}

		.preis-box .preis-btn {
			display: inline-block;
			margin-top: 1rem;
			padding: 0.5rem 1rem;
			font-size: 1.2rem;
			background-color: #0ff;
			color: #000;
			border: none;
			border-radius: 5px;
			cursor: pointer;
			text-decoration: none;
			transition: background-color 0.3s ease, box-shadow 0.3s ease;
		}

		.preis-box .preis-btn:hover {
			background-color: #ff0;
			box-shadow: 0 0 10px #ff0, 0 0 20px #0ff;
		}

        /* CSS für responsive iframe */
        .iframe-container {
            position: relative;
            width: 100%;
            max-width: 1200px; /* Maximale Breite des Containers */
            margin: 0 auto; /* Zentriert den iframe-Container */
            padding-bottom: 56.25%; /* 16:9-Verhältnis */
            height: 0;
            overflow: hidden;
        }

        .iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none; /* Entfernt den Rahmen */
        }

		/* CSS für Gallerie */
		.gallery {
			position: relative;
			max-width: 90%;
			margin: auto;
			text-align: center;
			overflow: hidden;
		}

		.main-image img {
			width: 100%;
			border-radius: 20px;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
		}

		.thumbnails {
			display: flex;
			justify-content: center;
			margin-top: 10px;
			gap: 10px;
		}

		.thumbnails img {
			width: 100px;
			height: 60px;
			border-radius: 10px;
			cursor: pointer;
			transition: transform 0.3s, opacity 0.3s;
		}

		.thumbnails img:hover {
			transform: scale(1.1);
			opacity: 0.8;
		}

		button {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			background-color: rgba(0, 0, 0, 0.5);
			color: white;
			border: none;
			font-size: 2rem;
			padding: 0.5rem;
			cursor: pointer;
			border-radius: 50%;
			z-index: 10;
		}

		button:hover {
			background-color: rgba(0, 0, 0, 0.8);
		}

		button.prev {
			left: 10px;
		}

		button.next {
			right: 10px;
		}

		/* CSS für Kontaktformular */
		.contact-form {
			max-width: 90%;
			margin: 2rem auto;
			padding: 1.5rem;
			background-color: #111;
			color: #fff;
			border-radius: 8px;
			box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
		}

		.contact-form h2 {
			text-align: center;
			color: #0ff;
			margin-bottom: 1rem;
		}

		.contact-form label {
			display: block;
			margin: 0.5rem 0 0.2rem;
			font-weight: bold;
		}

		.contact-form input, 
		.contact-form textarea {
			width: 100%;
			padding: 0.5rem;
			margin-bottom: 1rem;
			border: none;
			border-radius: 4px;
			background-color: #222;
			color: #fff;
		}

		.contact-form button {
			display: block;
			width: 100%;
			padding: 0.7rem;
			background-color: #0ff;
			color: #000;
			border: none;
			border-radius: 4px;
			font-size: 1.2rem;
			cursor: pointer;
			transition: background-color 0.3s ease;
		}

		.contact-form button:hover {
			background-color: #ff0;
		}

		.success-message {
			padding: 1rem;
			background-color: #4caf50;
			color: #fff;
			margin-bottom: 1rem;
			border-radius: 5px;
			text-align: center;
		}

		.error-message {
			padding: 1rem;
			background-color: #f44336;
			color: #fff;
			margin-bottom: 1rem;
			border-radius: 5px;
			text-align: center;
		}

		/* Footer Öffnungszeiten */
		.opening-hours {
			width: 100%;
			border-collapse: collapse;
			margin-top: 20px;
		}

		.opening-hours td {
			padding: 5px 10px;
			vertical-align: top;
		}

		.opening-hours td:first-child {
			text-align: right;
			font-weight: bold;
		}

		.opening-hours td:last-child {
			text-align: left;
		}

        /* Footer */
        footer {
            background-color: #111;
            padding: 2rem 1rem;
            margin-top: 2rem;
            color: #fff;
        }

        footer .footer-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        footer .footer-container div {
            flex: 1;
            min-width: 200px;
            margin: 0.5rem;
            text-align: center;
        }

        footer .footer-container div h3 {
            color: #0ff;
            margin-bottom: 1rem;
        }

        footer .footer-container div a {
            color: #ff0;
            text-decoration: none;
            display: block;
            margin: 0.2rem 0;
        }

        footer .footer-container div a:hover {
            text-shadow: 0 0 5px #ff0;
        }

        /* Footer Navigation */
        footer .footer-nav {
            text-align: center;
            margin-top: 2rem;
        }

        footer .footer-nav a {
            color: #0ff;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 1.2rem;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        footer .footer-nav a:hover {
            color: #ff0;
            text-shadow: 0 0 10px #ff0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
            }

            nav a {
                margin: 0.5rem 0;
            }

            footer .footer-container {
                flex-direction: column;
            }

            footer .footer-container div {
                margin: 1rem 0;
            }
			
		    .preis-box {
            max-width: 90%;
    	    }
        }