/* Poppins — lokal gehostet (DSGVO-konform, kein Google CDN) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2'),
       url('../fonts/poppins-v20-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
       url('../fonts/poppins-v20-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2'),
       url('../fonts/poppins-v20-latin-600.woff') format('woff');
}

/* Reset & Basis */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #212529;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: #013B20;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #012916;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  background: #013B20;
  padding: 0.75rem 1.5rem;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}

.header-nav a {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.95rem;
}

.header-nav a:hover {
  color: #E9E9E9;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #013B20;
  color: #ffffff;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-nav a {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #E9E9E9;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero / Startseite */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}

.hero-logo {
  width: 200px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #013B20;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: #212529;
  margin-bottom: 1.5rem;
}

.hero .message {
  font-size: 1rem;
  color: #212529;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Kontakt-Box */
.contact-box {
  background: #E9E9E9;
  border-radius: 8px;
  padding: 2rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.contact-box .contact-label {
  font-weight: 600;
  margin-right: 0.25rem;
}

/* SVG Kontaktdaten */
.svg-phone {
  display: inline-block;
  width: 165px;
  height: 24px;
  vertical-align: middle;
}

.svg-email {
  display: inline-block;
  width: 270px;
  height: 24px;
  vertical-align: middle;
}

/* Content-Seiten (Impressum, Datenschutz) */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.content-page h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #013B20;
  margin-bottom: 2rem;
}

.content-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #013B20;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.content-page h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: #013B20;
  margin-top: 0.5rem;
}

.content-page p {
  margin-bottom: 1rem;
}

.content-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.content-page ul li {
  margin-bottom: 0.3rem;
}

.content-page a {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    width: 100%;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .contact-box {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .svg-phone,
  .svg-email {
    max-width: 100%;
  }
}
