:root {
  --accent-dark: #1a1f36;
  --text-light: #ffffff;
  --text-dark: #1e1e1e;
  --bg-light: #f8f8f8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
}

html, body {
  height: 100%;
}

body.has-bg {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

body.has-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url('pastell-hintergrund.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}

header {
  background: var(--accent-dark);
  color: var(--text-light);
  padding: 2em 1em;
  text-align: left;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 0 1em;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bg-light);
  letter-spacing: -0.5px;
}

nav {
  margin-top: 1em;
}

nav a {
  color: var(--text-light);
  margin-right: 1.5em;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 5em 1em 4em;
  text-align: left;
}

.hero h1 {
  font-size: 2.8em;
  font-weight: 800;
  margin-bottom: 0.4em;
}

.hero p {
  font-size: 1.25em;
  max-width: 600px;
  margin-bottom: 1.5em;
}

.button {
  background: var(--accent-dark);
  color: white;
  padding: 0.75em 1.5em;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

section {
  padding: 4em 1em;
}

section h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 1em;
}

section p,
section ul {
  font-size: 1.1em;
  margin-bottom: 1em;
  max-width: 800px;
}

ul {
  padding-left: 1.2em;
}

footer {
  background: var(--accent-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2em;
  font-size: 0.95em;
}

footer a {
  color: #d1ecff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.card {
  background: #ffffffcc;
  border-radius: 12px;
  padding: 2.5em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero p,
  section p,
  section ul {
    font-size: 1em;
  }
}
