@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --hintergrund-hell: #f8fbfb;
  --hintergrund-dunkel: #ffffff;
  --akzent-blau: #005b96;
  --akzent-hellblau: #b3d4ff;
  --text-haupt: #2c3e50;
  --text-neben: #596b7d;
  --rahmen-farbe: #e0e6ed;
  --schrift-standard: 'Inter', sans-serif;
  --uebergang-schnell: 0.2s ease-in-out;
  --uebergang-weich: 0.5s ease-out;
}

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

body {
  font-family: var(--schrift-standard);
  background-color: var(--hintergrund-hell);
  color: var(--text-haupt);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typografie */
h1, h2, h3, h4, .markenname {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.titel-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.titel-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.text-akzent {
  color: var(--akzent-blau);
}

a {
  text-decoration: none;
  color: var(--text-haupt);
  transition: color var(--uebergang-schnell);
}

/* Behaelter */
.behaelter {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Schaltflaechen */
.schaltflaeche {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all var(--uebergang-schnell);
}

.schaltflaeche-primaer {
  background-color: var(--akzent-blau);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 91, 150, 0.3);
}

.schaltflaeche-primaer:hover {
  background-color: #004473;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 91, 150, 0.4);
}

.schaltflaeche-sekundaer {
  background-color: transparent;
  color: var(--akzent-blau);
  border: 2px solid var(--akzent-blau);
}

.schaltflaeche-sekundaer:hover {
  background-color: var(--akzent-hellblau);
  color: #004473;
}

/* Ladebildschirm */
#ladebildschirm {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--hintergrund-dunkel);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity var(--uebergang-weich);
}

.ladekreis {
  width: 50px;
  height: 50px;
  border: 4px solid var(--rahmen-farbe);
  border-top-color: var(--akzent-blau);
  border-radius: 50%;
  animation: drehen 1s infinite linear;
  margin-bottom: 20px;
}

@keyframes drehen {
  100% { transform: rotate(360deg); }
}

/* Kopfbereich */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 5%;
  z-index: 1000;
  transition: all var(--uebergang-schnell);
  background: transparent;
}

header.gescrollt {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 5%;
  border-bottom: 1px solid var(--rahmen-farbe);
  backdrop-filter: blur(10px);
}

.navigations-behaelter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.markenname {
  font-size: 1.8rem;
  color: var(--text-haupt);
}

.navigations-links {
  display: flex;
  gap: 2.5rem;
}

.navigations-links a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.navigations-links a:hover, .navigations-links a.aktiv {
  color: var(--akzent-blau);
}

/* Mobiles Menue */
.menue-schalter {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
}

.menue-schalter span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-haupt);
  transition: all var(--uebergang-schnell);
  border-radius: 2px;
}

.menue-schalter.offen span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menue-schalter.offen span:nth-child(2) { opacity: 0; }
.menue-schalter.offen span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-navigation {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1500;
  padding: 100px 2rem;
  transition: right var(--uebergang-weich);
  box-shadow: -5px 0 15px rgba(0,0,0,0.05);
}

.mobile-navigation.offen { right: 0; }

.mobile-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-navigation a {
  font-size: 1.2rem;
  font-weight: 600;
}

.menue-hintergrund {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(44, 62, 80, 0.6);
  z-index: 1400;
  opacity: 0; visibility: hidden;
  transition: all var(--uebergang-schnell);
}

.menue-hintergrund.offen { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
  .navigations-links { display: none; }
  .menue-schalter { display: flex; }
}

/* Startbereich (Hero) */
.startbereich {
  padding: 150px 5% 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.startbereich-inhalt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.startbereich-text p {
  font-size: 1.2rem;
  color: var(--text-neben);
  margin-bottom: 2.5rem;
}

.startbereich-bild {
  position: relative;
}

.startbereich-bild img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.ergonomie-plakette {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.ergonomie-plakette strong {
  font-size: 1.5rem;
  color: var(--akzent-blau);
}

@media (max-width: 900px) {
  .startbereich-inhalt { grid-template-columns: 1fr; }
  .startbereich-text { text-align: center; }
  .startbereich-bild { order: -1; }
  .ergonomie-plakette { left: 50%; transform: translateX(-50%); bottom: -30px; }
}

/* Vorteile / Eigenschaften */
.vorteile {
  padding: 100px 0;
  background-color: var(--hintergrund-dunkel);
}

.vorteils-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.vorteils-karte {
  background: var(--hintergrund-hell);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--rahmen-farbe);
  transition: all var(--uebergang-schnell);
}

.vorteils-karte:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--akzent-hellblau);
}

.vorteils-karte h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--akzent-blau);
}

.vorteils-karte p {
  color: var(--text-neben);
}

/* Bildergalerie */
.galerie {
  padding: 100px 0;
}

.galerie-raster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.galerie-bild {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.galerie-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--uebergang-weich);
}

.galerie-bild:hover img {
  transform: scale(1.05);
}

/* FAQ Bereich */
.faq-bereich {
  padding: 80px 0;
  background-color: var(--hintergrund-hell);
}

.faq-element {
  background: var(--hintergrund-dunkel);
  border: 1px solid var(--rahmen-farbe);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-element h4 {
  color: var(--akzent-blau);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-element p {
  color: var(--text-neben);
  margin-bottom: 0;
}

/* Vergleichstabelle */
.vergleichs-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  background: var(--hintergrund-dunkel);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vergleichs-tabelle th, .vergleichs-tabelle td {
  padding: 1.2rem;
  text-align: center;
  border-bottom: 1px solid var(--rahmen-farbe);
}

.vergleichs-tabelle th {
  background-color: var(--hintergrund-hell);
  font-weight: 800;
  color: var(--text-haupt);
}

.vergleichs-tabelle td:first-child, .vergleichs-tabelle th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-haupt);
}

.vergleichs-tabelle tr:last-child td {
  border-bottom: none;
}

.vergleich-nixon {
  background-color: rgba(0, 91, 150, 0.05);
  color: var(--akzent-blau);
  font-weight: 800;
}

/* Erfahrungsbericht (Review) */
.erfahrungsbericht-kopf {
  padding: 150px 0 60px;
  background-color: var(--hintergrund-dunkel);
  text-align: center;
}

.erfahrungsbericht-inhalt {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.erfahrungsbericht-inhalt h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-haupt);
}

.erfahrungsbericht-inhalt p {
  font-size: 1.1rem;
  color: var(--text-neben);
  margin-bottom: 1.5rem;
}

.erfahrungsbericht-hervorhebung {
  background: var(--akzent-hellblau);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
  border-left: 5px solid var(--akzent-blau);
}

/* Produktseite (Order) */
.produkt-anzeige {
  padding: 150px 0 100px;
}

.produkt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .produkt-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.produkt-hauptbild img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--rahmen-farbe);
}

.produkt-vorschaubilder {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.produkt-vorschaubilder img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid var(--rahmen-farbe);
  transition: border-color var(--uebergang-schnell);
}

.produkt-vorschaubilder img.aktiv {
  border-color: var(--akzent-blau);
}

.produkt-preis {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--akzent-blau);
  margin: 1.5rem 0;
}

.spezifikationen {
  list-style: none;
  margin-bottom: 2.5rem;
}

.spezifikationen li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rahmen-farbe);
  color: var(--text-neben);
}

/* Kontaktformular */
.formular-feld {
  width: 100%;
  padding: 16px;
  margin-bottom: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--rahmen-farbe);
  border-radius: 8px;
  font-family: var(--schrift-standard);
  font-size: 1rem;
  color: var(--text-haupt);
  transition: border-color var(--uebergang-schnell);
}

.formular-feld:focus {
  outline: none;
  border-color: var(--akzent-blau);
}

textarea.formular-feld {
  min-height: 150px;
  resize: vertical;
}

/* Fusszeile */
footer {
  background-color: var(--hintergrund-dunkel);
  padding: 80px 5% 40px;
  border-top: 1px solid var(--rahmen-farbe);
}

.fusszeile-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fusszeile-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-haupt);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.fusszeile-info p {
  color: var(--text-neben);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.fusszeile-links h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-haupt);
}

.fusszeile-links ul {
  list-style: none;
}

.fusszeile-links li {
  margin-bottom: 0.8rem;
}

.fusszeile-links a {
  color: var(--text-neben);
  font-size: 0.95rem;
}

.fusszeile-links a:hover {
  color: var(--akzent-blau);
}

.fusszeile-unten {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--rahmen-farbe);
  color: var(--text-neben);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Einblendungs-Animationen beim Scrollen */
.erscheinen {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.erscheinen.sichtbar {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie Hinweis */
.cookie-hinweis {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: var(--text-haupt);
  color: #ffffff;
  padding: 20px 5%;
  z-index: 9999;
  transition: bottom var(--uebergang-weich);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.cookie-hinweis.sichtbar {
  bottom: 0;
}

.cookie-inhalt {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-inhalt p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-inhalt a {
  color: var(--akzent-hellblau);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-inhalt {
    flex-direction: column;
    text-align: center;
  }
}
