/* ============================================================
   Leipzig Health Forum — style.css
   Coming-Soon-Landingpage
   Design abgeleitet vom MITCenter-CD
   ============================================================ */

/* === FONTS (self-hosted, DSGVO-konform — kein Google CDN) === */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === DESIGN TOKENS (aus MITCenter-CD) === */
:root {
  --color-primary:    #0F2830;
  --color-blue:       #008AC9;
  --color-blue-dark:  #006FA3;
  --color-accent:     #00737A;
  --color-accent-dark:#005A60;
  --color-bg:         #FFFFFF;
  --color-text:       #1A1A1A;
  --color-text-muted: #6B7280;
  --font-base:        'Inter', system-ui, sans-serif;
  --radius:           6px;
  --max-width:        720px;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* === LAYOUT === */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf7f5 0%, #ffffff 78%);
}
.page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
}

/* Dekorative Bogen-Ornamente, wie im MITCenter-Hero */
.arc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.arc--a {
  width: 420px; height: 420px;
  background: rgba(112,195,180,0.42);
  right: -160px; top: -180px;
}
.arc--b {
  width: 260px; height: 260px;
  background: rgba(0,115,122,0.22);
  left: -110px; bottom: -140px;
}

.content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 1.25rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.subline {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 0.625rem 1.375rem;
  box-shadow: 0 4px 14px rgba(15,40,48,0.14);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.contact {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.contact a {
  color: var(--color-blue);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.contact a:hover {
  color: var(--color-blue-dark);
  border-bottom-color: currentColor;
}

.affil {
  margin-top: 3.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.affil strong { color: var(--color-primary); }
.affil a {
  color: var(--color-blue);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.affil a:hover {
  color: var(--color-blue-dark);
  border-bottom-color: currentColor;
}

@media (max-width: 639px) {
  .arc--a { width: 240px; height: 240px; right: -90px; top: -110px; }
  .arc--b { width: 160px; height: 160px; left: -70px; bottom: -90px; }
  h1 {
    font-size: clamp(1.5rem, 7.5vw, 2.25rem);
    overflow-wrap: break-word;
  }
  .content { width: 100%; }
}

/* === IMPRESSUM === */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.imprint-hero {
  background: var(--color-blue);
  padding: 3rem 0 2.5rem;
}
.imprint-hero h1 {
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0;
}
.breadcrumb {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.90); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 0.375rem; opacity: 0.5; }

.imprint-body { padding: 3rem 0 5rem; }
.imprint-section { margin-bottom: 2.25rem; }
.imprint-section h2 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15,40,48,0.10);
}
.imprint-section p,
.imprint-section address {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.8;
}
.imprint-section a { color: var(--color-accent-dark); }
.imprint-section a:hover { text-decoration: underline; }

.imprint-footer {
  border-top: 1px solid rgba(15,40,48,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.imprint-footer a { color: var(--color-blue); font-weight: 600; }
.imprint-footer a:hover { color: var(--color-blue-dark); }
