/*
Theme Name: DHO Mockup Final
Version: 1.0.7
*/

:root{
  --text:#0b0f17;
  --muted:#5b6675;
  --primary:#0f50ab;
  --border:#e2e8f0;
  --container:1180px;
}

html{scroll-padding-top:96px}
*{box-sizing:border-box}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial;
  color:var(--text);
  background:#fff;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ================= HEADER ================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:#fff;
  padding:16px 0;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{height:32px;width:auto}

.nav{
  display:flex;
  gap:26px;
}
.nav a{
  text-decoration:none;
  font-weight:650;
  color:var(--text);
  opacity:.9;
}
.nav a:hover{opacity:1}

.header-actions{
  display:flex;
  gap:12px;
}

/* Buttons */
.btn{
  padding:12px 20px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .12s ease, filter .12s ease;
}
.btn:hover{transform:translateY(-1px);filter:brightness(1.03)}

.btn-primary{
  background:var(--primary);
  color:#fff;
}
.btn-light{
  background:#f1f4f8;
  color:#000;
  border:1px solid #dfe6ee;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height:78vh;
  background:#071c6d;
  overflow:hidden;
}

/* Background image */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("assets/images/hero-bg.jpg") center right / cover no-repeat;
  transform:scale(1.02);
}

/* Overlay -> etwas weniger aggressiv + klarer Verlauf */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(7,28,109,.92) 0%,
    rgba(7,28,109,.84) 38%,
    rgba(7,28,109,.52) 62%,
    rgba(7,28,109,.12) 82%,
    rgba(7,28,109,0) 100%
  );
}

/* Content layer */
.hero .container{
  position:relative;
  z-index:2;
  padding-top:240px;
  padding-bottom:160px;
  max-width:var(--container);
}

/* Text: jetzt wirklich weiß + mit Shadow */
.hero h1{
  margin:0;
  font-size:68px;
  line-height:1.04;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:950;
  color:#ffffff !important;
  text-shadow:
    0 2px 10px rgba(0,0,0,.35),
    0 10px 40px rgba(0,0,0,.25);
}

.hero p{
  margin-top:18px;
  max-width:680px;
  font-size:16px;
  font-weight:750;
  color:rgba(255,255,255,.92) !important;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}

/* Hero actions */
.hero .actions{
  margin-top:28px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Buttons im Hero etwas „poppiger“ */
.hero .btn-primary{
  box-shadow:0 18px 40px rgba(15,80,171,.30);
}
.hero .btn-light{
  background:rgba(255,255,255,.92);
  border-color:rgba(255,255,255,.65);
}

/* ================= CONTENT ================= */
main{
  padding:80px 0;
}

/* simple section styling */
main h2{
  margin:0 0 10px 0;
  font-size:28px;
  font-weight:900;
  letter-spacing:.02em;
}
main p{
  margin:0;
  color:#4b5563;
  font-weight:650;
}

/* ================= RESPONSIVE ================= */
@media (max-width:980px){
  .nav{display:none}
  .hero h1{font-size:44px;letter-spacing:.06em}
  .hero .container{padding-top:200px;padding-bottom:120px}
}
