@charset "utf-8";

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

:root {
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-elevated: #242424;
  --accent: #E3000F;
  --accent-light: #fb2424;
  --accent-dark: #d90606;
  --text-primary: #fafafa;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --border: #2e2e2e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logoimg {
  height: 32px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* General */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero */
.service-hero {
  padding: 9rem 0 5rem;
}

.service-hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.service-hero-content .highlight {
  color: var(--accent);
}

.service-hero-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 0, 15, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: var(--bg-card);
}

/* Intro */
.service-intro {
  padding: 6rem 0;
  background: var(--bg-card);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.intro-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.intro-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.intro-card p {
  color: var(--text-secondary);
}

/* Galerie */
.gallery {
  padding: 6rem 0;
  background-color: var(--bg-card);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  min-height: 420px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0,0,0,0.15), transparent);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: #d4d4d4;
  max-width: 500px;
}

/* Benefits */
.benefits {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.benefit-number {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--text-secondary);
}

/* Prozess */
.process {
  padding: 6rem 0;
  background-color: var(--bg-card);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.process-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.process-card h3 {
  margin-bottom: 0.7rem;
}

.process-card p {
  color: var(--text-secondary);
}

/* CTA */
.cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 0, 15, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-hero-container,
  .gallery-grid,
  .intro-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-image img {
    height: 420px;
  }
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0 0 0;
    gap: 0;
  }

  .nav-links.active li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active li:last-child {
    border-bottom: none;
  }

  .nav-links.active a {
    display: block;
    padding: 1.35rem 2rem;
    font-size: 1.1rem;
  }

  .section-container {
    padding: 0 1rem;
  }

  .service-hero {
    padding: 7rem 0 4rem;
  }

  .service-hero-image img {
    height: 320px;
    border-radius: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .gallery-card {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 1rem auto;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* Schlüsselfakten */
.facts-banner {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.facts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.fact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}

.fact-item span {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}



/* Cookie-Banner */
#cookie-banner {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.196);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cookie-box {
	position: relative;
	width: min(720px, 100%);
	padding: 2rem;
	background: rgba(26, 26, 26, 0.885);
	border: 1px solid var(--border);
	border-radius: 16px;
	color: var(--text-primary);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.816),
		0 0 30px rgba(227, 0, 15, 0.08);
	animation: cookie-banner-in 0.35s ease;
}

.cookie-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: var(--accent);
}

.cookie-box h2 {
	margin: 0 0 0.75rem;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
}

.cookie-box p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}

.cookie-box a {
	display: inline-block;
	margin-top: 0.25rem;
	color: var(--text-secondary);
	font-size: 0.85rem;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.2s;
}

.cookie-box a:hover {
	color: var(--accent-light);
}

.cookie-buttons {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 0.75rem;
}

.cookie-buttons button {
	min-height: 46px;
	padding: 0.75rem 1.4rem;
	border-radius: 9px;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}

.cookie-buttons button:hover {
	transform: translateY(-2px);
}

.cookie-buttons button:focus-visible {
	outline: 2px solid var(--accent-light);
	outline-offset: 3px;
}

#cookie-reject {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-primary);
}

#cookie-reject:hover {
	background: var(--bg-elevated);
	border-color: var(--text-muted);
}

#cookie-accept {
	background: var(--accent);
	border: 1px solid var(--accent);
	color: var(--text-primary);
	box-shadow: 0 8px 24px rgba(227, 0, 15, 0.2);
}

#cookie-accept:hover {
	background: var(--accent-light);
	border-color: var(--accent-light);
	box-shadow: 0 10px 30px rgba(227, 0, 15, 0.3);
}

@keyframes cookie-banner-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	#cookie-banner {
		padding: 1rem;
	}

	.cookie-box {
		padding: 1.5rem;
		border-radius: 14px;
	}

	.cookie-box::before {
		left: 1.5rem;
		right: 1.5rem;
	}

	.cookie-box h2 {
		font-size: 1.25rem;
	}

	.cookie-buttons {
		flex-direction: column-reverse;
	}

	.cookie-buttons button {
		width: 100%;
	}
}