/* Grundlayout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f5f7;
  --card-bg: #ffffff;
  --primary: #111827;
  --accent: #3b82f6;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--primary);
  line-height: 1.5;
  padding: 24px;
}

/* Seite */
.page {
  max-width: 950px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px 32px 24px;
}

/* Header */
.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.profile h1 {
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.subtitle {
  margin-top: 4px;
  color: var(--muted);
}

.contact {
  font-size: 0.95rem;
  text-align: right;
}

.contact p {
  margin-bottom: 2px;
}

/* Inhalt */
.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 4px;
}

/* Items (Einträge) */
.item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.item:last-child {
  border-bottom: none;
}

.item-main h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.item-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.item-list {
  margin-top: 6px;
  padding-left: 18px;
  font-size: 0.92rem;
}

.item-list li {
  margin-bottom: 4px;
}

/* Skills / Sprachen / Interessen */
.skills-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag-list li {
  list-style: none;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
}

/* Footer */
.footer {
  padding-top: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 700px) {
  body {
    padding: 16px;
  }

  .page {
    padding: 20px 18px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact {
    text-align: left;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}
