/* ===== Dark Mode Basis ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0f1a;   /* dunkler Hintergrund */
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Logo | Navi | Login */
  align-items: center;
  background-color: #111827;
  padding: 15px 30px;
  border-bottom: 2px solid #14a6ff;
}

/* Logo links */
.brand {
  justify-self: start;
}
.brand img {
  height: 150px;
  display: block;
}

/* Navi mittig */
.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
}
.links a:hover {
  background-color: #14a6ff;
  color: #0a0f1a;
}

/* Login rechts */
.login {
  justify-self: end;
}
.login a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
}
.login a:hover {
  background-color: #14a6ff;
  color: #0a0f1a;
}

/* ===== Hauptbereich ===== */
.content {
  flex: 1; /* schiebt Footer nach unten */
  padding: 40px 20px;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background-color: #111827;
  color: #b0b0b0;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #14a6ff;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #14a6ff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ===== Qualität / Arbeitsplätze Block ===== */
.quality{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px clamp(12px, 3vw, 24px);
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* links etwas breiter wie im Screenshot */
  gap: 24px;
}

/* Linke Karte (leicht heller auf Dark) */
.quality-quote{
  background: #e9ecef0f;                 /* sehr hell auf dunkel (transparenter Ton) */
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: clamp(18px, 3.5vw, 36px);
}

.quality-quote h2{
  margin: 0 0 18px;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);   /* skaliert wie im Beispiel groß */
  line-height: 1.2;
  color: #e6e8ed;
}

.quality-quote .sub{
  color: #b9c2cf;
  margin: 0 0 18px;
}

.quality-quote .cite{
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9fb8ff;
  font-size: .85rem;
}

/* Rechte 2×2 Galerie */
.foto1{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
}
.foto1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

/* Responsive: auf Handy untereinander */
@media (max-width: 900px){
  .quality{
    grid-template-columns: 1fr;  /* stapeln */
  }
  .foto1{
    grid-template-columns: 1fr 1fr; /* 2 Spalten bleiben, passt schön */
  }
}
