/* JZ Solutions GmbH — Look der Original-Seite (Divi) als statisches HTML. */
:root {
  --accent: #2ea3f2;          /* Divi-Blau */
  --hero-overlay: rgba(14, 22, 38, 0.55);
  --footer-bg: #33445d;       /* Slate-Blau wie Original-Footer */
  --ink: #4a4a4a;
  --heading: #666666;
  --maxw: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: background-color .2s, color .2s;
}
.btn-light { color: #fff; border-color: rgba(255,255,255,.85); background: transparent; }
.btn-light:hover { background: rgba(255,255,255,.12); }
.btn-blue { color: var(--accent); border-color: var(--accent); background: #fff; }
.btn-blue:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero {
  min-height: 66vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("assets/hero-code.jpg") center / cover no-repeat;
}
.hero-inner { width: 100%; }
.hero h1 {
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 1.2rem;
  letter-spacing: .01em;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

/* Kontakt */
.contact { background: #fff; padding: 84px 0; }
.contact h2 { font-weight: 300; font-size: 1.9rem; color: var(--heading); margin: 0 0 .4rem; }
.contact .lead { margin: 0 0 1.8rem; color: var(--ink); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Footer / Impressum */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,.82); padding: 72px 0 64px; }
.site-footer h2 { font-weight: 300; font-size: 1.9rem; color: rgba(255,255,255,.92); margin: 0 0 1.4rem; }
.site-footer h3 { font-weight: 700; font-size: 1rem; color: #fff; margin: 1.6rem 0 .3rem; }
.site-footer p, .site-footer address { margin: .2rem 0; font-style: normal; }
.site-footer a { color: #9fd0f7; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .hero { min-height: 58vh; }
  .contact { padding: 56px 0; }
  .contact-actions .btn { width: 100%; text-align: center; }
}
