/* ====================== GRUNDSTIL ====================== */
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Regular"),
    url("fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf")
      format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Regular"),
    url("fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf")
      format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #1c1c1c;
  line-height: 1.6;
  background: #fff;
}

.image-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  margin: 0 auto;
}
strong {
  color: #ff8c00;
}

/* ====================== NAVIGATION ====================== */
header {
  background: rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

.logo img {
  height: 40px;
}

/* Menü-Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #004b9b;
}

/* Primärer Button */
.btn-primary {
  background: #2a79c5;
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 42px;
  font-weight: bold;
  font-size: 16px;
}

.btn-primary:hover {
  background: #003b7a;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #004b9b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animation für geöffnetes Menü */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ====================== HERO ====================== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1;
  padding: 0px 60px 0px 92px;
}

.hero-text h1 {
  font-size: 74px;
  font-weight: bold;
  line-height: 1.3;
}

.hero-text span {
  color: #ff8c00;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  height: 700px;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
}

/* ====================== ÜBER UNS ====================== */
.about {
  background: #0f2d53;
  color: white;
  text-align: center;
  padding: 80px;
}

.about h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.overline {
  text-transform: uppercase;
  font-size: 12px;
}

/* ====================== SERVICES ====================== */
.services {
  background: white;
  padding: 80px;
  text-align: center;
  color: #fff;
}

.services h2 {
  color: #1c1c1c;
  padding: 0px 0px 32px 0px;
}

.three-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.col {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  background: #2a79c5;
  padding: 30px;
  border-radius: 10%;
  text-align: center;
}

/* ====================== CTA ====================== */
.cta {
  background: #0f2d53;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta h2 {
  font-size: 24px;
}

.cta span {
  color: #ff8c00;
}

.cta a {
  display: inline-block;
  margin-top: 32px;
  text-decoration: none;
}

/* ====================== ZIELGRUPPE ====================== */
.target .container {
  margin: 0%;
  width: 100%;
}

.two-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6rem;
}

.two-cols .image {
  flex: 1;
}

.two-cols .text {
  flex: 1;
}

.two-cols .text h2 {
  font-size: 40px;
  color: #0f2d53;
  line-height: 1.4;
  padding-right: 92px;
}

.two-cols .text span {
  color: #ff8c00;
}

/* ====================== LIEFERSERVICE ====================== */
.delivery {
  background: #2274d1;
  color: #1c1c1c;
  text-align: center;
  padding: 5rem 1.5rem;
}

.delivery .col {
  background: white;
}
.delivery .col p h3 {
  color: #003b7a;
}

.delivery h2 {
  margin-bottom: 40px;
  color: #fff;
}

/* ====================== MAP ====================== */
.map {
  padding: 80px 92px;
}

.map .two-cols {
  align-items: flex-start;
}

.map h2 {
  color: #0f2d53;
  margin-bottom: 32px;
}

/* ====================== FOOTER ====================== */
footer {
  background: #0f2d53;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}
.footer-text {
  color: #fff;
}
.impressum-inhalt {
  margin: 92px;
}
.impressum-headline {
  margin-top: 32px;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0f2d53;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* ====================== RESPONSIVE DESIGN ====================== */
@media (max-width: 900px) {
  /* Navigation */
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #0f2d53;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    color: white;
  }

  .btn-primary {
    background: #ff8c00;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding: 2rem 1.5rem;
  }

  /* About */
  .about {
    padding: 3rem 1rem;
  }

  /* Services */
  .three-cols {
    flex-direction: column;
  }
  .two-cols .text h2 {
    padding-right: 40px;
  }

  /* Zielgruppe */
  .two-cols {
    flex-direction: column;
  }

  .text {
    margin-left: 42px;
    margin-bottom: 60px;
    text-align: center;
  }

  /* Map */
  .map .two-cols {
    flex-direction: column;
    gap: 2px;
  }
  .map {
    padding: 42px 40px 0px 0px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .cta h2 {
    font-size: 1.3rem;
  }

  .two-cols .text h2 {
    font-size: 1.3rem;
  }
}
