@charset "utf-8";
/* CSS Document */

/* ---------- COOKIE BANNER (unten fixiert) ---------- */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(10, 35, 45, 0.96);
	backdrop-filter: blur(10px);
	background: linear-gradient(115deg, #0f2c38 0%, #0a232e 100%);
	box-shadow: 0 -10px 30px -8px rgba(0, 0, 0, 0.4);
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	z-index: 1000;
	padding: 1.25rem 2rem;
	font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
	transition: transform 0.3s ease;
}

.banner-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

/* Textblock */
.cookie-text {
	flex: 3;
	min-width: 240px;
	color: #f0f6fa;
	font-size: 0.95rem;
	line-height: 1.5;
}

.cookie-text p {
	margin-bottom: 0.6rem;
}

.cookie-text a {
	color: #9fd3ff;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.2s;
}

.cookie-text a:hover {
	color: #ffffff;
	text-decoration: none;
}

.highlight {
	font-weight: 700;
	color: #ffe6b3;
}

/* Button-Gruppe: DREI BUTTONS */
.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.btn {
	padding: 0.7rem 1.6rem;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: 0.2s all ease;
	background: transparent;
	font-family: inherit;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

.btn-primary {
	background: #ff8c42;
	color: #1e2f37;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
	background: #ffa25e;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	border: 1px solid #ffb15e;
	color: #ffcf9a;
}

.btn-outline:hover {
	background: #ff8c4222;
	border-color: #ffaa66;
	color: white;
}

/* Kleine Anpassung für mobile Geräte */
@media (max-width: 760px) {
	.cookie-banner {
		padding: 1rem 1.2rem;
	}
	.banner-container {
		flex-direction: column;
		align-items: flex-start;
	}
	.button-group {
		align-self: flex-end;
		margin-top: 0.5rem;
		width: 100%;
		justify-content: flex-end;
	}
	.btn {
		white-space: nowrap;
		padding: 0.6rem 1.2rem;
	}
	.content h1 {
		font-size: 1.8rem;
	}
}

@media (max-width: 550px) {
	.button-group {
		justify-content: space-between;
		gap: 8px;
	}
	.btn {
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
		white-space: normal;
		text-align: center;
	}
}

/* Versteckte Nachricht / Snackbar für Feedback */
.toast-msg {
	position: fixed;
	bottom: 110px;
	left: 50%;
	transform: translateX(-50%) scale(0.9);
	background: #1e2f2fdd;
	backdrop-filter: blur(12px);
	color: white;
	padding: 10px 24px;
	border-radius: 60px;
	font-size: 0.85rem;
	font-weight: 500;
	z-index: 1100;
	opacity: 0;
	transition: opacity 0.2s, transform 0.2s;
	pointer-events: none;
	font-family: monospace;
	letter-spacing: 0.5px;
	box-shadow: 0 6px 14px black;
}

.toast-msg.show {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}
