
:root {
  --bg: #0D1B2A;
  --card-dark: #16243A;
  --card-light: #F9FAFB;
  --text-light: #F9FAFB;
  --text-dark: #0B1120;
  --muted: #CBD5F5;
  --accent-gold: #D4AF37;
  --accent-blue: #00B4D8;
  --accent-rose: #F5C6AA;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #112240 0, #020617 45%, #000 100%);
  color: var(--text-light);
  font-family: "Lora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 900px;
  padding: 20px 16px 28px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 10%, var(--accent-gold), #4B5563);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F9FAFB;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.lang-btn {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.7);
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  padding: 4px 8px;
  cursor: pointer;
}

.lang-btn.active {
  border-color: var(--accent-blue);
  color: var(--text-light);
  background: rgba(15,118,230,.2);
}

.card {
  border-radius: 18px;
  padding: 16px 18px;
  margin: 10px 0;
  border: 1px solid rgba(148,163,184,.35);
}

.card-main {
  background: linear-gradient(135deg, rgba(15,23,42,.96), rgba(15,23,42,.85));
}

.card-secondary {
  background: rgba(15,23,42,.70);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.7);
  padding: 2px 9px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.headline {
  margin-top: 8px;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.lead {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.card-secondary h2 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.card-secondary p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--muted);
}

.list {
  margin: 4px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin: 3px 0;
}

.page-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .lang-switch {
    justify-content: flex-start;
  }
}

/* Allgemeine Link-Farben auf dunklem Hintergrund */
a {
  color: #00B4D8;              /* Hell-Türkis – gut lesbar */
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:visited {
  color: #D4AF37;              /* Blasses Gold für besuchte Links */
}

a:hover,
a:focus-visible {
  color: #F5C6AA;              /* Puderrosa beim Hover */
  text-shadow: 0 0 4px rgba(0, 180, 216, 0.5);
}

/* Optional: nur im Kontakt-Block etwas dezenter */
.contact-section a {
  font-weight: 500;
}
