:root {
	--primary: #c1121f;       /* kräftiges Rot */
	--secondary: #1d1d1d;     /* Anthrazit */
	--accent: #ffb703;        /* Goldgelb */
	--light-bg: #f5f5f5;      /* Hellgrau-Hintergrund */
	--footer-bg: #0b0c10;     /* Sehr dunkler Footer */
	--subtle-bg: #e0e0e0;     /* Akzent-Hintergrund */
}

* {
	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: white;
	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: white;
}

.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 {
	padding: 2rem;
	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: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	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;
}

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

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

.contact input,
.contact textarea {
	padding: 0.75rem;
	border-radius: 5px;
	border: 1px solid #ccc;
	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: white;
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
}

.hidden {
      display: none;
}

button.offerings  {
	padding: 10px 15px;
	margin: 5px;
	cursor: pointer;
}

button.offerings  {
    
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatten für 3D-Effekt */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

	background-color: var(--subtle-bg);
    color: var(--secondary);
    border: none;
}

button.offerings:hover  {
    transform: translateY(-2px); /* Leichte Anhebung beim Hovern */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Verstärkter Schatten beim Hovern */
}

button.selected {
    background-color: var(--accent); /* Goldgelb als Hintergrund */
    color: var(--secondary); /* Anthrazit für den Text */
    border: 1px solid var(--secondary);
}

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

	.hero {
		text-align: center;
	}
}

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