/* Velorino – Impressum & Datenschutz */

:root {
  --font-sans: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  --color-text: #1a1a1a;
  --color-text-muted: #666;
  --color-accent: #4caf50;
  --max-width: 600px;
  --spacing: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  line-height: 1.6;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  margin: 0;
  padding: var(--spacing);
  background: #fafafa;
}

.site-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 0.75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.app-name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.site-header__tagline {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 1rem 0 0;
  grid-column: 1 / -1;
}

/* Typography */
h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--color-text);
}

h1:first-of-type {
  margin-top: 0;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-text);
}

p {
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Sections */
section {
  margin-bottom: 2rem;
}

section:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.site-footer p {
  color: var(--color-text-muted);
}
