*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, sans-serif;
  color: #222;
  background: #fff5f8;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #e91e8c, #f06292);
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(233, 30, 140, 0.3);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-title span {
  font-size: 0.9rem;
  font-weight: normal;
  opacity: 0.85;
  display: block;
}
nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav a:hover {
  color: white;
  border-bottom-color: white;
}

/* Main */
main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
}
.hero h1 {
  font-size: 2.8rem;
  color: #c2185b;
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.1);
  border-top: 4px solid #f06292;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(233, 30, 140, 0.18);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.card h2 {
  color: #c2185b;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.card p { color: #555; }

/* Einzelne Seite */
.page { max-width: 800px; }
.page h1 {
  font-size: 2rem;
  color: #c2185b;
  margin-bottom: 0.5rem;
}
.page .subtitle {
  color: #e91e8c;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}
.content p { margin-bottom: 1rem; }
.content h2 {
  color: #c2185b;
  margin: 1.5rem 0 0.5rem;
}

/* Themen-Boxen */
.themen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.thema {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(233, 30, 140, 0.08);
  border-left: 4px solid #f06292;
}
.thema h3 { color: #c2185b; margin-bottom: 0.4rem; font-size: 1rem; }
.thema p { color: #666; font-size: 0.9rem; }

/* Blog-Liste */
.post-list { list-style: none; margin-top: 1.5rem; }
.post-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid #fce4ec;
}
.post-list a {
  text-decoration: none;
  color: #c2185b;
  font-weight: 500;
  transition: color 0.2s;
}
.post-list a:hover { color: #e91e8c; }
.date {
  color: #aaa;
  font-size: 0.85rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Badge */
.badge {
  display: inline-block;
  background: #fce4ec;
  color: #c2185b;
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem;
  color: #bbb;
  font-size: 0.9rem;
  margin-top: 4rem;
  border-top: 1px solid #fce4ec;
}
footer a { color: #e91e8c; text-decoration: none; }
