
:root {
  --rs-blue: #1B3FA0;
  --rs-dark: #111111;
  --rs-light: #f7f8fa;
  --rs-white: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--rs-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* NAV */
.nav {
  background: var(--rs-white);
  border-bottom: 2px solid var(--rs-blue);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; font-size: 0.9rem; font-weight: 500; }
.nav-links a { color: var(--rs-dark); transition: color 0.2s; }
.nav-links a:hover { color: var(--rs-blue); }

/* FOOTER */
.footer {
  background: var(--rs-dark);
  color: #999;
  padding: 1.5rem 2rem;
  margin-top: auto;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #999; transition: color 0.2s; }
.footer-links a:hover { color: #ccc; }
.footer-powered { color: #666; }
.footer-powered a { color: #999; }
.footer-powered a:hover { color: #ccc; }

/* SECTION */
.section { padding: 4rem 2rem; }
.section-light { background: var(--rs-light); }
.section-white { background: var(--rs-white); }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }
.section-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--rs-dark); }
.accent-line { width: 40px; height: 3px; background: var(--rs-blue); margin-bottom: 2rem; }
.accent-line-wide { width: 60px; height: 3px; background: var(--rs-blue); margin-bottom: 1.5rem; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--rs-light) 0%, var(--rs-white) 100%); padding: 5rem 2rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.hero-photo {
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  object-fit: cover;
  width: 280px;
  height: 350px;
}
.hero-text { flex: 1; min-width: 300px; }
.hero-label {
  color: var(--rs-blue);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--rs-dark);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  max-width: 520px;
}
.hero-buttons { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--rs-blue);
  color: white;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: #152e7a; }
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--rs-blue);
  color: var(--rs-blue);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--rs-blue); color: white; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  padding: 2rem;
  background: var(--rs-light);
  border-radius: 6px;
  border-left: 3px solid var(--rs-blue);
}
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--rs-dark); }
.card p { font-size: 0.95rem; color: #555; line-height: 1.7; }

/* KONTAKT */
.kontakt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.kontakt-grid .label { font-weight: 600; margin-bottom: 0.5rem; }
.kontakt-grid p { color: #555; line-height: 1.8; }
.kontakt-grid a { color: var(--rs-blue); }
.kontakt-grid a:hover { text-decoration: underline; }

/* VITA */
.vita-header {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.vita-photo {
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  width: 200px;
  height: 250px;
}
.vita-intro { flex: 1; min-width: 300px; }
.vita-entry {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  align-items: baseline;
}
.vita-entry:last-child { border-bottom: none; }
.vita-year {
  flex: 0 0 120px;
  font-weight: 600;
  color: var(--rs-blue);
  font-size: 0.95rem;
}
.vita-text { color: #444; line-height: 1.6; font-size: 1rem; }

/* LEGAL */
.legal h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; margin-top: 1.5rem; }
.legal h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; margin-top: 1rem; }
.legal p { line-height: 1.8; color: #444; font-size: 0.95rem; }

/* BUEROGEMEINSCHAFT */
.buero-text { font-size: 1rem; color: #555; line-height: 1.8; max-width: 800px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 3rem 1.5rem; }
  .hero-inner { gap: 2rem; }
  .hero-photo { width: 200px; height: 250px; }
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 1rem; }
  .nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; font-size: 0.8rem; }
  .section { padding: 3rem 1.5rem; }
  .vita-header { gap: 1.5rem; }
  .vita-photo { width: 150px; height: 190px; }
  .vita-entry { gap: 1rem; flex-direction: column; }
  .vita-year { flex: none; }
}
@media (max-width: 480px) {
  .hero-photo { width: 160px; height: 200px; }
  .hero-title { font-size: 1.4rem; }
  .nav-inner { height: 60px; }
  .nav-logo img { height: 38px; }
  .nav-links { gap: 0.75rem; font-size: 0.75rem; }
}
