/* Elvatis - Legal-Seiten (Impressum / Datenschutz). Dark Navy, lokal, keine externe Abhaengigkeit. */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/inter-400.woff2') format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/inter-500.woff2') format('woff2')}

:root{
  --bg:#07111F; --bg-2:#050B16; --bg-card:rgba(255,255,255,0.04);
  --text:#F5FAFF; --text-muted:#C7D4E8;
  --accent:#22B4FF; --accent-700:#1A8FD4;
  --border:rgba(143,213,236,0.16); --radius:12px;
}
*{box-sizing:border-box}
body{
  margin:0; font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  color:var(--text); line-height:1.7;
  background:radial-gradient(1100px 600px at 80% -10%, rgba(34,180,255,0.08), transparent 60%), linear-gradient(180deg,var(--bg) 0%, var(--bg-2) 100%);
  background-attachment:fixed; min-height:100vh; -webkit-font-smoothing:antialiased;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:0 28px}

/* Nav */
.nav{position:sticky;top:0;z-index:30;background:rgba(7,17,31,0.82);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:66px}
.logo{display:inline-flex;align-items:center}
.logo img{height:36px;width:auto;display:block}
.nav-links{display:flex;align-items:center;gap:26px;list-style:none;margin:0;padding:0}
.nav-links a{color:var(--text-muted);font-size:0.93rem;font-weight:500}
.nav-links a:hover{color:var(--text);text-decoration:none}
.btn-nav{padding:0.5rem 1.1rem;border:1px solid var(--border);border-radius:7px;color:var(--text) !important}
.btn-nav:hover{border-color:var(--accent);color:#BEEAFF !important;text-decoration:none}

/* Footer */
.footer{border-top:1px solid var(--border);margin-top:4rem;padding:2.2rem 0;background:var(--bg-2)}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer-brand{display:flex;align-items:center;gap:10px;color:var(--text);font-weight:500}
.footer-brand img{height:28px;width:auto}
.footer-links{display:flex;gap:20px}
.footer-links a{color:var(--text-muted);font-size:0.9rem}
.footer-links a:hover{color:var(--accent);text-decoration:none}
.footer-copy{color:var(--text-muted);font-size:0.85rem}

@media(max-width:640px){
  .nav-links{gap:14px;font-size:0.85rem}
  .footer-inner{flex-direction:column;align-items:flex-start;gap:12px}
}
