/* ===== Fonts (lokal, DSGVO-konform) ===== */
@font-face {
  font-family: 'Anta';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anta-400.woff2') format('woff2');
}
/* Noto Sans Tai Tham hat kein weight 300 bei Google Fonts;
   font-weight:300 fällt auf die nächstliegende 400-Datei zurück. */
@font-face {
  font-family: 'Noto Sans Tai Tham';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-tai-tham-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans Tai Tham';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-tai-tham-500.woff2') format('woff2');
}

/* ===== Reset / Basis ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
a { color: #000; text-decoration: none; }
a:hover { color: #555; }

/* ===== Landing ===== */
body.landing { height: 100vh; overflow: hidden; background: #fff; }
.netfx { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; background: #fff; }
.hero {
  height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; z-index: 1; overflow: hidden; padding: 24px; color: #000;
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.brand {
  font-family: 'Anta', sans-serif; font-weight: 400;
  font-size: clamp(16px, 2.2vw, 28px); letter-spacing: 0.02em;
  margin: 0; line-height: 1;
}
.claim {
  font-family: 'Noto Sans Tai Tham', sans-serif; font-weight: 300;
  font-size: clamp(11px, 1.3vw, 15px); letter-spacing: 0.02em;
  color: #000; margin: 12px 0 0;
}
.links {
  display: flex; gap: 20px; margin-top: 20px;
  font-family: 'Noto Sans Tai Tham', sans-serif;
  font-size: clamp(11px, 1.3vw, 15px); letter-spacing: 0.02em;
}
.pill {
  color: #222; background: #f4f4f4; border: 1px solid #ececec;
  border-radius: 999px; padding: 5px 14px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.pill:hover { background: #000; border-color: #000; color: #fff; transform: translateY(-1px); }
.footer {
  position: fixed; bottom: 24px; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: center; gap: 24px;
  font-family: 'Noto Sans Tai Tham', sans-serif; font-size: 13px; letter-spacing: 0.04em;
}

/* ===== Rechtsseiten (Imprint / Privacy) ===== */
body.legal { background: #fff; }
.legal-wrap {
  min-height: 100vh; background: #fff; color: #111;
  display: flex; justify-content: center; padding: 80px 24px 120px;
}
.legal-col { width: 100%; max-width: 640px; }
.back {
  font-family: 'Noto Sans Tai Tham', sans-serif; font-size: 12px;
  letter-spacing: 0.04em; color: #888;
  display: inline-flex; align-items: center; gap: 6px;
}
.legal-title {
  font-family: 'Anta', sans-serif; font-weight: 400; font-size: 34px;
  letter-spacing: 0.02em; margin: 36px 0 8px;
}
.legal-sub {
  font-family: 'Noto Sans Tai Tham', sans-serif; font-weight: 300;
  font-size: 13px; color: #999; margin: 0 0 40px;
}
.legal-sections {
  display: flex; flex-direction: column; gap: 32px;
  font-family: 'Noto Sans Tai Tham', sans-serif; font-weight: 300;
  font-size: 15px; line-height: 1.7; color: #333;
}
.legal-sections h2 {
  font-family: 'Anta', sans-serif; font-weight: 400; font-size: 16px;
  letter-spacing: 0.02em; color: #000; margin: 0 0 10px;
}
.legal-sections p { margin: 0; }

/* ===== Kontaktformular ===== */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; letter-spacing: 0.02em; color: #666;
}
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 15px; color: #111;
  border: 1px solid #ddd; border-radius: 8px; padding: 11px 13px;
  background: #fff; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #000; }
.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-form button {
  font-family: 'Anta', sans-serif; font-size: 14px; letter-spacing: 0.02em;
  background: #000; color: #fff; border: 0; border-radius: 999px;
  padding: 12px 26px; cursor: pointer; align-self: flex-start;
  transition: background .25s ease, transform .25s ease;
}
.contact-form button:hover:not(:disabled) { background: #333; transform: translateY(-1px); }
.contact-form button:disabled { opacity: .5; cursor: default; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 14px; margin: 0; }
.form-status.error { color: #b00020; }
.form-status.ok { color: #0a7d33; }
.form-note { font-size: 13px; color: #999; line-height: 1.6; }
