/* ==========================================================================
Base & Variables
========================================================================== */
:root {
	--primary-color: #0b3954; /* Trustworthy, elegant navy blue */
	--accent-color: #993366; /* High-contrast CTA color  */
	--text-color: #333333;
	--light-bg: #f9f9f9;
	--white: #ffffff;
	--font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--white);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: var(--primary-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 5%;
}

/* ==========================================================================
Buttons
========================================================================== */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-align: center;
	border-radius: 4px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background-color: var(--accent-color);
	color: var(--white);
}

.btn-primary:hover {
	background-color: #b5671b;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: var(--primary-color);
	color: var(--white);
	width: 100%;
	margin-top: 1rem;
}

.btn-secondary:hover {
	background-color: #08293c;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

/* ==========================================================================
Sticky Header
========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo a {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.main-nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.main-nav a {
	font-weight: 500;
	transition: color 0.3s ease;
    line-height: 2.2;
    padding: 1ex 0;
}

.main-nav a:hover {
	color: var(--accent-color);
}

/* ==========================================================================
Hero & Booking Widget
========================================================================== */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--white);
	text-align: center;
	overflow: hidden;
	padding: 2rem 5%;
}

.hero-content{
	text-shadow: 0px 0px 3px black;
}

.hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 3rem;
}

.booking-widget {
	background-color: var(--white);
	padding: 0.5rem;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	width: 100%;
	max-width: 1000px;
	margin-top: 2rem;
}

.booking-form {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: flex-end;
}

.form-group {
	flex: 1;
	min-width: 150px;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.form-group label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: inherit;
	font-size: 1rem;
}


/* ==========================================================================
Trust Signals
========================================================================== */
.trust-signals {
	padding: 5rem 0;
	text-align: center;
}

.trust-signals h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 4rem;
}

.badge {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	background: var(--light-bg);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
}

.badge.white{
	background: white;
}

/* ==========================================================================
Footer & Mobile Responsive
========================================================================== */
.site-footer {
	background-color: var(--primary-color);
	color: var(--white);
	text-align: center;
	padding: 2rem 5%;
}

.mobileOnly {
	display: none;
}
.desktopOnly {
	display: block;
}


@media (max-width: 768px) {

	.desktopOnly {
		display: none;
	}

	/* Show mobile elements by default */
	.mobileOnly {
		display: block; /* or inline-block/flex depending on your layout */
	}

	
	.main-nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.booking-form {
		flex-direction: column;
		align-items: stretch;
	}

	.booking-form .btn {
		width: 100%;
		margin-top: 1rem;
	}
}



@media (max-width: 550px) {
	
	.site-header {
		display: grid;
    grid-template-areas:
        "a b"
        "c c";
	}

	.main-nav{
		grid-area: c;
		}
	}

/* =========================================
Flair Hotel Rieckmann - Intro Sektion
========================================= */

/* Variablen für eine einfache Farbanpassung */
:root {
	--flair-color: #993366; /* Die typische Hausfarbe */
	--flair-color-light: #fdf2f6; /* Ein sehr heller Ton für Hintergründe */
	--text-dark: #333333; /* Ein weicheres Schwarz für besseren Lesefluss */
	--text-gray: #555555;
}

/* Äußerer Container für mittige Ausrichtung und Abstände */
.hotel-intro-wrap {
	padding: 60px 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
}

/* Innerer Container, der die Breite begrenzt (besser lesbar!) */
.hotel-intro-content {
	max-width: 800px; /* Begrenzt die Zeilenlänge für das Auge */
	color: var(--text-gray);
	font-family: 'Helvetica Neue', Arial, sans-serif; /* Fallback-Schriften */
	line-height: 1.6;
}

/* Hauptüberschrift */
.intro-header h1 {
	color: var(--text-dark);
	font-size: 2.2rem;
	margin-bottom: 30px;
	line-height: 1.3;
	text-align: center;
}

/* Hervorgehobener Hinweis-Kasten für das Restaurant */
.restaurant-notice {
	background-color: var(--flair-color-light);
	border-left: 5px solid var(--flair-color);
	padding: 20px 25px;
	margin: 30px 0;
	border-radius: 0 8px 8px 0; /* Sanft abgerundete Ecken rechts */
}

.restaurant-notice p {
	margin: 0;
	color: var(--text-dark);
}

.restaurant-notice p:first-child {
	color: var(--flair-color);
	font-size: 1.2rem;
	margin-bottom: 8px;
}

/* Zwischenüberschrift im Fließtext */
.intro-description h2 {
	color: var(--flair-color);
	font-size: 1.5rem;
	margin-top: 40px;
	margin-bottom: 15px;
	font-weight: 600;
}

/* Normaler Fließtext */
.intro-description p {
	margin-bottom: 20px;
}

/* Unterschrift-Bereich */
.signature-text {
	margin-top: 40px;
	font-size: 1.1rem;
	color: var(--text-dark);
}

.signature-image {
	margin-top: 15px;
	display: block;
	max-width: 100%;
	height: auto; /* Stellt sicher, dass das Bild auf Handys nicht verzerrt */
}

/* Responsive Anpassungen für Smartphones */
@media (max-width: 600px) {
	.intro-header h1 {
		font-size: 1.8rem;
	}

	.intro-description h2 {
		font-size: 1.3rem;
	}

	.restaurant-notice {
		padding: 15px;
	}
}

/* =========================================
Flair Hotel Rieckmann - Footer Sektion
========================================= */

/* Grundstyling des Footers */
.site-footer {
	background-color: var(--primary-color);
	color: #fdf2f6; /* Sehr helles Rosa/Weiß für gute Lesbarkeit */
	padding: 60px 20px 40px 20px;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Der Grid-Container, der alles steuert */
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	/* Das ist die Magie: Macht automatisch 1, 2 oder 4 Spalten je nach Bildschirmgröße */
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

/* Überschriften in den Spalten */
.footer-col h3 {
	color: #ffffff;
	font-size: 1.2rem;
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 8px;
	/* Ein dezenter Strich in Hausfarbe unter den Titeln */
	border-bottom: 2px solid var(--flair-color, #993366); 
	display: inline-block;
}

.footer-col p {
	margin-top: 0;
	margin-bottom: 15px;
}

/* Formatierung der Adresse (nimmt das schräge "italic" vom <address> Tag weg) */
.footer-address {
	font-style: normal;
}

/* Links (Telefon & E-Mail) im Footer */
.footer-address a {
	color: #fdf2f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-address a:hover {
	color: var(--flair-color, #993366); /* Wird beim Drüberfahren pink/violett */
	text-decoration: underline;
}

/* Bilder responsive machen (Bewertungen & EU-Logo) */
.footer-img {
	max-width: 100%;
	height: auto;
	display: block;
}

.eu-logo {
	max-width: 180px; /* Macht das EU Logo nicht zu riesig */
	margin-top: 15px;
}

/* =========================================
Flair Hotel Rieckmann - Sub-Footer
========================================= */

.site-sub-footer {
	background-color: #1a1a1a; /* Etwas dunkler als der Haupt-Footer (#2c2c2c) */
	color: #999999; /* Dezentes Grau, damit es nicht zu aufdringlich wirkt */
	padding: 20px;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.85rem;
	border-top: 1px solid #333333; /* Feine Trennlinie nach oben */
}

/* Flexbox für die Anordnung: Links das Copyright, rechts die Links */
.sub-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.copyright p {
	margin: 0;
}

/* Styling der Link-Liste */
.legal-links {
	list-style: none; /* Entfernt die typischen Listen-Punkte */
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px; /* Abstand zwischen den Links */
	align-items: center;
}

/* Die Trennstriche (|) per CSS erzeugen */
.legal-links li {
	display: flex;
	align-items: center;
}

.legal-links li:not(:last-child)::after {
	content: "|";
	margin-left: 15px;
	color: #555555; /* Sehr dezenter Trennstrich */
}

/* Links im Sub-Footer */
.legal-links a {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.legal-links a:hover {
	color: var(--flair-color, #993366); /* Eure Hausfarbe beim Drüberfahren */
}

.developer-credit {
	color: #777777;
	font-style: italic;
}

/* Responsive: Auf dem Handy alles zentriert untereinander */
@media (max-width: 768px) {
	.sub-footer-container {
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}

	.legal-links {
		justify-content: center;
	}
}

/* =========================================
Flair Hotel Rieckmann - Vorteile / Warum zu uns
========================================= */

.benefits-section {
	background-color: #fdf2f6; /* Euer heller Hausfarben-Ton (aus vorherigen Schritten) */
	padding: 80px 20px;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	color: #333333;
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
}

.benefits-header {
	text-align: center;
	margin-bottom: 50px;
}

.benefits-header h2 {
	font-size: 2.2rem;
	color: #333333;
	margin-bottom: 10px;
}

.benefits-header p {
	font-size: 1.1rem;
	color: var(--flair-color, #993366);
	font-weight: 600;
	margin: 0;
}

/* Die Liste als Grid-System anlegen */
.benefits-list {
	list-style: none; /* Versteckt die Standard-Zahlen */
	padding: 0;
	margin: 0;
	display: grid;
	/* Erstellt automatisch responsive Spalten (mind. 300px breit) */
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	counter-reset: benefit-counter; /* Startet den Zähler für die Zahlen */
}

/* Einzelne Karten */
.benefit-item {
	background-color: #ffffff;
	padding: 40px 30px 30px 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-5px); /* Hebt die Karte leicht an beim Drüberfahren */
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Die stylischen Zahlen per CSS einfügen */
.benefit-item::before {
	counter-increment: benefit-counter;
	content: "0" counter(benefit-counter); /* Erzeugt "01", "02" etc. */
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 3.5rem;
	font-weight: bold;
	color: rgba(153, 51, 102, 0.1); /* Eure Hausfarbe, aber sehr transparent (Wasserzeichen-Effekt) */
	line-height: 1;
}

.benefit-item h3 {
	font-size: 1.3rem;
	color: var(--flair-color, #993366);
	margin-top: 0;
	margin-bottom: 15px;
	position: relative;
	z-index: 2; /* Stellt sicher, dass der Text über der großen Zahl liegt */
}

.benefit-item p {
	line-height: 1.6;
	color: #555555;
	margin: 0;
	position: relative;
	z-index: 2;
}


/* ==========================================================================
Subpage Specific Styles (Reusable Template)
========================================================================== */

/* Subpage Hero */
.subpage-hero {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 6rem 5% 4rem;
	background-image: linear-gradient(rgba(11, 57, 84, 0.8), rgba(11, 57, 84, 0.9));
	background-size: cover;
	background-position: center;
}

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

.subpage-hero h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	margin-bottom: 1rem;
}

.hero-intro {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.9;
}

/* Feature Blocks (Alternating Layout) */
.feature-blocks {
	padding: 4rem 0;
	background-color: var(--white);
}

.feature-block {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin-bottom: 5rem;
}

/* Reverses the order so the image is on the left */
.feature-block.reverse {
	flex-direction: row-reverse;
}

.feature-block:last-child {
	margin-bottom: 0;
}

.feature-content {
	flex: 1;
}

.feature-content h2 {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.feature-content p {
	margin-bottom: 1.5rem;
	color: #444;
}

/* Reusing the amenities list from the homepage */
.feature-content .amenities-list {
	margin-bottom: 2rem;
}

.feature-image {
	flex: 1;
}

.feature-image img {
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Wide CTA Banner */
.cta-banner {
	background-color: var(--light-bg);
	padding: 5rem 0;
	border-top: 1px solid #eaeaea;
}

.cta-banner h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.cta-banner p {
	max-width: 700px;
	margin: 0 auto 2rem;
	font-size: 1.1rem;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.cta-actions .btn-secondary {
	width: auto;
	margin-top: 0;
}

.contact-info-small {
	font-size: 0.9rem !important;
	color: #666 !important;
}

/* Mobile Adjustments for Subpages */
@media (max-width: 900px) {
	.feature-block, 
	.feature-block.reverse {
		flex-direction: column;
		gap: 2rem;
		text-align: left;
	}

	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}
}
/* ==========================================================================
Top Bar (CRO & Kontakt)
========================================================================== */
.top-bar {
	background-color: var(--primary-color);
	color: var(--white);
	font-size: 0.85rem;
	padding: 0.5rem 0;
	font-weight: 500;
}

.top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* Linke Seite: Kontakt */
.top-contact {
	display: flex;
	gap: 1.5rem;
}

.top-contact a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
}

.top-contact a:hover {
	color: var(--accent-color); /* Wechselt beim Drüberfahren zum warmen Orange/Gold */
}

/* Rechte Seite: Vertrauenssignale */
.top-trust {
	display: flex;
	gap: 1.5rem;
	opacity: 0.9; /* Minimal transparenter, damit der Kontakt im Fokus bleibt */
}

/* Mobile Anpassungen für die Top-Bar */
@media (max-width: 768px) {
	.top-bar-inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 0.8rem;
	}

	.top-contact, .top-trust {
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* Auf sehr kleinen Handybildschirmen die Vertrauenssignale ausblenden, 
damit der Header nicht den halben Bildschirm verdeckt */
@media (max-width: 480px) {
	.top-trust {
		display: none; 
	}
}

/* ==========================================================================
FAQ Accordion
========================================================================== */
.faq-section {
	padding: 5rem 0;
	background-color: var(--light-bg);
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background-color: var(--white);
	border: 1px solid #eaeaea;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-item summary {
	padding: 1.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary-color);
	cursor: pointer;
	list-style: none; /* Entfernt den Standard-Pfeil im Firefox */
	position: relative;
	transition: background-color 0.2s ease;
}

/* Eigener, schickerer Pfeil für das Aufklappen */
.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: var(--accent-color);
	transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
	content: '−';
}

.faq-item summary:hover {
	background-color: #fcfcfc;
}

/* Versteckt den Standard-Pfeil in Chrome/Safari */
.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: #555;
	line-height: 1.6;
	border-top: 1px solid #eaeaea;
	margin-top: 0.5rem;
	padding-top: 1rem;
}

section#rooms{
	background: #fdf2f6;
	padding: 1em 0;
}

/* ==========================================================================
Booking.com Style Image Grid
========================================================================== */
.hotel-gallery-grid {
	display: flex;
	flex-direction: column;
	gap: 8px; /* Der typische schmale Spalt bei Booking */
	max-width: 1100px;
	margin: 2rem auto;
	border-radius: 8px;
	overflow: hidden; /* Sorgt für abgerundete Ecken am gesamten Block */
	cursor: pointer;
}

.hotel-gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Verhindert, dass Bilder verzerrt werden */
	transition: filter 0.2s ease;
}

.hotel-gallery-grid img:hover {
	filter: brightness(0.9); /* Leichter Abdunkel-Effekt beim Hovern */
}

/* --- Oberer Bereich --- */
.gallery-top {
	display: grid;
	grid-template-columns: 2fr 1fr; /* Links 66%, Rechts 33% */
	gap: 8px;
}

.gallery-side-imgs {
	display: grid;
	grid-template-rows: 1fr 1fr; /* Zwei Bilder exakt übereinander */
	gap: 8px;
}

/* --- Unterer Bereich --- */
.gallery-bottom {
	display: grid;
	grid-template-columns: repeat(5, 1fr); /* 5 gleich große Spalten */
	gap: 8px;
	height: 120px;
}

/* --- "+ 32 Fotos" Overlay --- */
.gallery-more-photos {
	position: relative;
}

.overlay-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4); /* Halbtransparenter schwarzer Schleier */
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: bold;
	transition: background 0.2s ease;
}

.gallery-more-photos:hover .overlay-text {
	background: rgba(0, 0, 0, 0.6); /* Wird beim Hovern etwas dunkler */
}

/* --- Mobile Ansicht (Smartphones) --- */
@media (max-width: 768px) {
	.gallery-top {
		grid-template-columns: 1fr; /* Nur noch das Hauptbild zeigen */
		height: 250px;
	}
	.gallery-side-imgs, .gallery-bottom {
		display: none; /* Kleine Bilder auf dem Handy ausblenden, um Platz zu sparen */
	}
	/* Auf dem Handy zeigen wir direkt auf dem Hauptbild den "Alle Fotos" Text */
	.gallery-main-img {
		position: relative;
	}
	.gallery-main-img::after {
		content: 'Alle Fotos ansehen';
		position: absolute;
		bottom: 10px;
		right: 10px;
		background: white;
		color: #333;
		padding: 5px 10px;
		font-weight: bold;
		border-radius: 4px;
		font-size: 0.9rem;
	}
}
/* ==========================================================================
Lightbox (Dialog) Styles
========================================================================== */
.lightbox {
	border: none;
	background: transparent;
	padding: 0;
	max-width: 100vw;
	max-height: 100vh;
	overflow: visible;
}

/* Der abgedunkelte Hintergrund */
.lightbox::backdrop {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px); /* Macht den Hintergrund elegant unscharf */
}

.lightbox-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
}

.lightbox-image-wrapper {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
}

#lightbox-img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Buttons & Zähler --- */
.lightbox-btn {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	padding: 1rem;
	border-radius: 50%;
	transition: background 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
}

.lightbox-btn:hover, .lightbox-btn:focus-visible {
	background: rgba(255, 255, 255, 0.3);
	outline: 2px solid var(--accent-color);
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.lightbox-counter {
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
	.nav-btn {  top: 90%; }
	#lightbox-img { max-width: 100%; border-radius: 0; }
}

