* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	/* background: linear-gradient(135deg, #181818, #252525); */
	background: url("/img/background/about_background.png");
	background-size: cover;
	background-attachment: fixed; /* ← DAS ist der Held */
	background-position: center;  /* optional für zentriertes Bild */	color: white;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 3rem;
	background-color: #111;
}

.logo {
	font-size: 1.6rem;
	font-weight: 700;
}

nav a {
	margin-left: 2rem;
	text-decoration: none;
	color: #aaa;
	font-weight: 500;
	transition: 0.2s;
}

nav a:hover,
nav a.active {
	color: white;
}

main {
	padding: 3rem 2rem;
	flex-grow: 1;
}

.hero {
	text-align: center;
	margin-bottom: 4rem;
}

.hero h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, #ff6ec4, #7873f5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	color: #ccc;
	font-size: 1.2rem;
}

.values {
	text-align: center;
	margin-bottom: 4rem;
}

.values h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.value-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 12px;
	backdrop-filter: blur(6px);
}

.value-card h3 {
	margin-bottom: 0.5rem;
}

.mission {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.mission h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.mission p {
	color: #ccc;
	font-size: 1.1rem;
	line-height: 1.7;
}

.team {
	text-align: center;
}

.team h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
	justify-items: center;
}

.team-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 1rem;
	border-radius: 12px;
	width: 100%;
	max-width: 200px;
	backdrop-filter: blur(4px);
}

.team-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.team-card h4 {
	margin-bottom: 0.2rem;
	font-size: 1.1rem;
}

.team-card p {
	color: #ccc;
	font-size: 0.9rem;
}

footer {
	background-color: #111;
	text-align: center;
	padding: 1.5rem;
	font-size: 0.85rem;
	color: #888;
}
