/* ===== Lato lokal einbinden (TTF) ===== */
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/font/lato/Lato-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ===== Basis-Styles ===== */
body {
  background-color: #e9e8e4;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;               /* kleiner für Fließtext */
  line-height: 1.6;
  margin: 0;
  color: #333;
}

/* ===== Landing Page ===== */
#logo-wrapper {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 80vh;
  justify-content: center;
  align-items: center;
}

#logo {
  object-fit: cover;
  width: 200px;
}

#cs {
  margin-top: 0px;
  color: #79726c;
}

/* ===== Privacy-Page Layout ===== */
#content {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 5vw;
  box-sizing: border-box;
}

.card {
  max-width: 640px;              /* etwas schmaler für bessere Lesbarkeit */
  background: transparent;
  text-align: left;              /* Fließtext linksbündig */
}

h1 {
  margin: 0 0 1.25rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.2rem;             /* sichtbar größer als Body */
  font-weight: 700;
  color: #222;
}

p, li {
  margin: 0.4rem 0;
  font-size: 1rem;               /* angenehme Lesbarkeit */
}

ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

ul li::before {
  content: "• ";
  color: #79726c;
}

hr {
  border: 0;
  height: 1px;
  opacity: 0.25;
  background: currentColor;
  margin: 1.5rem 0;
}

a {
  color: inherit;
  text-decoration: underline;
}

small {
  opacity: 0.8;
  font-size: 0.9rem;
}
