
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background: #1f3155;
}

/* Layout */
.hero {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Linke Seite (Bild mit Schräge) */
.hero-image {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Schräge Form */
    clip-path: polygon(0 0, 63% 0, 100% 100%, 0 100%);
}

/* Logo */
.logo {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #2b6cb0;
  font-weight: bold;
  font-size: 24px;
}

.logo img{
  clip-path: none;
  object-fit:contain;
  width: 100px;
  height: 65px;
}

/* Rechte Seite */
.hero-content {
  width: 60%;
  background: #1f3155;
  color: white;
  position: absolute;
  right: 0;
  top: 30%;
  background: transparent;
}

/* Headline */
.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  padding-left: 40px;
  font-weight: 600;
}

.hero-content p {
  font-size: 20px;
  padding-left: 40px;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Kontaktbox */
.contact-box {
  background: #d4a24c;
  padding: 40px;
  color: white;
}

.contact-box h2 {
  margin-bottom: 20px;
}

/* Kontakte */
.contacts {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contacts p{
  padding: 0;
  margin: 0;
  font-size: inherit;
  line-height: normal;
}

.contacts-svg {
  width: 16px;
  fill: white;
}

.divider {
  width: 2px;
  height: 60px;
  background: white;
}


/* =========================
   MOBILE (Tablet & Phone)
   ========================= */
@media (max-width: 900px) {

  .hero {
    flex-direction: column;
  }

  /* Bild oben */
  .hero-image {
    width: 100%;
    height: 300px;
  }

  .hero-image img {
    clip-path: none; /* Schräge entfernen */
  }
  .logo {
      top: 10px;
      left: 10px;
  }
  /* Content darunter */
  .hero-content {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    top: 40%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* Kontaktbox */
  .contact-box {
    padding: 20px;
    text-align: center;
  }

  .contacts {
    flex-direction: column;
    gap: 20px;
  }

  .divider {
    display: none; /* Linie entfernen */
  }
}


/* =========================
   EXTRA SMALL (Handy)
   ========================= */
@media (max-width: 500px) {

  .hero-image {
    height: 220px;
  }

  .hero-content {
    top: 30%;
  }
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .contact-box h2 {
    font-size: 18px;
  }
}