﻿:root {
	--color-main: #60A5FA;
	--color-accent: #FBBF24;
	--text-color: #E5E7EB;
	--text-light: #9CA3AF;
	--bg-light: #111827;
	--bg-white: #1F2937;
	--bg-dark: #0F172A;
	--border-color: #374151;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
	--gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
	--gradient-accent: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.palette-one {
	--color-main: #2563EB;
	--text-color: #1F2937;
}

.palette-two {
	--color-main: #10B981;
	--text-color: #065F46;
}

.palette-three {
	--color-main: #8B5CF6;
	--text-color: #5B21B6;
}

.sunset-green-aura {
	--color-main: #60A5FA;
	--color-accent: #FBBF24;
	--text-color: #E5E7EB;
}

.palette-five {
	--color-main: #EC4899;
	--text-color: #9F1239;
}

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

html {
	background: var(--bg-dark);
	overflow-x: hidden;
	scroll-behavior: smooth;
}

svg circle {
	fill: var(--color-main);
	transition: fill 0.3s ease;
}

.volcano-green-flare svg rect {
	fill: var(--color-main);
	transition: fill 0.3s ease;
}

body {
	color: var(--text-color);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
	background: var(--bg-light);
}

html.no-scroll {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: color 0.3s ease;
}

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

section {
	padding: 60px 0;
	position: relative;
	background: var(--bg-white);
}

section:nth-child(even) {
	background: var(--bg-dark);
}

.seashell-white {
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
}

header {
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(31, 41, 55, 0.95);
	box-shadow: var(--shadow-sm);
	border-bottom: 1px solid var(--border-color);
	backdrop-filter: blur(10px);
}

header .seashell-white {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.carrot-orange {
	font-size: 24px;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	transition: transform 0.3s ease;
}

.carrot-orange:hover {
	transform: scale(1.05);
}

.volcano-green-flare {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--bg-dark);
	border: 2px solid var(--border-color);
	cursor: pointer;
	transition: all 0.3s ease;
}

.volcano-green-flare:hover {
	background: var(--color-main);
	border-color: var(--color-main);
	transform: scale(1.1);
}

.volcano-green-flare:hover svg rect {
	fill: white;
}

nav {
	display: none;
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-white);
	box-shadow: var(--shadow-lg);
	border-radius: 0 0 16px 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	width: 100%;
	z-index: 100;
	overflow: hidden;
	border: 1px solid var(--border-color);
}

nav.active {
	display: flex;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

nav a {
	padding: 20px 0;
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
}

nav a:last-child {
	border-bottom: none;
}

nav a:hover {
	background: var(--bg-dark);
	color: var(--color-main);
	padding-left: 20px;
}

.obsidian-gray-shine {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 99;
	transition: opacity 0.3s ease;
}

.obsidian-gray-shine.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.sunset-white-sheen {
	text-align: center;
	padding: 80px 0;
	background: linear-gradient(135deg, #1E3A8A 0%, #312E81 100%);
	color: #FFFFFF;
	position: relative;
	overflow: hidden;
}

.sunset-white-sheen::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
	opacity: 0.2;
}

.sunset-white-sheen .seashell-white {
	position: relative;
	z-index: 1;
}

.sunset-white-sheen h1,
.sunset-white-sheen p,
.sunset-white-sheen a {
	color: #FFFFFF;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sunset-white-sheen h1 {
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

h1 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
}

.solar-yellow-tone {
	width: 60px;
	height: 60px;
	display: block;
	margin: 30px auto;
	transition: transform 0.3s ease;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.solar-yellow-tone:hover {
	transform: translateY(10px) scale(1.1);
}

.velvet-white-light {
	padding: 60px 0;
	background: var(--bg-white);
}

.velvet-white-light:nth-child(even) {
	background: var(--bg-dark);
}

.velvet-white-light .silver {
	font-size: 28px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.3;
	color: var(--text-color);
	position: relative;
	display: inline-block;
}

.velvet-white-light .silver::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.lunar-black-aura {
	background: var(--bg-dark);
	padding: 30px;
	border-radius: 16px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.lunar-black-aura p {
	margin-bottom: 16px;
	color: var(--text-color);
	line-height: 1.8;
}

.lunar-black-aura p+p {
	margin-top: 16px;
}

.lunar-pink-shine {
	display: block;
	margin: 30px auto 0;
	width: 100%;
	max-width: 600px;
	height: auto;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	transition: transform 0.3s ease;
}

.lunar-pink-shine:hover {
	transform: scale(1.02);
}

.icy-gray-shade {
	width: 100%;
	font-family: inherit;
	max-width: 330px;
	height: 50px;
	display: flex;
	padding: 0 40px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 12px;
	background: var(--gradient-primary);
	font-size: 16px;
	font-weight: 600;
	border: none;
	color: #fff;
	cursor: pointer;
	margin: 30px auto 0;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-md);
}

.icy-gray-shade:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.icy-gray-shade:active {
	transform: translateY(0);
}

.icy-gray-shade.content-btn {
	margin-top: 30px;
}

.neon-pink-shade {
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 40px;
	font-weight: 700;
	text-align: center;
	color: var(--text-color);
	letter-spacing: -0.5px;
}

.mustard {
	background: linear-gradient(135deg, #92400E 0%, #78350F 100%);
	padding: 80px 0;
	color: white;
	position: relative;
}

.mustard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.mustard .seashell-white {
	position: relative;
	z-index: 1;
}

.mustard label {
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
	color: white;
}

.mustard input+label {
	margin-top: 20px;
}

.mustard input,
.mustard textarea {
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 12px 16px;
	height: 50px;
	color: white;
	font-size: 16px;
	width: 100%;
	transition: all 0.3s ease;
}

.mustard input::placeholder,
.mustard textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.mustard input:focus,
.mustard textarea:focus {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.15);
	outline: none;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.mustard textarea {
	height: 120px;
	margin-bottom: 25px;
	resize: vertical;
}

form {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: var(--shadow-lg);
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 40px 20px;
	gap: 12px;
	background: var(--bg-dark);
	color: var(--text-color);
	text-align: center;
	border-top: 1px solid var(--border-color);
}

footer a {
	color: var(--text-light);
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--color-main);
}

.velvet-pink-mist {
	background: var(--bg-white);
	padding: 60px 0;
}

.velvet-pink-mist .seashell-white {
	text-align: left;
}

.velvet-pink-mist .lunar-blue-sheen {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 40px;
	color: var(--text-color);
	position: relative;
	display: inline-block;
	width: 100%;
}

.velvet-pink-mist .lunar-blue-sheen::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.velvet-pink-mist .velvet-gray-shade {
	background: var(--bg-dark);
	padding: 40px;
	border-radius: 16px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.velvet-pink-mist .velvet-gray-shade p {
	margin-bottom: 20px;
	line-height: 1.8;
	color: var(--text-color);
}

.velvet-pink-mist .velvet-gray-shade .silver {
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
	margin: 30px 0 20px;
	color: var(--text-color);
}

.velvet-pink-mist ul {
	padding-left: 24px;
	margin: 20px 0;
}

.velvet-pink-mist ul li {
	margin-bottom: 12px;
	line-height: 1.8;
	color: var(--text-color);
}

.velvet-pink-mist .deep-tan {
	display: inline-block;
	margin: 10px 10px 10px 0;
	padding: 12px 24px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
}

.velvet-pink-mist .deep-tan:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.velvet-pink-mist .prism-cyan-glow {
	margin-top: 30px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.prism-cyan-glow iframe {
	max-width: 100%;
	width: 100%;
	height: 300px;
	border: none;
}

.mediumgray-gray {
	margin-top: 30px;
}

.frozen-purple-mist {
	background: var(--bg-white);
	padding: 60px 0;
}

.frozen-purple-mist .desert-green-tone {
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}

.frozen-purple-mist .desert-green-tone h1 {
	max-width: none;
	font-size: 32px;
	margin-bottom: 30px;
	color: var(--text-color);
}

.frozen-purple-mist .desert-green-tone h2 {
	font-size: 24px;
	margin: 30px 0 20px;
	color: var(--text-color);
	font-weight: 700;
}

.frozen-purple-mist .marble-white-flare {
	background: var(--bg-dark);
	padding: 30px;
	border-radius: 16px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.frozen-purple-mist .marble-white-flare p {
	margin-bottom: 12px;
	line-height: 1.8;
	color: var(--text-color);
}

.frozen-purple-mist .marble-white-flare a {
	color: var(--color-main);
	text-decoration: underline;
}

.frozen-purple-mist .sunset-purple-shade {
	font-size: 24px;
	font-weight: 700;
	margin: 30px 0 20px;
	color: var(--text-color);
}

.frozen-purple-mist .velvet-blue-light {
	color: var(--color-main);
	font-weight: 600;
}

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

#hbgBDAgqmW-cookie {
	display: none;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	bottom: 20px;
	left: 50%;
	width: 100%;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 20px;
	background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
	gap: 20px;
	z-index: 999999;
	font-size: 14px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

#hbgBDAgqmW-cookie.show {
	display: flex;
	animation: slideUp 0.4s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

#hbgBDAgqmW-cookie div {
	display: inline-block;
	flex: 1;
	line-height: 1.6;
}

#hbgBDAgqmW-cookie a {
	color: var(--color-accent);
	text-decoration: underline;
}

#hbgBDAgqmW-cookie button {
	float: right;
	border-radius: 8px;
	background: var(--gradient-accent);
	color: white;
	font-family: inherit;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
	border: none;
	padding: 10px 24px;
	font-weight: 600;
	font-size: 14px;
	box-shadow: var(--shadow-sm);
}

#hbgBDAgqmW-cookie button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
	body {
		font-size: 18px;
		line-height: 1.7;
	}

	.seashell-white {
		max-width: 1200px;
		padding: 0 40px;
		margin: 0 auto;
	}

	.volcano-green-flare {
		display: none;
	}

	section {
		padding: 100px 0;
	}

	header {
		padding: 25px 0;
	}

	header .seashell-white {
		padding: 0 40px;
	}

	.carrot-orange {
		font-size: 32px;
		line-height: normal;
	}

	h1 {
		font-size: 56px;
		line-height: 1.2;
		max-width: 900px;
		margin: 0 auto 30px;
	}

	.solar-yellow-tone {
		width: 80px;
		height: 80px;
		margin: 50px auto;
	}

	.sunset-white-sheen {
		padding: 120px 0;
	}

	.sunset-white-sheen p {
		max-width: 800px;
		margin: 0 auto;
		font-size: 20px;
		line-height: 1.8;
		color: #FFFFFF;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}

	.velvet-white-light .silver {
		font-size: 36px;
		margin-bottom: 50px;
	}

	.icy-gray-shade {
		max-width: 400px;
		margin: 40px auto 0;
		font-size: 18px;
		height: 56px;
	}

	.neon-pink-shade {
		font-size: 48px;
		line-height: 1.3;
		margin-bottom: 50px;
	}

	form {
		max-width: 700px;
		margin: 0 auto;
		padding: 50px;
	}

	.mustard {
		padding: 120px 0;
	}

	.mustard label {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.mustard input+label {
		margin-top: 30px;
	}

	.mustard input,
	.mustard textarea {
		padding: 14px 20px;
		height: 56px;
		font-size: 18px;
	}

	.mustard textarea {
		height: 150px;
		margin-bottom: 30px;
	}

	footer {
		padding: 60px 0;
		font-size: 16px;
	}

	nav {
		display: flex;
		flex-direction: row;
		position: static;
		gap: 30px;
		width: max-content;
		background: transparent;
		box-shadow: none;
		border-radius: 0;
	}

	nav a {
		text-align: center;
		font-weight: 500;
		padding: 0;
		width: auto;
		border: none;
		font-size: 16px;
		position: relative;
	}

	nav a::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background: var(--color-main);
		transition: width 0.3s ease;
	}

	nav a:hover {
		background: transparent;
		padding-left: 0;
		color: var(--color-main);
	}

	nav a:hover::after {
		width: 100%;
	}

	.lunar-pink-shine {
		width: 700px;
		margin: 50px auto 0;
	}

	.velvet-pink-mist .lunar-blue-sheen {
		font-size: 40px;
	}

	.velvet-pink-mist .velvet-gray-shade {
		padding: 50px;
	}

	.velvet-pink-mist .velvet-gray-shade .silver {
		margin: 40px 0 25px;
		font-size: 26px;
	}

	.velvet-pink-mist .prism-cyan-glow {
		margin-top: 50px;
	}

	.prism-cyan-glow iframe {
		height: 500px;
	}

	.velvet-pink-mist ul {
		padding-left: 40px;
	}

	#hbgBDAgqmW-cookie {
		max-width: 800px;
		padding: 24px 30px;
		font-size: 15px;
	}

	#hbgBDAgqmW-cookie button {
		padding: 12px 30px;
		font-size: 15px;
	}

	.frozen-purple-mist .desert-green-tone h1 {
		font-size: 40px;
	}

	.frozen-purple-mist .desert-green-tone h2 {
		font-size: 28px;
	}
}