:root {
  --bg-dark: #0e0e0e;
  --bg-light: #1b1b1b;
  --text-light: #ffffff;
  --accent: rgb(204, 0, 0);
  --font-headline: 'LemonMilk', sans-serif;
  --font-body: 'WorkSans', sans-serif;
  --font-quote: 'Courier New', monospace;
}

/* Reset + Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main {
    background-color: #f2f2f2;


}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fonts */
@font-face {
  font-family: 'LemonMilk';
  src: url('fonts/LEMONMILK-Bold.otf') format('opentype');
  font-weight: bold;
}

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

@font-face {
  font-family: 'WorkSans';
  src: url('fonts/WorkSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'WorkSans';
  src: url('fonts/WorkSans-Italic.ttf') format('truetype');
  font-style: italic;
}

/* Video Hintergrund */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Header */
header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

/* Navigation */
nav.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
    background-color: black;

}

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

.nav-logo img {
  height: 60px;
}

.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-family: var(--font-headline);
}

.nav-links img {
  height: 24px;
  transition: transform 0.3s ease;
}

.nav-links img:hover {
  transform: scale(1.2);
}


.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    text-align: center;
    gap: 10px;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Hero */
.hero {
  text-align: center;
  margin-top: auto;
  padding-bottom: 80px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  font-family: var(--font-headline);
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  font-family: var(--font-body);
  margin-bottom: 20px;
      margin-top: -28px;
}


/* CTA Button */
.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.cta:hover {
  background: rgb(230, 0, 0);
}

.cta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.1;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.cta:hover::after {
  transform: translateX(0);
}

/* Sektionen */
.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.section.dark {
  background-color: var(--bg-light);
}

.section.white-bg {
  background-color: #f2f2f2;
  color: #111;
  width: 100%;
  padding: 80px 20px;
      margin-bottom: -80px;

}

.section.white-bg2 {
  background-color: #fff;
  color: #111;
  max-width:100%;
}


/* Überschriften mit Accentlinie */
h2 {
  font-family: var(--font-headline);
  position: relative;
  margin-bottom: 20px;
  font-size: 45px;
}

.section:not(.white-bg, .white-bg2) h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 6px;
  height: 1.2em;
  background: var(--accent);
}


/* Content */
.content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.content img {
  max-width: 300px;
  border-radius: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; line-height: 31px; margin-bottom: 37px; }
  .hero p { font-size: 1rem; }
  .content {
    flex-direction: column;
    text-align: center;
  }

  .content img {
    margin: auto;
  }
}

/* Grid */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Blockquotes */
blockquote {
  font-family: var(--font-quote);
  font-style: italic;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

/* Testimonial Slider */
.testimonials {
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 40px auto 0;
}

.testimonial {
  display: none;
  font-family: var(--font-quote);
  font-size: 1rem;
  color: #eee;
  transition: opacity 0.6s ease;
}

.testimonial.visible {
  display: block;
}

.testimonial span {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
}

.footer-links {
  text-transform: uppercase;
}


.footer-links a {
  color: #aaa;
  margin: 0 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.social-icons {
  margin-top: 1.2rem;
}

.social-icons a {
  cursor: pointer;
  text-decoration: none;
}

.social-icons a img {
  height: 45px;
  margin: 0 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icons a img:hover {
  opacity: 1;
}


/* Scroll Down Element */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  opacity: 0.6;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.testimonials blockquote {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
  border-left: none;
  padding-left: 0;
}

.testimonials span {
  display: block;
  font-size: 0.9rem;
  color: #666;
}


.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-box {
  flex: 1 1 300px;
  background-color: #f9f9f9;
  border: 2px solid rgb(204, 0, 0);
  border-radius: 8px;
  padding: 2rem;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  font-family: "LEMON MILK", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #000;
}

.service-box ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.service-box p.note {
  font-style: italic;
  color: rgb(204, 0, 0);
}

.service-box.highlight {
  border: 2px solid rgb(204, 0, 0);
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.2);
  transform: scale(1.23);
  font-size: 12px;
}


.about-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text p {
  margin-block-end: 1em;
}

.about-chart {
  flex: 1 1 300px;
  text-align: center;
  margin-top: 80px;
}

.about-chart img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 25px;
    background-color: white;
}

.about-chart figcaption {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}


@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .about-chart img {
    max-width: 100%;
    margin-top: -90px;
  }
}




.feedback-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.feedback-track {
  display: flex;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  animation: scroll-left 63s linear infinite;
  width: max-content;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.feedback-track.dragging {
  cursor: grabbing;
}


.feedback-track:hover {
  animation-play-state: paused;
}

.feedback-card {
  flex: 0 0 600px;
  scroll-snap-align: center;
  background: #fff;
  color: #111;
  padding: 1.5rem;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
}

.feedback-card blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

.feedback-card span {
  display: block;
  font-size: 0.9rem;
  color: #777;
  text-align: right;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hide scrollbar */
.feedback-track::-webkit-scrollbar {
  display: none;
}


