/*
 Theme Name:   Genau Onepager
 Theme URI:    https://example.com
 Author:       Dein Name
 Description:  Onepager-Theme exakt nach Referenzdesign (hardcoded)
 Version:      1.0
*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #000;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  margin-top:40px;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img {
  height: 60px;
}
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}
.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}
/* Mobile Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}
/* Show hamburger under 768px */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* --- HERO --- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images/hero-bg.png') center/cover no-repeat;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 20px;
}
.hero-inner h1 {
  font-size: 3rem;
  line-height: 1.1;
}
.hero-inner h2 {
  font-size: 2rem;
  font-weight: 400;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff3b3b 0%, #ff1c1c 100%);
  box-shadow: 0 4px 12px rgba(255,59,59,0.3);
  transition: background 0.3s;
  color: #fff;
}
.btn:hover {
  background: linear-gradient(90deg, #ff1c1c 0%, #e60000 100%);
}

/* --- FEATURES --- */
#features {
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-card i {
  font-size: 1.5rem;
}
.feature-card .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-card .text h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.feature-card .text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* --- PRODUKTE --- */
#produkte {
  padding: 80px 0;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.product-card img {
  width: 100%;
  display: block;
}
.product-card h4 {
  padding: 12px;
  font-size: 1rem;
}

/* --- TIMELINE --- */
.timeline {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.timeline ul {
  list-style: none;
}
.timeline li {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  text-align: right;
}

/* --- ABOUT / KONTAKT --- */
#about-kontakt {
  padding: 80px 0;
}
.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.about h2, .kontakt h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.about p, .kontakt p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.contact-form button {
  width: 100%;
}

/* --- FOOTER --- */
.site-footer {
  padding: 40px 0;
  text-align: center;
  background: #000;
}
.site-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
/* Sprach-Switcher */
.lang-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1100;
  display: flex;
  gap: 12px;
}
.lang-switcher a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.lang-switcher a:hover {
  background: rgba(255,255,255,0.1);
}
.lang-switcher a.active /* neue Fakten & Zahlen Section */
#fakten {
  background: #111;
  color: #fff;
}
#fakten .section-title {
  margin-bottom: 48px;
  text-align: center;
	padding-top:35px;
  font-size: 2.25rem;
}
.facts-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 32px;
}
.fact-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.fact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}
.fact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2001a;
  margin-bottom: 12px;
}
.fact-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 768px) {
  .facts-cards {
    grid-template-columns: 1fr;
  }
}

  background: #ff1c1c;
  color: #fff;
}
/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* --- SWIPER SLIDER FULLWIDTH & SCHMAL --- */
.products-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 280px;
  overflow: hidden;
}

.products-slider .swiper-wrapper {
  height: 100%;
}

.products-slider .swiper-slide {
  width: 100vw; /* fullwidth slide */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.products-slider .product-card {
  width: 100%;
  max-width: none;
  border-radius: 0;
}

.products-slider .product-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.products-slider .product-card h4 {
  text-align: center;
  padding: 8px;
  font-size: 1rem;
}

/* Swiper Navigation und Pagination optimiert */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Navigation */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
/* Parallax Section Basis */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.parallax .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.section--dark { color: #fff; }

/* Section Padding & Layout */
.section {
  position: relative;
  padding: 100px 0;
}
.section__inner {
  position: relative;
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split-image img {
  width: 100%;
  border-radius: 12px;

}
.about-split-text h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
.about-split-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media(max-width: 992px){
  .about-split { grid-template-columns: 1fr; }
}
/* Qualitätsversprechen */
.quality-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.quality-card-premium {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
  transition: transform .3s, box-shadow .3s;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

.quality-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.quality-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.quality-text {
  padding: 24px;
  text-align: center;
}

.quality-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.quality-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.25rem;
  font-weight: 600;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 32px;
}
.quality-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, background .3s;
}
.quality-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
}
.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #ff3b3b, #e60000);
  border-radius: 50%;
}
.icon-wrap i {
  font-size: 1.5rem;
  color: #fff;
}
.quality-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}
.quality-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
/* Slim Video-Background Section */
.ueber-uns-video-slim {
  position: relative;
  overflow: hidden;
  padding: 80px 0;          /* exakt gleiche Höhe wie deine .section */
  background: #000;         /* Fallback */
}

/* Das Video soll den kompletten Bereich covern */
.ueber-uns-video-slim .ueber-uns__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 120%;            /* leicht größer für Cover */
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Dunkles Overlay für Lesbarkeit */
.ueber-uns-video-slim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* Neon-Stripe in Deutschland-Farben */


/* Content-Grid oben drüber */
.ueber-uns-video-slim .about-split {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Bild- und Textstyling beibehalten */
.about-split-image img {
  width: 100%;
  border-radius: 8px;
}
.about-split-text h2 {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 16px;
}
.about-split-text p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .ueber-uns-video-slim .about-split { grid-template-columns: 1fr; }
  .ueber-uns-video-slim { padding: 60px 0; }
}

/* --- Glassmorphic Feature Cards --- */
.features-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card-premium {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  transition: transform .3s, box-shadow .3s;
}

.feature-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.feature-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.feature-content {
  padding: 24px;
  text-align: center;
  color: #fff;
}

.feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.feature-content small {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
/* --- Services & Facts Layout --- */
.services-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.services-list-modern .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card-premium {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
  transition: transform .3s;
}

.service-card-premium:hover {
  transform: translateY(-6px);
}

.service-card-premium h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-card-premium p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* Fakten & Zahlen */
.company-facts-premium {
  padding: 24px;
}

.facts-list-premium {
  list-style: none;
  padding: 0;
}

.facts-list-premium li {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.fact-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e2001a; /* Rot-Akzent */
  margin-right: 12px;
}

.fact-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 992px) {
  .services-section {
    grid-template-columns: 1fr;
  }
  .services-section .section-title {
    text-align: center;
  }
}
/* Kontakt Section Premium */
/* Kontakt Section Premium */
.contact-section {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.contact-form-wrapper {
  margin-bottom: 40px;
}

.wpcf7-form {
  display: grid;
  gap: 24px; /* Abstand zwischen den Feldern */
}

.wpcf7-form p {
  margin: 0; /* Entfernt Standard-Padding */
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.wpcf7-submit {
  background: linear-gradient(90deg, #ff3b3b 0%, #ff1c1c 100%);
  border: none;
  padding: 14px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.wpcf7-submit:hover {
  background: linear-gradient(90deg, #ff1c1c 0%, #e60000 100%);
}

.contact-info {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.contact-info a {
  color: #ff3b3b;
  text-decoration: underline;
}

.wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.wpcf7-acceptance input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.2);
}

.wpcf7-list-item {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #fff;
}

.footer-col p, .footer-col small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* -------------------------
   Mobile (<768px) Burger-Menü
   ------------------------- */
@media (max-width: 1024px) {

  /* 1) Desktop-Nav verbergen, nur über .active einblenden */
  .main-nav {
    display: none !important;
    flex-direction: column;
    gap: 16px;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }
  .main-nav.active {
    display: flex !important;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  /* 2) Hamburger-Icon anzeigen */
  .nav-toggle {
    display: flex !important;
    z-index: 1001;
  }

  /* 3) Desktop-Switcher ausblenden, Mobile-Switcher im Menü anzeigen */
  .desktop-lang-switcher {
    display: none !important;
  }
  .mobile-lang-switcher {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
}
/* ---------------------------------------------------
   Video-Hero anstelle des alten #hero
   --------------------------------------------------- */
#hero-video {
  position: relative;
  height: 100vh;          /* volle Viewport-Höhe wie alter Hero */
  overflow: hidden;
}

.ueber-uns-video-slim .ueber-uns__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 120%;           /* etwas größer, damit es covert */
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.ueber-uns-video-slim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

.hero-split .about-split-text {
  max-width: 600px;
  text-align: center;
}

.hero-split .about-split-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-split .about-split-text h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Mobile: Bild im Hero ausblenden (optional) */
@media (max-width: 768px) {
  .hero-split .about-split-image {
    display: none;
  }
}

/* ---------------------------------------------------
   Burger-Menü & Language-Switcher Anpassungen
   --------------------------------------------------- */
@media (max-width: 1024px) {
  /* Desktop-Navigation ausblenden, über .active einblenden */
  .main-nav {
    display: none !important;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }
  .main-nav.active {
    display: flex !important;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  /* Hamburger-Icon einblenden */
  .nav-toggle {
    display: flex !important;
    z-index: 1001;
  }

  /* Desktop-Switcher ausblenden, mobiler im Menü anzeigen */
  .desktop-lang-switcher {
    display: none !important;
  }
  .mobile-lang-switcher {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
}


/* Solingen-Logo oberhalb des Made-in-Germany-Textes */
.solingen-logo {
  display: flex;
  justify-content: center;    /* zentriert über dem Text */
  margin-bottom: 8px;         /* Abstand zum „Made in Germany“-Text */
}
.solingen-logo svg {
  width: 120px;               /* passe Breite nach Wunsch an */
  height: auto;
  fill: #fff;                 /* Farben im SVG werden weiß */
}

/* Falls dein SVG eigene Klassen hat, entferne hier ggf. inline fill-Angaben
   oder überschreibe sie mit: */
.solingen-logo svg [fill] {
  fill: #fff !important;
}

/* 1) services-section als 2-spaltiges Grid */
.services-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* 2) Überschrift über beide Spalten ziehen und zentrieren */
.services-section .section-title {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 32px;
}

/* Zwischen Überschrift und den beiden Spalten */
.services-section .section-intro {
  grid-column: 1 / -1;      /* über beide Spalten */
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin: 0 auto 32px;
  max-width: 800px;
  line-height: 1.6;
}
/* Full-Width Break-out für Fakten & Zahlen */
.facts-cards-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: 0 20px;
  background: #111; /* optional: eigener Hintergrund */
}
.fact-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.fact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}
.fact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2001a;
  margin-bottom: 12px;
}
.fact-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 768px) {
  .facts-cards-fullwidth {
    grid-template-columns: 1fr;
    margin-left: 0;
    left: 0;
    width: 100%;
    padding: 0 16px;
  }
}
/* Full-Width Hintergrund für Fakten */
#fakten { position: relative; }
.fakten-bg {
  position: absolute;
  inset: 0;
  background: #111;
  z-index: 1;
}
#fakten .container {
  position: relative;
  z-index: 2;
}

/* 3-Spalten-Grid im Container */
.facts-grid {
  display: grid!important;
  grid-template-columns: repeat(3, 1fr)!important;
  gap: 32px;
  margin-top: 32px;
padding-bottom:75px;
}
.fact-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.fact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}
.fact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2001a;
  margin-bottom: 12px;
}
.fact-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

/* Responsive: 1-Spalte unter 768px */
@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
}
/* Services: 3 Cards zentriert im Container */
.services-list-modern .services-grid {
  display: grid;
  /* genau 3 Spalten, aber jede darf ab 240px schrumpfen */
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  /* Grid-Block selbst auf max. 900px beschränken und zentrieren */
  max-width: 900px;
  margin: 0 auto;
  /* Items selbst bleiben oben ausgerichtet */
  align-items: start;
}
@media (max-width: 992px) {
  .services-list-modern .services-grid {
    /* ab Tablet auf 2 Spalten, ab Mobile 1 Spalte */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* direkt unter Deinen bestehenden Services-Styles */
.services-section .services-list-modern {
  /* spannt das Element über Spalte 1 bis zum Ende */
  grid-column: 1 / -1;
}

/* === Footer Basis === */
.site-footer {
  background: #111;              /* dunkler Hintergrund */
  color: #fff;                   /* weiße Schrift */
  padding: 60px 0 30px;          /* oben großzügig, unten etwas knapper */
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Grid für die vier Spalten */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: left;              /* alles linksbündig */
}

/* Überschriften in den Spalten */
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
}

/* Absätze, Links, Small-Texte */
.footer-col p,
.footer-col small {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.8);
  display: block;
}

/* Link-Styling */
.footer-col a {
  color: #fff;
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}

/* Kontakt-Liste (Adresse/Telefon/Fax/E-Mail) */
.footer-col .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-col .contact-list li i {
  font-size: 1.2rem;
  color: #e2001a;
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer-Bottom (Copyright) */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* Mobile: etwas engerer Abstand */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    gap: 24px;
  }
}
#qualitaet {
  background-image: url('http://genaugermany.com/wp-content/uploads/2025/07/genau-fabrik.png');
  background-size: cover;
  background-position: center;
}


@media (max-width: 1024px) {
  #qualitaet {
    background-attachment: scroll; /* disables fixed on iPad/Mobile to prevent distortion */
  }
}

#qualitaet {
  position: relative;
  overflow: hidden;
}

#qualitaet .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Schwarzer Overlay mit 30% Opacity */
  z-index: 1;
}

#qualitaet .section__inner {
  position: relative;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dunkles Overlay */
  z-index: 2;
}

.hero-centered {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* volle Höhe */
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-image img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.solingen-logo svg {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  fill: #fff;
}


/* ---------- RECHTSTEXTE ---------- */
#page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  font-size: 1rem;
  color: #fff;
}

#page-content h1,
#page-content h2,
#page-content h3,
#page-content h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 600;
  color: #222;
}

#page-content p {
  margin-bottom: 1.2em;
}

#page-content ul,
#page-content ol {
  margin: 1em 0 1em 2em;
  padding-left: 1em;
}

#page-content ul li,
#page-content ol li {
  margin-bottom: 0.5em;
}

#page-content a {
  color: #005baa;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#page-content a:hover {
  color: #003d7a;
}

#page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.95rem;
}

#page-content table th,
#page-content table td {
  border: 1px solid #ccc;
  padding: 10px;
}

#page-content table th {
  background: #f8f8f8;
  font-weight: 600;
}

#page-content blockquote {
  border-left: 4px solid #005baa;
  padding-left: 1em;
  color: #555;
  margin: 1.5em 0;
}

#page-content strong {
  font-weight: 600;
}

#page-content small {
  display: block;
  margin-top: -0.5em;
  margin-bottom: 1em;
  color: #777;
  font-size: 0.85rem;
}

#page-content .btn,
#page-content button,
#page-content input[type=submit] {
  display: inline-block;
  background: #005baa;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
  cursor: pointer;
}

#page-content .btn:hover,
#page-content button:hover,
#page-content input[type=submit]:hover {
  background: #003d7a;
}


#page-content h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3em;
}
