/* ==========================================================================
   albrecht cine.film.solutions — minimal site styles
   Palette & type aligned with the 2026 web-app (green accent, Nunito, light).
   ========================================================================== */

/* ---- Nunito (locally hosted) ---- */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../font/nunito/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../font/nunito/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --bg:          #f0f2f5;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --text:        #1a202c;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --accent:      #00B76D;
  --accent-h:    #00a661;
  --radius:      8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-h); }

/* ---- Site header (logo only) ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
}
.site-header a { display: inline-block; }
.site-header img { height: 34px; width: auto; display: block; }

/* ==========================================================================
   Landing — centered message
   ========================================================================== */
.landing {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 80px;
}
.landing-inner {
  max-width: 820px;
  text-align: center;
}
.landing .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.landing p {
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.2px;
  color: var(--text-muted);
}
.landing p + p { margin-top: 24px; }
.landing .brand {
  font-weight: 700;
  color: var(--text);
}
.landing .contact {
  margin-top: 40px;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */
.legal {
  flex: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 8px 24px 72px;
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 44px;
}
.legal h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.4px;
  margin-bottom: 6px;
}
.legal .lead {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 16px; font-weight: 700; margin: 20px 0 6px; }
.legal h4 { font-size: 14px; font-weight: 700; color: var(--text-muted); margin: 14px 0 4px; }
.legal p  { margin-bottom: 12px; font-size: 15px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; font-size: 15px; }
.legal li { margin-bottom: 4px; }
.legal strong { font-weight: 700; }
.legal .addr { line-height: 1.7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 26px 20px;
}
.footer-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-inner nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-inner .company { font-weight: 600; color: var(--text); }

@media (max-width: 560px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .legal-card { padding: 28px 22px; }

  .site-header { padding: 22px 20px; }
  .site-header img { height: 28px; }

  .landing { padding: 16px 20px 56px; }
  .landing .eyebrow { margin-bottom: 18px; }
  .landing p { font-size: 19px; line-height: 1.45; }
  .landing p + p { margin-top: 18px; }
  .landing .contact { margin-top: 30px; }
}
