@charset "utf-8";

:root {
	--color-text: #0d4568;
	--color-accent: #ff8800;
	--color-muted: #475647;
	--max-width: 1100px;
}

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

body {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	color: var(--color-text);
	background-color: #f4f6f4;
	background-image: url('../bilder/ufo-hero.jpg');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

a {
	color: inherit;
}

.gesamt {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */

.banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0 10px;
	gap: 20px;
}

.banner .brand {
	display: flex;
	align-items: center;
	gap: 20px;
}

.banner .brand img {
	width: 70px;
	height: 70px;
}

.banner h1.logo-text {
	font-size: clamp(20px, 3vw, 32px);
	font-weight: normal;
	line-height: 1.2;
	text-shadow: 0 0 6px #fff, 0 0 14px #fff, 0 1px 2px #fff;
}

.sprachauswahl {
	display: flex;
	gap: 10px;
}

.sprachauswahl a {
	padding: 6px 14px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
}

.sprachauswahl a.active {
	background: var(--color-text);
	color: #fff;
}

/* Contact bar */

.kontakt {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	padding: 14px 20px;
	margin: 10px 0 30px;
	font-size: 16px;
	color: var(--color-muted);
	text-align: center;
}

.kontakt a {
	text-decoration: none;
	font-weight: bold;
}

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

.kontakt .trenner {
	margin: 0 10px;
	opacity: 0.6;
}

/* Hero / content */

.content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	padding: 20px 0 40px;
}

.content .leistungen {
	flex: 0 1 400px;
	min-width: 260px;
	list-style: none;
	font-size: clamp(16px, 1.6vw, 22px);
	background: rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	padding: 18px 26px;
}

.content .leistungen li {
	margin-bottom: 12px;
	padding-left: 22px;
	position: relative;
}

.content .leistungen li::before {
	content: '\2022';
	color: var(--color-accent);
	position: absolute;
	left: 0;
	font-weight: bold;
}

.content--text {
	display: block;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	padding: 20px 30px;
}

/* Downloads */

.downloads {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	padding: 20px;
	margin: 0 0 40px auto;
	max-width: 460px;
}

.downloads h2 {
	font-size: 18px;
	margin-bottom: 15px;
}

.downloads ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.downloads li a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	background: #fff;
	border-radius: 6px;
	padding: 10px 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.downloads li a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
	color: var(--color-accent);
}

.downloads li img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

/* Footer */

footer {
	padding: 20px 0 40px;
	text-align: center;
}

a.impr {
	font-size: 12px;
	color: #666;
	text-decoration: none;
}

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

/* Impressum page */

.content h1 {
	font-size: 20px;
	margin-bottom: 15px;
}

.content h2 {
	font-size: 15px;
	margin-top: 20px;
	margin-bottom: 8px;
}

.content p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.content p a.blackfox {
	color: #000;
	text-decoration: underline;
}

.content p a.blackfox:hover {
	color: var(--color-accent);
}

/* Responsive */

@media (max-width: 700px) {
	.banner {
		justify-content: center;
		text-align: center;
	}

	.content {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.content .leistungen {
		flex-basis: auto;
		width: 100%;
		text-align: left;
	}

	.downloads {
		margin: 0 0 40px;
		max-width: none;
	}

	.downloads ul {
		flex-direction: column;
	}
}
