.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
}

.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hero-img {
  object-position: center 35%;
}

.hero {
  padding: 0 !important;
}

.hero-content {
  padding-left: 80px;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  top: 0;
  left: 0;
  z-index: 1;
}



.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 60px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.subline {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background-color: #004a99;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
} 

.container {
  max-width: 100% !important;
  padding: 0 !important;
} 

@media (min-width: 1200px) {
  .hero {
    height: 95vh;
  }
} 

.home .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero komplett frei */
.hero {
  width: 100%;
  margin: 0;
} 

.hero {
  position: relative;
  height: 95vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.2) 100%
  );
} 



/* STARTSEITE FULL-WIDTH FIX */
body.itemid-101 .container,
body.itemid-101 .container-fluid {
  max-width: 100% !important;
  padding: 0 !important;
} 

section {
  width: 100%;
  display: block;
} 

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-img {
  object-fit: cover;
  object-position: center 35%;
}

.hero-content {
  max-width: 600px;
  margin-left: 8%;
} 

.topics,
.about,
.facts,
.cta {
  padding: 100px 8%;
} 

h1 {
  font-size: 52px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

p {
  font-size: 18px;
  line-height: 1.6;
} 

.topics {
  background: #f4f6f9;
}

.facts {
  background: #1E2A38;
  color: #fff;
}

.cta {
  background: #004a99;
  color: #fff;
} 

:root {
  --primary: #0B3C5D;     /* Dunkelblau = Autorität */
  --secondary: #1E2A38;   /* Dunkelgrau = Stabilität */
  --accent: #C00000;      /* Rot = Klarheit / Signal */
  --light: #F4F6F9;       /* Hintergrund */
  --white: #FFFFFF;
} 

body {
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
} 

img {
  filter: contrast(1.05) brightness(0.95);
} 

.hero-img {
  filter: contrast(1.1) brightness(0.85);
} 

.btn-primary {
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.btn-primary:hover {
  background: #a00000;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
} 

section {
  padding: 100px 8%;
}

.container-clean {
  max-width: 1200px;
  margin: auto;
} 

.topic {
  border-left: 4px solid var(--primary);
  transition: 0.2s;
}

.topic:hover {
  transform: translateY(-5px);
} 

.image-overlay {
  position: relative;
}

.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
} 

.header {
  background: rgba(0,0,0,0.85);
  position: fixed;
  width: 100%;
} 

