/*
  Minimaler CSS‑Satz, abgeleitet aus der bereitgestellten style.css.
  Er definiert Variablen und Komponenten wie Karte und Kopfzeile,
  die für das Abschieds‑Layout benötigt werden.  Die Farben und
  Typografie orientieren sich am Originaldesign.
*/

:root {
  /* Microsoft‑ähnliche Farbpalette */
  --ms-orange: #F25022;
  --ms-green:  #7FBA00;
  --ms-blue:   #00A4EF;
  --ms-yellow: #FFB900;
  --ms-fluent-blue: #0078D4;
  --ms-gray:   #737373;

  --bg: #f3f4f6;
  --bg-alt: #ffffff;
  --accent: var(--ms-fluent-blue);
  --accent-soft: rgba(0, 120, 212, 0.08);
  --accent-strong: #005a9e;
  --text-main: #111827;
  --text-muted: #4b5563;
  --card-bg: #ffffff;
  --border-subtle: #e5e7eb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius-xl: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0, var(--bg) 40%, #e5f1fb 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Kopfzeile */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1f2933;
}

.logo-mark {
  width: 48px;
  height: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.logo-mark span {
  display: block;
  width: 100%;
  height: 100%;
}

/* nur Blautöne, leicht abgestuft – kein offizielles Microsoft‑Logo */
.box-1 { background: #0078D4; }
.box-2 { background: #2b88d8; }
.box-3 { background: #71afe5; }
.box-4 { background: #c7e0f4; }

.logo span {
  font-size: 0.98rem;
}

/* Logo‑Bild: begrenze die Höhe, damit es in die Kopfzeile passt */
.logo-img {
  max-height: 48px;
  height: auto;
  width: auto;
  display: block;
}

/* Inhaltsbereich */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Nachricht‑Karte */
.message-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.message-card h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.message-card p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.message-card .signature {
  margin-top: 2rem;
  font-weight: 600;
  color: var(--text-main);
}

.message-card .contact {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.message-card .contact a {
  color: var(--accent-strong);
  word-break: break-all;
}