/* Grundlayout – Projektseiten */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7f9; /* leicht ruhiger als Startseite */
  color: #1f2933;
  margin: 0;
  padding: 2rem 1rem;
}

.container {
  max-width: 760px;
  margin: 0 auto;
}

.project {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Typografie */

h1 {
  margin-top: 0;
  font-size: 2rem;
}

h2 {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  color: #374151;
}

p,
li {
  line-height: 1.6;
  font-size: 1rem;
}

ul {
  padding-left: 1.2rem;
}

/* Kleine Details */

.project p:first-of-type {
  font-size: 1.05rem;
  color: #374151;
}

.project-nav {
  margin-bottom: 1.5rem;
}

.back-link {
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: none;
}

.subtitle {
  margin-top: -0.5rem;
  color: #6b7280;
  font-size: 1rem;
}

/* Zurück-Button */
.back-link:hover {
  text-decoration: underline;
}

.back-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.back-button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #374151;
  background: #f3f4f6;
  text-decoration: none;
}

.back-button:hover {
  background: #e5e7eb;
}


