		body {
			background-image: url('images/map.jpg');
			background-size: 100% auto;
			background-repeat: repeat-y;
			background-position: center top;
			background-color: rgba(0, 0, 0, 0.3);
			font-family: Arial, Helvetica, sans-serif;
			margin: 0;
			padding: 0;
			line-height: 1.6;
			color: #333;
			text-align: center;
		}
        #team h2 {
            color: #ff7700; /* Example: Red for "Team" */
        }



        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header img {
            width: 100%;
            max-width: 1200px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        section {
            margin: 10px 0;
            background-color: transparent;
            display: block;
        }
        .content-box {
            display: inline-block;
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            margin: 10px 0;
        }
        #open-status .content-box {
            background-color: #e6f0e6;
        }
        #open-status .content-box p {
            margin: 0;
            padding-bottom: 0;
        }
        .open {
            font-weight: bold;
            color: green;
            font-size: 28px;
        }
        .closed {
            font-weight: bold;
            color: red;
            font-size: 28px;
        }
        .regular {
            font-weight: bold;
            color: black;
            font-size: 24px;
        }
        .error {
            color: red;
            font-size: 0.9em;
        }
        #video {
            background-color: #f0e6e6;
            padding: 20px;
            border-radius: 8px;
            max-width: 800px;
            margin: 0 auto;
        }
        #park-info {
            background-color: transparent;
            padding: 0;
        }
        #photos .content-box {
            background-color: #f0f0e6;
        }
        #photos .content-box h2 {
            margin-top: 0;
            padding-top: 0;
        }
        #photos .content-box .gallery {
            margin-bottom: 0;
            padding-bottom: 0;
        }
        #oeffnungszeiten .content-box {
            background-color: #e6e6f0;
        }
        #allgemeine-info .content-box {
            background-color: #f0e6f0;
        }
        #preise .content-box {
            background-color: #e6f0e9;
        }
        #kontakt .content-box {
            background-color: #f0e6e9;
        }
        #anfahrt .content-box {
            background-color: #e6edf0;
        }
        h1, h2 {
            color: #2c5e2c;
            text-align: center;
            margin-top: 0;
            padding-top: 0;
        }
        .content-box h2 {
            margin-top: 0;
            padding-top: 0;
        }
        .content-box p:last-child,
        .content-box ul:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.2%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(8, 35px);
            grid-gap: 2px;
            justify-content: center;
            margin-top: 20px;
        }
        .gallery img {
            width: 35px;
            height: 35px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            overflow: auto; /* Allow scrolling if image is larger than viewport */
        }
        .overlay-content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 90vw; /* Limit to 90% of viewport width */
            max-height: 90vh; /* Limit to 90% of viewport height */
        }
        .overlay-content img {
            width: auto; /* Use original width */
            height: auto; /* Use original height */
            max-width: 100%; /* Prevent overflow beyond container */
            max-height: 100%; /* Prevent overflow beyond container */
        }
        .overlay-content .close, .overlay-content .prev, .overlay-content .next {
            position: absolute;
            color: white;
            cursor: pointer;
            background: none;
            padding: 5px;
        }
        .overlay-content .close {
            font-size: 24px;
            top: 0;
            right: 0;
            transform: translate(50%, -50%);
        }
        .overlay-content .prev {
            font-size: 48px;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-family: monospace;
        }
        .overlay-content .next {
            font-size: 48px;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-family: monospace;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        footer {
            background: transparent;
            padding: 20px;
            text-align: center;
            margin: 10px 0;
            display: block;
        }
        footer .content-box {
            background: #f4f4f4;
        }
        footer .content-box h2 {
            margin-top: 0;
            padding-top: 0;
        }
        footer .content-box p {
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .separator {
            border: 0;
            border-top: 1px solid #ccc;
            margin: 10px 0;
        }
        /* Dark Mode Toggle Button */
        .dark-mode-toggle {
            text-align: center;
            padding: 5px 0;
        }
        #darkModeButton {
            background-color: #333;
            color: #fff;
            border: none;
            padding: 4px 6px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }
        #darkModeButton:hover {
            background-color: #555;
        }
        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }
        body.dark-mode .content-box {
            background-color: #2a2a2a;
        }
        body.dark-mode #open-status .content-box {
            background-color: #2a3a2a;
        }
        body.dark-mode #video {
            background-color: #3a2a2a;
        }
        body.dark-mode #photos .content-box {
            background-color: #3a3a2a;
        }
        body.dark-mode #oeffnungszeiten .content-box {
            background-color: #2a2a3a;
        }
        body.dark-mode #allgemeine-info .content-box {
            background-color: #3a2a3a;
        }
        body.dark-mode #preise .content-box {
            background-color: #2a3a33;
        }
        body.dark-mode #kontakt .content-box {
            background-color: #3a2a33;
        }
        body.dark-mode #anfahrt .content-box {
            background-color: #2a333a;
        }
        body.dark-mode footer .content-box {
            background-color: #333333;
        }
        body.dark-mode h1, body.dark-mode h2 {
            color: #a0c0a0;
        }
        body.dark-mode a {
            color: #80b0ff;
        }
        body.dark-mode a:hover {
            color: #a0d0ff;
        }
        body.dark-mode .open {
            color: #90ee90;
        }
        body.dark-mode .closed {
            color: #ff6666;
        }
        body.dark-mode .regular {
            color: #e0e0e0;
        }
        body.dark-mode .error {
            color: #ff9999;
        }
        body.dark-mode .separator {
            border-top: 1px solid #666;
        }
        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(4, 35px);
            }
            .container {
                padding: 10px;
            }
            h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 20px;
            }
            .open {
                font-size: 28px;
            }
            .closed {
                font-size: 28px;
            }
            .regular {
                font-size: 24px;
            }
            .overlay-content {
                width: 100%;
                height: auto;
                max-width: 600px;
                max-height: 450px;
            }
            .overlay-content img {
                width: 100%;
                height: auto;
                max-width: 600px;
                max-height: 450px;
            }
            .video-container {
                max-width: 100%;
            }
            #open-status .content-box p {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            #open-status .content-box span {
                display: block;
                margin: 2px 0;
            }
            #open-status .separator {
                width: 80%;
                margin: 8px auto;
            }
            body.dark-mode #open-status .content-box p {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            body.dark-mode #open-status .content-box span {
                display: block;
                margin: 2px 0;
            }
            body.dark-mode #open-status .separator {
                width: 80%;
                margin: 8px auto;
            }
        }
        #team .content-box {
            background-color: #e6f0e9; /* Farbe ähnlich wie andere Boxen */
        }
        .team-gallery {
            display: flex;
            justify-content: center;
            gap: 20px; /* Abstand zwischen den Fotos */
            margin-top: 20px;
        }
        .team-member {
            text-align: center;
            color: #cc7733; /* Beispiel: Dunkelgrün, passend zu den Überschriften */
        }
        .team-member img {
            width: 150px; /* Breite der Fotos anpassen */
            height: 200px; /* Höhe für Hochformat */
            object-fit: cover; /* Bild wird zugeschnitten, wenn nötig */
            border-radius: 8px; /* Optional: abgerundete Ecken */
        }
        .team-member p {
            margin: 10px 0 0 0; /* Abstand zwischen Bild und Name */
            font-weight: bold;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .team-gallery {
                flex-direction: column; /* Bei kleinen Bildschirmen untereinander */
                align-items: center;
            }
            .team-member img {
                width: 120px; /* Kleinere Breite für Mobilgeräte */
                height: 160px;
            }
        }
