body {
	margin: 0;
	font-family: 'Montserrat', 'Arial', sans-serif;
	background: #0B0D0B;
	color: #C9B037; /* Edel-Gold statt Gelb */
	min-height: 100vh;
}

header {
	background: #0B0D0B;
	padding: 1.5rem 0 1rem 0;
	text-align: center;
	border-bottom: 2px solid #C9B037;
}

.logo {
	width: 400px;
	height: auto;
	margin: 0.1rem auto;
	display: block;
}

.seitentitel {
	margin-top: 0.8rem;
	color: #C9B037;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	font-weight: 600;
	text-align: center;
}
@media (max-width: 600px) {
	.seitentitel {
		font-size: 1.1rem;
	}
}

/* ---------------- NAVIGATION & BURGER ---------------- */

nav {
	position: sticky;
	  top: 0;
	  z-index: 200; /* Hoch genug, damit die Nav über dem Content bleibt */
	display: flex;
	flex-direction: column;
	align-items: center;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	background: #000;
	margin: 0;
	padding: 0.5rem 1.2rem ;
	gap: 2rem;
	border: 1px solid #B6862C;
	border-top: none;
	border-radius: 0 0 1.2rem 1.2rem;
	flex-wrap: wrap;
}

nav a {
	color: #C9B037;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	transition: color 0.2s;
}

nav a:hover, nav a:focus {
	color: #FFD700;
	text-shadow: 0 0 8px #B6862C;
}

/* Burger Button – sichtbar nur auf Mobil */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	margin: 0 auto;
	z-index: 20;
	position: relative;
	top: 0;
	left: 0;
}
.burger span {
	display: block;
	width: 28px;
	height: 4px;
	margin: 4px 0;
	background: #C9B037;
	border-radius: 2px;
	transition: 0.3s;
}

/* Burger & Menü: Mobil */
@media (max-width: 900px) {
	nav ul {
		gap: 1rem;
	}
}
@media (max-width: 700px) {
	nav {
		align-items: center;
	}
	.burger {
		display: flex;
		margin-bottom: 0.3rem;
	}
	nav ul {
		flex-direction: column;
		align-items: center;
		position: absolute;
		top: 52px; /* genau unterhalb des Burgers (44px hoch + Abstand) */
		left: 50%;
		transform: translateX(-50%);
		width: 90vw;
		max-width: 350px;
		background: #0B0D0B;
		border-bottom: 2px solid #B6862C;
		padding: 1rem 0.5rem;
		display: none;
		z-index: 10;
		box-shadow: 0 8px 32px #0009;
		border-radius: 0 0 1rem 1rem;
	}
	nav ul.open {
		display: flex;
	}
	nav ul li {
		margin: 0.7rem 1rem;
		width: 100%;
		text-align: center;
	}
}

/* ---------------- CONTENT ---------------- */

main {
	max-width: 900px;
	margin: 3rem auto 2rem auto;
	padding: 2rem;
	background: #0B0D0B;
	border-radius: 1rem;
	box-shadow: 0 6px 40px #0007;
}

.gold-button {
	display: inline-block;
	margin: 2rem auto 0 auto;
	padding: 0.75em 2em;
	background: linear-gradient(90deg, #C9B037, #B6862C);
	color: #131313;
	font-weight: bold;
	border: none;
	border-radius: 2em;
	text-decoration: none;
	font-size: 1.1rem;
	box-shadow: 0 2px 12px #0008;
	transition: background 0.3s, color 0.3s;
}
.gold-button:hover, .gold-button:focus {
	background: linear-gradient(90deg, #FFD700, #C9B037);
	color: #000;
}

footer {
	text-align: center;
	background: #000;
	color: #B6862C;
	padding: 1rem 0;
	border-top: 2px solid #C9B037;
	font-size: 1rem;
}
footer a {
	color: #C9B037;
}


/* ----------- THEMENSEITEN-GRID & CARDS (optional) ----------- */

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.feature {
	background: rgba(25,20,15,0.95);
	border: 1.5px solid #B6862C;
	border-radius: 1.2rem;
	padding: 2rem 1.2rem;
	box-shadow: 0 2px 16px #0007;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.feature h2 {
	color: #C9B037;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}
.feature p {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 1.2rem;
	min-height: 60px;
}

/* Luxusreisen Cards */
.luxus-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin: 3rem 0 2rem 0;
}
@media (max-width: 700px) {
	.luxus-highlights {
		grid-template-columns: 1fr;
	}
}
.luxus-highlights section {
	background: rgba(25,20,15,0.96);
	border: 1.5px solid #B6862C;
	border-radius: 1rem;
	padding: 2rem 1rem;
	box-shadow: 0 2px 10px #0008;
}

.thema-intro {
	color: #C9B037;
	font-size: 1.15rem;
	margin-bottom: 2.2rem;
}

/* ----------- Slide out ----------- */

#request-slideout {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

#request-toggle {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	background: linear-gradient(180deg, #C9B037 70%, #B6862C 100%);
	color: #131313;
	border: none;
	border-radius: 0 1rem 1rem 0;
	padding: 1.1rem 0.6rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-size: 1.05rem;
	cursor: pointer;
	margin: 0 0.1rem 0 0; /* Kein margin-top! */
	box-shadow: 0 2px 8px #0006;
	transition: background 0.3s, color 0.3s;
}
#request-toggle:hover {
	background: linear-gradient(180deg, #FFD700 70%, #C9B037 100%);
	color: #000;
}

.slideout-form-container {
	position: fixed;
	top: 0;
	right: -400px;
	width: 350px;
	max-width: 94vw;
	height: 100vh;
	background: #19150F;
	box-shadow: -6px 0 40px #000c;
	border-left: 2.5px solid #C9B037;
	transition: right 0.4s cubic-bezier(.5,1.7,.9,1.1);
	padding: 0;
	overflow-y: auto;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
}

.slideout-form-container form {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.7rem;
	padding: 2.5rem 1.5rem 2rem 1.5rem;
	box-sizing: border-box;
}
.slideout-form-container.open {
	right: 0;
}

.slideout-form-container h2 {
	color: #C9B037;
	margin-bottom: 1.2rem;
	text-align: center;
}
.slideout-form-container label {
	color: #FFD700;
	margin-top: 0.4rem;
	font-size: 1.02rem;
}
.slideout-form-container select,
.slideout-form-container input,
.slideout-form-container textarea {
	width: 100%;
	padding: 0.6em 0.7em;
	border-radius: 0.6em;
	border: 1.5px solid #B6862C;
	background: #222;
	color: #C9B037;
	font-size: 1.05rem;
	font-family: inherit;
	margin-bottom: 0.2rem;
}
.slideout-form-container select option {
	color: #C9B037;
	padding-left: 0.6em;
}
.slideout-form-container select option[value^="  "] {
	padding-left: 2em;
	color: #b6a971;
}
.slideout-form-container .gold-button {
	margin-top: 1rem;
}
.slideout-form-container .honeypot {
	display: none !important;
}

@media (max-width: 500px) {
	.slideout-form-container {
		width: 98vw;
		padding: 1.2rem 0.3rem 1rem 0.6rem;
	}
	#request-toggle {
		font-size: 0.98rem;
		padding: 0.9rem 0.4rem;
	}
}

.slideout-form-container select {
	width: 100%;
	padding: 0.8em 2.5em 0.8em 1em;
	border-radius: 0.8em;
	border: 2px solid #C9B037;
	background: #181512;
	color: #FFD700;
	font-size: 1.09rem;
	font-family: inherit;
	margin-bottom: 0.5rem;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-shadow: 0 2px 12px #0007;
	transition: border-color 0.2s, box-shadow 0.2s;
	background-image: url("data:image/svg+xml;utf8,<svg fill='gold' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 1.1em center;
	background-size: 1.5em;
}

.slideout-form-container select:focus {
	outline: none;
	border-color: #FFD700;
	box-shadow: 0 2px 16px #C9B03799;
}

.slideout-form-container option,
.slideout-form-container optgroup {
	background: #181512;
	color: #FFD700;
	font-size: 1rem;
	border-radius: 0;
}

/* Optional: Hover für Option (wird aber oft vom Browser überschrieben) */
.slideout-form-container select option:hover {
	background: #222;
	color: #C9B037;
}


/* Partner */
.partner-links {
	background: #24282e;
	color: #fff;
	border-radius: 12px;
	padding: 18px 26px;
	margin: 28px auto 0 auto;
	width: fit-content;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	transition: box-shadow 0.2s;
	font-size: 1rem;
	word-break: break-word;
	max-width: 98vw;
}
.partner-links ul {
	margin: 10px 0 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 22px;
	flex-wrap: wrap; /* Zeilenumbruch bei Bedarf */
}
.partner-links li {
	display: inline;
	word-break: break-word;
}
.partner-links a {
	color: #ffdd57;
	text-decoration: underline;
	font-weight: bold;
	transition: color 0.2s;
	word-break: break-word;
}
.partner-links a:hover {
	color: #ffeaa7;
}

/* --- FLOATING AUF DESKTOP --- */
@media (min-width: 1100px) {
	.partner-links {
		position: fixed;
		right: 28px;
		bottom: 10%;
		margin: 0;
		box-shadow: 0 8px 30px rgba(0,0,0,0.15);
		z-index: 99;
		max-width: calc((100vw - 900px) / 2 - 40px); /* Rand wie zwischen main und body minus etwas Abstand */
		width: 100%;
	}
	footer .partner-links {
		position: fixed; /* Im Footer verstecken, floating aktiv */
	}
}

/* --- Im Footer auf kleineren Geräten --- */
@media (max-width: 1099px) {
	.partner-links {
		position: static;
		box-shadow: 0 4px 16px rgba(0,0,0,0.09);
		margin: 24px auto 0 auto;
		width: 90vw;
		max-width: 90vw;
		left: 0;
		right: 0;
	}
}