/* ============================================================
   impressum.css — Styles für pages/impressum.html
   Ocean Sentinel
   ============================================================ */

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

:root {
  --font:        'Montserrat', sans-serif;
  --bg:          #f7f8f9;
  --surface:     #ffffff;
  --border:      #e4e6ea;
  --text-dark:   #0a0a0a;
  --text-mid:    #444;
  --text-muted:  #999;
  --text-placeholder: #bbb;
  --link:        #1a6fc4;
  --header-h:    64px;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  font-family: var(--font);
  color: var(--text-dark);
}

/* ── HEADER ── */
.impressum-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.impressum-header-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.impressum-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.impressum-back:hover { color: #000; }
.impressum-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── BODY ── */
.impressum-body {
  max-width: 720px;
  margin: 48px auto 80px;
  padding: 0 24px;
}

.impressum-body h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── SECTION CARDS ── */
.impressum-section {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.impressum-section h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ── ROWS ── */
.impressum-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 16px;
  align-items: baseline;
  margin-bottom: 10px;
}
.impressum-row:last-child { margin-bottom: 0; }

.impressum-label {
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.impressum-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Platzhalter-Stil — nach dem Ausfüllen .placeholder entfernen */
.impressum-value.placeholder {
  color: var(--text-placeholder);
  font-style: italic;
  font-weight: 400;
}

.impressum-value a {
  color: var(--link);
  text-decoration: none;
}
.impressum-value a:hover { text-decoration: underline; }

.hint {
  color: var(--text-placeholder);
  font-size: 12px;
  font-style: italic;
}

/* ── FLIESSTEXT (Haftung / Urheberrecht) ── */
.impressum-prose {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .impressum-header  { padding: 0 20px; }
  .impressum-section { padding: 20px; }
  .impressum-row {
    grid-template-columns: 1fr;
    gap: 2px 0;
    margin-bottom: 14px;
  }
}