:root {
	--primary: #c1121f;
	/* Primärfarbe */
	--secondary: #1d1d1d;
	/* Sekundärfarbe */
	--accent: #ffb703;
	/* Akzentfarbe */
	--light-bg: #f5f5f5;
	/* Heller Hintergrund */
	--header-bg: white;
	/* Header Hintergrund */
	--hero-fg: white;
	/* Banner Font Color */
	--footer-bg: #0b0c10;
	/* Sehr dunkler Footer */
	--footer-fg: white;
	/* Footer Font Color */
	--subtle-bg: #e0e0e0;
	/* Akzent-Hintergrund */
	--service-bg: white;
	/* Service-Tile Hintergrund */
	--service-shadow: rgba(0, 0, 0, 0.05);
	/* Service-Tile Shadow Color */
	--contact-form-bg: white;
	/* Contact form background */
	--contact-border: #ccc;
	/* Contact form border color */
	--footer-link: #ffb703;
	/* Footer Link Color */
}

:root {
	--primary: #7e3a5a;
	/* Aubergine */
	--secondary: #2e1e2f;
	/* Deep Plum */
	--accent: #ff8243;
	/* Fox Orange */
	--light-bg: #fdf6f0;
	/* Soft Cream */
	--header-bg: #fff7f2;
	/* Light Peach */
	--hero-fg: #ffffff;
	/* White Text on Hero */
	--footer-bg: #1b0e18;
	/* Very Dark Aubergine */
	--footer-fg: #fcefe8;
	/* Soft Sand Text */
	--subtle-bg: #f3e9e4;
	/* Muted Blush */
	--service-bg: #ffffff;
	/* Clean White for Tiles */
	--service-shadow: rgba(106, 15, 73, 0.05);
	/* Soft Aubergine Shadow */
	--contact-form-bg: #fffaf7;
	/* Pale Rose */
	--contact-border: #e0cfc4;
	/* Light Taupe Border */
	--footer-link: #ffb385;
	/* Warm Fox Peach for Links on Dark Footer */
}

:roota {
	--primary: #ffa94d;
	/* Soft Fox Orange */
	--secondary: #5e4b56;
	/* Muted Plum */
	--accent: #a3d9a5;
	/* Pastel Mint */
	--light-bg: #fff9f5;
	/* Soft Blush */
	--header-bg: #fff3e6;
	/* Light Apricot */
	--hero-fg: white;
	/* Warm Brown Text */
	--footer-bg: #3a2c35;
	/* Deep Mauve-Brown */
	--footer-fg: #fcefe8;
	/* Pale Cream Text */
	--footer-link: #ffd8b1;
	/* Pastel Peach Links */
	--subtle-bg: #f7eee9;
	/* Light Sand */
	--service-bg: #ffffff;
	/* Clean White Tiles */
	--service-shadow: rgba(94, 75, 86, 0.05);
	/* Soft Plum Shadow */
	--contact-form-bg: #fff7f2;
	/* Very Pale Peach */
	--contact-border: #e6d5cb;
	/* Light Sand Border */
}

:roota {
	--primary: #475569;
	/* Slate Gray */
	--secondary: #1e293b;
	/* Dark Blue-Gray */
	--accent: #f4a261;
	/* Fox-Inspired Soft Orange */
	--light-bg: #f8fafc;
	/* Light Grayish Blue */
	--header-bg: #ffffff;
	/* Clean White */
	--hero-fg: #f8fafc;
	/* Dark Text on Light Hero */
	--footer-bg: #0f172a;
	/* Deep Navy */
	--footer-fg: #e2e8f0;
	/* Soft Cool Gray Text */
	--footer-link: #fbd4a2;
	/* Light Fox Orange for Links */
	--subtle-bg: #e2e8f0;
	/* Pale Slate Blue */
	--service-bg: #ffffff;
	/* White Tiles */
	--service-shadow: rgba(17, 24, 39, 0.05);
	/* Subtle Navy Shadow */
	--contact-form-bg: #f1f5f9;
	/* Light Slate Background */
	--contact-border: #cbd5e1;
	/* Cool Gray Border */
}

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

@font-face {
	font-family: 'Lato';
	src: url('./fonts/Lato-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Lato', sans-serif;
	background-color: var(--light-bg);
	color: var(--secondary);
	line-height: 1.6;
}

header {
	background: var(--header-bg);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 10;
}

header h1 {
	color: var(--primary);
}

nav a {
	margin-left: 1.5rem;
	color: var(--secondary);
	text-decoration: none;
	font-weight: 600;
}

header .logo a h1 {
	text-decoration: none;
}

header .logo a {
	text-decoration: none;
}

.hero {
	background: linear-gradient(to bottom right, var(--secondary), var(--primary));
	padding: 4rem 2rem;
	text-align: center;
	max-width: 100%;
	margin: auto;
	color: var(--hero-fg);
}

.hero h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 100%;
	text-align: center;
}

.hero button {
	background: var(--accent);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	color: var(--secondary);
}

.section:nth-child(odd) {
	background-color: var(--light-bg);
}

.section:nth-child(even) {
	background-color: var(--subtle-bg);
}

.section {
	padding: 2rem;

	margin: 0;
	box-sizing: border-box;
	width: 100%;
}

.content {
	max-width: 1000px;
	margin: auto;
}

.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.service {
	background: var(--service-bg);
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px var(--service-shadow);
	text-align: left;
	font-size: 1rem;
}

.service strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: var(--primary);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0 1rem;
	white-space: nowrap;
}

.logo img {
	height: 60px;
	width: auto;
	margin: 0;
	padding: 0;
}

.about {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.about img {
	border-radius: 50%;
	width: 150px;
	height: 150px;
	object-fit: cover;
	margin-bottom: 1rem;
}

ul>li {
	margin-bottom: 0.75rem;
}

.contact {
	background: var(--primary);
	color: var(--contact-form-bg);
	padding: 2rem;
	text-align: center;
}

.contact form {
	max-width: 500px;
	margin: 2rem auto 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: var(--contact-form-bg);
	padding: 2rem;
	border-radius: 10px;
	color: var(--secondary);
}

.contact input,
.contact textarea {
	padding: 0.75rem;
	border-radius: 5px;
	border: 1px solid var(--contact-border);
	font-size: 1rem;
}

.contact button {
	background: var(--accent);
	border: none;
	padding: 0.75rem;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	color: var(--secondary);
}

footer {
	background: var(--footer-bg);
	color: var(--footer-fg);
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
}

footer a {
	color: var(--footer-link);
	text-decoration: none;
}

@media (max-width: 600px) {
	nav a {
		margin-left: 0.75rem;
		font-size: 0.9rem;
	}

	.hero {
		text-align: center;
	}
}

.admin_info {
	opacity: 0;
	position: absolute;
	left:0;
	top:0;
}