:root{
  --bg1:#0b1220;
  --bg2:#0f1f3a;
  --card:#16243f;
  --text:#ffffff;
  --muted:#cbd5e1;
  --brand:#38bdf8;
  --radius:18px;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg,var(--bg1),var(--bg2));
  color:var(--text);
}

/* Navigation */
header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  padding:16px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

header a{
  color:white;
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  font-weight:600;
  transition:0.2s;
}

header a:hover{
  background:rgba(255,255,255,0.18);
}

header a.active{
  background:var(--brand);
  color:#0b1220;
}

/* Main container */
.container{
  max-width:1100px;
  margin:40px auto;
  padding:30px;
  background:var(--card);
  border-radius:var(--radius);
}

/* Typography */
h1{font-size:36px;margin:12px 0 10px;}
h2{margin:26px 0 10px; font-size:22px;}
p{line-height:1.7; margin: 10px 0;}
.muted{color:var(--muted);}

/* Badge */
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(56,189,248,0.16);
  border:1px solid rgba(56,189,248,0.25);
  font-weight:800;
}

/* Hero image */


/* Lists */
.facts{margin:14px 0; padding-left:18px;}
.facts li{margin:6px 0;}

/* Price highlight */
.price{
  display:inline-block;
  margin-top:6px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(56,189,248,0.15);
  border:1px solid rgba(56,189,248,0.22);
  font-weight:900;
}

/* Contact box */
.contact-box{
  margin-top:18px;
  padding:18px;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
}

/* Readable links on dark background */
.container a{
  color: var(--brand);
  font-weight:800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* PDF iframe */
iframe{
  width:100%;
  height: 78vh;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: white;
}

/* Footer */
footer{
  text-align:center;
  padding:25px;
  color:#cbd5e1;
}

/* --- Startseite Hero Layout (Bild kleiner + Text daneben) --- */
.hero{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
  align-items:start;
}

.hero-media{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px;
}

.hero-image{
  display:block;
  width:100%;
  height:auto;
  border-radius: 12px;
}

@media (max-width: 980px){
  .hero{ grid-template-columns: 360px 1fr; }
}
@media (max-width: 820px){
  .hero{ grid-template-columns: 1fr; }
}

/* --- Startseite Intro Layout --- */
.hero-intro{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
  align-items:start;
}

.hero-media{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px;
}

.hero-divider{
  margin: 30px 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}

@media (max-width: 820px){
  .hero-intro{ grid-template-columns: 1fr; }
}
