/* =========================== Fonts – lokale Manrope-Fonts =========================== */
@font-face {
	font-family: 'Manrope';
	src: url('manrope-v20-latin-300.woff2') format('woff2'), url('Manrope-VariableFont_wght.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('manrope-v20-latin-regular.woff2') format('woff2'), url('Manrope-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('manrope-v20-latin-500.woff2') format('woff2'), url('Manrope-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('manrope-v20-latin-600.woff2') format('woff2'), url('Manrope-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('manrope-v20-latin-300.woff2') format('woff2'), url('Manrope-VariableFont_wght.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* =========================== Design Variablen =========================== */
:root {
	--primary: #f7931d;
	--primary-dark: #d97812;
	--violet-dark: #4d2646;
	--violet: #89427a;
	--bg-light: #f5f5f7;
	--text-main: #111827;
}

/* =========================== Basis =========================== */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-main);
	background: white;
}

img {
	max-width: 100%;
	height: auto;
}

section {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px;
}

h2 {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.3px;
	margin-bottom: 18px;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: 0.2s ease;
}

a:hover {
	opacity: 0.85;
	color: var(--primary-dark);
}

/* =========================== Header =========================== */
header {
	background: linear-gradient(145deg, #a05a96 0%, #89427a 40%, #4d2646 100%);
	color: white;
	text-align: center;
	padding: 80px 20px 70px;
}

header h1 {
	font-size: 3.1rem;
	font-weight: 750;
	letter-spacing: -0.55px;
	margin-bottom: 12px;
}

header p {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* =========================== Buttons =========================== */
.btn-primary {
	padding: 11px 24px;
	border-radius: 999px;
	background: var(--primary);
	color: white;
	font-weight: 650;
	letter-spacing: -0.1px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
	transition: 0.2s ease;
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

/* =========================== Cards / Services =========================== */
.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.card {
	background: #d7afcf;
	padding: 32px;
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	transition: 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
	border-color: var(--primary);
}

.card h3 {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: -0.2px;
	margin-top: 0;
}

/* =========================== Icons =========================== */
.service-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--violet-dark);
}

.service-icon {
	width: 28px;
	height: 28px;
	stroke-width: 1.6;
}

/* =========================== Footer =========================== */
footer {
	background: linear-gradient(145deg, #4d2646 0%, #7a3a6d 60%, #89427a 100%);
	color: #f5e9f3;
	text-align: center;
	padding: 32px 20px;
	font-size: 0.9rem;
}

/* =========================== Impressum =========================== */
#impressum {
	background: #f6f6f6;
	padding: 60px 20px;
}

/* =========================== Responsiveness =========================== */
@media (max-width: 768px) {
	header h1 {
		font-size: 2.4rem;
	}

	section {
		padding: 60px 16px;
	}
}

@media (max-width: 480px) {
	header h1 {
		font-size: 2.1rem;
	}

	.card {
		padding: 24px;
	}
}