/* ============================================================
   Gollwitzer GmbH Internationale Spedition – Webvisitenkarte
   Farbwelt nach Vorlage (Website-Entwurf 2016):
   Blau #014585 · Rot #a01b0e · Trennlinie #a7271b
   ============================================================ */

:root {
  --blue: #014585;
  --blue-dark: #0e3766;
  --red: #a01b0e;
  --red-line: #a7271b;
  --text: #333a41;
  --muted: #6b7280;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top-Leiste ------------------------------------------------ */
.topbar {
  background: #fff;
  font-size: 13px;
  color: var(--blue);
}
.topbar .wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 20px;
  flex-wrap: wrap;
}
.topbar a { white-space: nowrap; }

/* --- Header ---------------------------------------------------- */
header {
  background: var(--blue);
}
header .wrap {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img.logo {
  height: 52px;
  width: auto;
  display: block;
}

/* --- Hero ------------------------------------------------------ */
.hero {
  position: relative;
  background: url("auflieger.jpg") center / cover no-repeat;
  min-height: 320px;
  border-bottom: 4px solid var(--red-line);
}
.hero .claim {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--red);
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.35;
  padding: 22px 40px 22px 28px;
  max-width: 480px;
}
@media (min-width: 800px) {
  .hero { min-height: 420px; }
  .hero .claim { right: 6%; }
}
@media (max-width: 600px) {
  .hero { background-position: 22% center; }
  .hero .claim {
    font-size: 21px;
    top: auto;
    bottom: 0;
    transform: none;
    padding: 16px 20px;
  }
}

/* --- Inhalt ---------------------------------------------------- */
.intro {
  text-align: center;
  padding: 56px 0 48px;
}
.intro h1 {
  color: var(--blue);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 18px;
}
.intro p {
  max-width: 720px;
  margin: 0 auto 12px;
}

h2 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 300;
  margin: 32px 0 12px;
}

/* --- Standorte (blaues Panel wie in der Vorlage) --------------- */
.standorte {
  background: var(--blue);
  color: #fff;
  padding: 48px 0 56px;
}
.standorte h2 {
  color: #fff;
  text-align: center;
  margin: 0 0 36px;
}
.standorte .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.standort h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}
.standort .ort {
  font-weight: 300;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red-line);
}
.standort p { font-size: 14px; font-weight: 300; }
.standort a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.standort a:hover { color: #ffd9d4; }
@media (max-width: 900px) {
  .standorte .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .standorte .grid { grid-template-columns: 1fr; }
}

/* --- Footer ---------------------------------------------------- */
footer {
  position: relative;
  background: url("fuhrpark.jpg") center / cover no-repeat;
  border-top: 4px solid var(--red-line);
  color: #fff;
}
footer .overlay {
  background: rgba(14, 55, 102, 0.88);
  padding: 40px 0 32px;
}
footer .cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
footer img.logo { height: 40px; width: auto; }
footer nav a {
  color: #fff;
  font-size: 14px;
  margin-left: 20px;
}
footer .copy {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: #c7d3e2;
  margin-top: 28px;
}

/* --- Unterseiten (Impressum / Datenschutz) --------------------- */
.subpage {
  padding: 48px 0 64px;
}
.subpage h1 {
  color: var(--blue);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-line);
}
.subpage p, .subpage ul { margin-bottom: 14px; }
.subpage ul { padding-left: 22px; }
.backlink { display: inline-block; margin-top: 28px; }

/* Platzhalter, die noch mit echten Daten gefüllt werden müssen */
.todo {
  background: #fff3cd;
  border: 1px dashed #b8860b;
  padding: 0 6px;
  border-radius: 3px;
}
