/* base.css - Minimaler Reset und Navigation */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  background: #f1f5f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: #7373eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: #6b7baa;
  color: white;
  padding: 1rem 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: #ccccb8;
  padding: 0.5rem;
}

nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
