/* style.css – gemeinsame Styles für alle INNOVIA-Unterseiten
   (Portfolio-/Zielgruppen-Seiten sowie Impressum/Datenschutz).
   index.html hat weiterhin eigenes CSS, da strukturell abweichend. */

body {
  margin: 0;
  font-family: 'Areal', Arial, sans-serif;
  color: #1a2744;
  background: #fff;
}

a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #d4af37;
  outline-offset: 2px;
}

/* Skip-to-content-Link: unsichtbar, nur bei Focus sichtbar */
a.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #d4af37;
  color: #1a2744;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
}
a.skip-to-content:focus {
  left: 0;
  right: auto;
}

/* --- Hero (Portfolio-/Zielgruppen-Seiten) --- */
.page-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 200px;
  max-height: 420px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
}
.page-hero-overlay {
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 35%, rgba(0,0,0,0.05) 100%);
  padding: 40px 20px 22px;
  text-align: center;
  box-sizing: border-box;
}
.page-hero h1 {
  color: #fff;
  font-size: 1.6em;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin: 0;
  max-width: 700px;
  display: inline-block;
}

/* --- Hero (Impressum/Datenschutz) --- */
.simple-hero {
  background: #003d6b;
  color: #fff;
  padding: 40px;
  text-align: center;
}
.simple-hero h1 { margin: 0; font-size: 1.8em; letter-spacing: 1px; }

section { padding: 50px 40px; max-width: 800px; margin: 0 auto; }
section p { line-height: 1.6; }
h3 { margin-top: 25px; font-size: 1.1em; }

a.back { display: inline-block; margin: 24px 40px 0; color: #1a2744; text-decoration: none; font-weight: bold; }
a.back:hover { color: #1a2744; text-decoration: underline; border-bottom: 2px solid #d4af37; padding-bottom: 2px; }

footer { background: #003d6b; color: #fff; padding: 25px 40px; text-align: center; font-size: 0.9em; }
footer a { color: #d4af37; text-decoration: none; margin: 0 8px; }

.lang-switch {
  background: #f4f2ee;
  color: #1a2744;
  border: 1px solid rgba(26,39,68,0.25);
  border-radius: 4px;
  font-size: 0.78em;
  padding: 5px 6px;
  cursor: pointer;
  font-family: 'Areal', Arial, sans-serif;
}
.page-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 40px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.page-topbar a.back { margin: 0; }

/* --- Datenschutz: Rechte-Liste und Widerspruchs-Hinweis --- */
.dsg-list { margin: 10px 0 16px 0; padding-left: 0; list-style: none; }
.dsg-list li { padding-left: 22px; position: relative; margin-bottom: 9px; line-height: 1.5; }
.dsg-list li::before { content: "\2013"; position: absolute; left: 0; color: #d4af37; font-weight: bold; }
.dsg-widerspruch {
  border: 2px solid #2b6cb8;
  background: #eef4fb;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 14px 0 18px 0;
  line-height: 1.6;
  font-weight: bold;
}
