/* Mobile-optimierte Lightbox */
		.lightbox-overlay {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.95);
			z-index: 9999;
			overflow: auto;
			-webkit-overflow-scrolling: touch;
		}
		
		.lightbox-overlay.active {
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 20px;
		}
		
		.lightbox-content {
			position: relative;
			max-width: 90%;
			max-height: 90%;
			margin: auto;
		}
		
		.lightbox-content img {
			width: 100%;
			height: auto;
			display: block;
			border-radius: 4px;
		}
		
		.lightbox-close {
			position: fixed;
			top: 20px;
			right: 20px;
			width: 50px;
			height: 50px;
			background: rgba(255, 255, 255, 0.9);
			border: none;
			border-radius: 50%;
			font-size: 28px;
			font-weight: bold;
			color: #333;
			cursor: pointer;
			z-index: 10000;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 2px 10px rgba(0,0,0,0.3);
			transition: all 0.3s;
		}
		
		.lightbox-close:hover {
			background: white;
			transform: scale(1.1);
		}
		
		.lightbox-close:active {
			transform: scale(0.95);
		}
		
		.lightbox-title {
			position: fixed;
			bottom: 20px;
			left: 50%;
			transform: translateX(-50%);
			background: rgba(0, 0, 0, 0.8);
			color: white;
			padding: 10px 20px;
			border-radius: 20px;
			font-size: 14px;
			max-width: 80%;
			text-align: center;
		}
		
		body.lightbox-open {
			overflow: hidden;
			position: fixed;
			width: 100%;
		}

		/* Galerie Grid-Layout */
		.gallery-section {
			margin: 20px 0;
			padding: 0 40px;  /* ← Abstand rechts und links von Bildern und Text HIER ändern */
		}

		.gallery-intro {
			margin-bottom: 20px;
		}

		.gallery-intro p {
			font-size: 12px;
			color: #808080;
			line-height: 1.5;
		}

		.section {
			display: grid;
			grid-template-columns: auto 1fr auto;
			gap: 0px;
			margin-bottom: 0px;
			align-items: start;
}

		.image {
			text-align: center;
		}

		.image img {
			max-width: 100%;
			height: auto;
		}

		.info {
			font-size: 11px; /* ← Textgröße zwischen den Bildern ändern */
			color: #808080; /* ← Textfarbe zwischen den Bildern ändern */
			
			line-height: 0,6;
			padding: 0 0px;
		}
		
		.info p {
			margin: 0px 0;
			
		}

		.panorama-image {
			margin: 10px 0;
			text-align: center;
		}

		.panorama-image img {
			max-width: 100%;
			height: auto;
		}

		.gallery-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 15px;
			margin: 30px 0;
		}

		.gallery-item {
			text-align: center;
		}

		.gallery-item img {
			max-width: 100%;
			height: auto;
			transition: transform 0.2s;
		}

		.gallery-link {
			display: inline-block;
			cursor: pointer;
			transition: transform 0.2s;
		}
		
		.gallery-link:hover img {
			transform: scale(1.05);
		}

		.section-title {
			font-size: 18px;
			font-weight: bold;
			margin: 40px 0 20px 0;
			color: #333;
		}

		.back-to-top {
			margin-top: 30px;
			text-align: left;
		}

		.back-to-top a {
			display: inline-flex;
			align-items: center;
			gap: 5px;
			font-size: 12px;
			text-decoration: none;
		}

		/* Responsive Design */
		@media (max-width: 768px) {
			.lightbox-overlay.active {
				padding: 10px;
			}
			
			.lightbox-content {
				max-width: 95%;
				max-height: 80%;
			}
			
			.lightbox-close {
				top: 10px;
				right: 10px;
				width: 45px;
				height: 45px;
				font-size: 24px;
			}
			
			.lightbox-title {
				bottom: 10px;
				font-size: 12px;
				padding: 8px 15px;
				max-width: 90%;
			}

			.gallery-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 10px;
			}
			
			.section {
				grid-template-columns: 1fr;
				gap: 5px;
			}
			
			.image {
				order: 1;
			}
			
			.info {
				order: 3;
				padding: 0;
			}
		}

		@media (max-width: 480px) {
			.gallery-grid {
				grid-template-columns: 1fr;
			}
		}