/*
Theme Name: Super Simple Static Clean 3
Theme URI: https://example.com
Author: You
Version: 1.1
Description: Minimalstes statisches Theme mit Header, Main, Footer � Styles ausgelagert.
*/

:root {
  --c-header: #e6f0ff;   /* sanftes Hellblau */
  --c-main: #ffffff;     /* wei� f�r Content */
  --c-footer: #f5f7fa;   /* helles Grau */
  --text: #222;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.5;
}

header,
main,
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

header {
  background: var(--c-header);
  min-height: 100px;
}

main {
  background: var(--c-main);
  min-height: 400px;
}

footer {
  background: var(--c-footer);
  min-height: 80px;
  flex-direction: column;
  gap: 6px;
}

h1, h2, p {
  margin: 0.25em 0;
}

.wrap {
  max-width: 960px;
  width: 100%;
}
