/* Grundlayout */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #002e5d; /* dunkelblau aus dem Logo */
}

/* Landingpage */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 48px 16px 32px;
}

.header {
  text-align: center;
  margin-top: 8px;
}

.header-icon {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
}

.intro-text {
  font-size: 0.9rem;
  margin: 0;
}

.main {
  text-align: center;
}

.logo {
  max-width: 260px;
  width: 60vw;
  height: auto;
  margin-bottom: 12px;
}

.company-name {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.accent {
  color: #ef7900; /* Orange-Ton aus dem Logo */
}

.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #002e5d;
}

.mail-link:hover,
.mail-link:focus {
  text-decoration: underline;
}

.mail-icon {
  width: 18px;
  height: auto;
}

/* Footer der Landingpage */

.footer {
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.4;
}

.contact {
  margin: 0 0 8px;
}

.impressum-link {
  margin: 0;
}

.impressum-link a {
  text-decoration: none;
  color: #002e5d;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impressum-link a:hover,
.impressum-link a:focus {
  text-decoration: underline;
}

/* Impressumsseite */

.impressum-body {
  background: #ffffff;
  color: #002e5d;
}

.impressum-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 16px 40px;
}

.impressum-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.impressum-logo {
  width: 140px;
  height: auto;
}

.impressum-header h1 {
  font-size: 1.6rem;
  margin: 0;
}

.impressum-content {
  font-size: 0.95rem;
  line-height: 1.5;
}

.impressum-content section {
  margin-bottom: 20px;
}

.impressum-content h2 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.impressum-content a {
  color: #002e5d;
  text-decoration: underline;
}

.impressum-footer {
  margin-top: 24px;
  font-size: 0.85rem;
}

.impressum-footer a {
  color: #002e5d;
  text-decoration: none;
}

.impressum-footer a:hover,
.impressum-footer a:focus {
  text-decoration: underline;
}

/* einfache Mobile-Anpassung */

@media (max-width: 480px) {
  .page {
    padding: 32px 12px 24px;
  }

  .logo {
    width: 70vw;
  }

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

  .impressum-logo {
    width: 120px;
  }
}
