/* ========== Grundlayout ========== */
:root {
  --accent: #b00020;
  --bg-dark: #1e1e1e;
  --bg-card: #2c2c2c;
  --text: #f8f8f8;
  --muted: #aaa;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background-color: var(--bg-dark);
  color: var(--text);
}

.container { width: 90%; max-width: 1000px; margin: 0 auto; }

/* ========== Header ========== */
header {
  background: var(--accent);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.title {
  font-weight: 700;
  font-size: 1.2em;
}

.subtitle {
  font-size: 0.9em;
  color: var(--text);
}

/* ========== Navigation ========== */
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* ========== Karten & Sektionen ========== */
.card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.section {
  margin: 40px 0;
}

.btn {
  background: #444;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}

.btn.accent {
  background: var(--accent);
}

.btn:hover {
  opacity: 0.8;
}

.tiny {
  font-size: 0.85em;
}

.muted {
  color: var(--muted);
}

/* ========== Footer ========== */
footer {
  background: #2c2c2c;
  text-align: center;
  padding: 15px;
  color: #ccc;
  margin-top: 40px;
}
