/* ===============================
   BASIS
=============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #1e1f22;
  color: #f4f2ea;
  font-family: Georgia, "Times New Roman", serif;
}

/* ===============================
   NAVIGATION
=============================== */

.nav {
  position: fixed;
  top: 20px;
  left: 20px;
}

.nav-btn {
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  color: #f4f2ea;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.22);
}

/* ===============================
   IMPRESSUM
=============================== */

.imprint {
  max-width: 800px;
  margin: 140px auto 80px;
  padding: 0 40px;
}

.imprint h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.imprint h2 {
  font-size: 1.4rem;
  margin: 28px 0 10px;
}

.imprint p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6e3d8;
}

.imprint a {
  color: #f0d38a;
  text-decoration: none;
}

.imprint a:hover {
  text-decoration: underline;
}
