@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap");

:root {
  --gelb: #f0b90b;
  --schwarz: #1a1a1a;
  --schwarz2: #101010;
  --grau: #666;
  --hellgrau: #f5f5f5;
  --weiss: #fff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--schwarz);
  background: var(--weiss);
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
}

a { color: inherit; }

/* Kopf */
.kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 5vw;
  background: var(--weiss);
  border-bottom: 3px solid var(--gelb);
}

.kopf .logo {
  height: 64px;
}

.kopf nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.kopf nav a {
  text-decoration: none;
}

.kopf nav a:hover {
  color: var(--gelb-dunkel, #b5890a);
}

/* Hero */
.hero {
  position: relative;
  background: var(--schwarz2);
  color: var(--weiss);
  overflow: hidden;
  padding: 56px 5vw 96px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/logo-emblem-schwarz.png") center right -80px / 380px no-repeat;
  opacity: 0.35;
}

.hero-inhalt {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--weiss);
}

.hero h1 em {
  font-style: normal;
  color: var(--gelb);
}

.hero p {
  color: #ddd;
  line-height: 1.6;
  margin: 0;
}

/* Formular-Karte */
main {
  max-width: 640px;
  margin: -56px auto 0;
  padding: 0 5vw 80px;
  position: relative;
}

.karte {
  background: var(--weiss);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  padding: 32px clamp(20px, 4vw, 40px);
}

.anfrage {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feld {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feld-zwei {
  flex-direction: row;
  gap: 18px;
}

.feld-zwei > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input, textarea, select {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: var(--hellgrau);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--gelb);
  outline-offset: 1px;
}

.feld-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button {
  font: inherit;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  background: var(--gelb);
  color: var(--schwarz);
  cursor: pointer;
}

button:hover { filter: brightness(0.95); }
button:disabled { opacity: 0.6; cursor: default; }

.status { font-size: 0.95rem; }
.status.ok { color: #2a7a2a; }
.status.fehler { color: #b3261e; }

/* Rechtstexte (Impressum/Datenschutz) */
.rechtstext {
  max-width: 720px;
  margin: 40px auto 80px;
  padding: 0 5vw;
  line-height: 1.6;
}

.rechtstext h1 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.rechtstext h2 {
  font-size: 1.15rem;
  margin: 32px 0 8px;
}

.rechtstext p, .rechtstext ul {
  color: #333;
}

.rechtstext blockquote {
  margin: 24px 0;
  padding: 4px 20px;
  border-left: 4px solid var(--gelb);
  font-style: italic;
  color: var(--schwarz);
}

.touren {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.touren li {
  padding: 16px 18px;
  background: var(--hellgrau);
  border-left: 4px solid var(--gelb);
  border-radius: 4px;
}

.touren h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.touren p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Footer */
footer {
  background: var(--schwarz2);
  color: #ccc;
  padding: 36px 5vw 28px;
}

.footer-inhalt {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inhalt img {
  height: 48px;
  flex-shrink: 0;
}

.footer-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-text strong { color: var(--weiss); }

.footer-links {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gelb); }

@media (max-width: 480px) {
  .feld-zwei { flex-direction: column; }
  .kopf .logo { height: 52px; }
  .hero { padding: 40px 6vw 80px; }
  .hero::before { background-position: center right -160px; opacity: 0.25; }
}
