/* =========================================================
   Dirk Limmer – Autorenseite | packs GmbH / packster.de
   CI: Ubuntu, Lime #b4eb14, Petrol #00aba9
   ========================================================= */

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/ubuntu-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ubuntu-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ubuntu-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/ubuntu-latin-700-normal.woff2') format('woff2');
}

:root {
  --lime: #b4eb14;
  --petrol: #00aba9;
  --ink: #111111;
  --text: #2a2a2a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f3f4f4;
  --card: #ffffff;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  --maxw: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--petrol);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 56px 0;
}

.section-soft {
  background: var(--bg-soft);
}

h2.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--bg-soft);
  border-bottom: 4px solid var(--lime);
  padding: 48px 0 40px;
}

.hero-inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-photo {
  flex: 0 0 auto;
  width: 110px;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
  background: #d9d9d9;
}

.hero-body {
  flex: 1;
  min-width: 280px;
}

.hero-body h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-role {
  font-weight: 500;
  color: var(--ink);
  margin-top: 4px;
  font-size: 1.05rem;
}

.hero-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--petrol);
  color: var(--petrol);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--bg);
  transition: all 0.18s ease;
}
.btn:hover {
  background: var(--petrol);
  color: #fff;
  text-decoration: none;
}
.btn .arrow {
  font-size: 0.85em;
}

.hero-bio {
  color: var(--text);
  max-width: 640px;
  font-size: 0.97rem;
}

/* ---------- FEATURE CARDS ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lime);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- ÜBER PACKSTER ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-lead {
  color: var(--petrol);
  font-weight: 700;
  font-size: 1rem;
  margin: 14px 0 14px;
}

.about-text {
  color: var(--text);
  font-size: 0.96rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.usp {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: 8px;
  padding: 16px 18px;
}
.usp h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.usp h4::before {
  content: "✔ ";
  color: var(--petrol);
}
.usp p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* ---------- KOMPETENZEN ---------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  color: var(--text);
}

/* ---------- RATGEBER ---------- */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.article-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.article-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.article-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}
.article-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--petrol);
}
.article-link::after {
  content: " \2192";
}

/* ---------- WEB-REFERENZEN ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.ref-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.badge {
  background: var(--ink);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 6px;
  text-transform: uppercase;
}
.ref-source {
  font-size: 0.82rem;
  color: var(--muted);
}
.ref-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ref-card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.ref-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--petrol);
}
.ref-link::after {
  content: " \2197";
}

/* ---------- TIMELINE / BERUFSERFAHRUNG ---------- */
.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.tl-item {
  position: relative;
  margin-bottom: 18px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--bg);
}
.tl-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.tl-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.tl-org {
  color: var(--petrol);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: 2px;
}
.tl-date {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2px;
}
.tl-desc {
  color: var(--text);
  font-size: 0.9rem;
  margin-top: 10px;
}
.tl-desc ul {
  margin: 6px 0 0 18px;
}
.tl-desc li {
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.current-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- AUSBILDUNG ---------- */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.edu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--lime);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.edu-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.edu-field {
  color: var(--petrol);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: 2px;
}
.edu-date {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}
.edu-note {
  font-style: italic;
  color: var(--text);
  font-size: 0.88rem;
  margin-top: 8px;
}

/* ---------- GRÜNDERTEAM ---------- */
.founder-text {
  max-width: 640px;
  color: var(--text);
  font-size: 0.96rem;
  margin-bottom: 24px;
}
.founder-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.founder {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 22px 14px 16px;
  min-width: 220px;
}
.founder.highlight {
  border-color: var(--lime);
  border-width: 2px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex: 0 0 auto;
}
.founder-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.founder-role {
  color: var(--muted);
  font-size: 0.84rem;
}

/* ---------- LEGAL PAGES ---------- */
.legal-header {
  background: var(--bg-soft);
  border-bottom: 4px solid var(--lime);
  padding: 32px 0;
}
.legal-header a.back {
  font-size: 0.9rem;
  font-weight: 500;
}
.legal-header a.back::before {
  content: "← ";
}
.legal {
  padding: 48px 0 64px;
}
.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.legal p {
  font-size: 0.96rem;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 760px;
}
.legal .address {
  line-height: 1.7;
}
.legal a {
  color: var(--petrol);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: #c9cdd2;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--petrol);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.9rem;
  color: #c9cdd2;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-col a {
  display: block;
  color: var(--petrol);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-col a:hover {
  color: var(--lime);
  text-decoration: none;
}
.footer-col .footer-plain {
  color: #c9cdd2;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid #2a2f36;
  margin-top: 44px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #8b9097;
}
.footer-bottom a {
  color: #8b9097;
}
.footer-bottom a:hover {
  color: var(--lime);
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .feature-grid,
  .ref-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .article-grid,
  .edu-grid,
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    gap: 20px;
  }
  .hero-body h1 {
    font-size: 1.6rem;
  }
  section {
    padding: 40px 0;
  }
  .current-badge {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }
}
