@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --yellow: #feec00;
  --navy: #06152b;
  --navy-light: #0a1d39;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
}

.banner {
  position: relative;
  max-width: 1350px;
  aspect-ratio: 1350 / 495;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: linear-gradient(90deg, #06152b 0%, #07182f 42%, #081a34 100%);
  min-height: 430px;
}

.banner__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 60% 52%, rgba(18, 71, 126, .30), transparent 34%),
    radial-gradient(circle at 95% 35%, rgba(15, 73, 132, .22), transparent 26%),
    linear-gradient(90deg, #06152b 0%, #07182f 45%, #07172d 100%);
}

.banner__background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(45, 111, 173, .25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 111, 173, .22) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent 25%, black 70%);
}

.banner__content {
  position: relative;
  z-index: 3;
  width: 42%;
  height: 100%;
  padding: 2.8% 0 2.6% 2.45%;
}

.logo {
  display: inline-flex;
  font-size: clamp(28px, 2.25vw, 42px);
  line-height: 1;
  letter-spacing: .02em;
  font-weight: 800;
}

.logo__hed {
  color: var(--yellow);
}

.logo__soft {
  color: var(--white);
}

h1 {
    margin: 6.5% 0 3.2%;
    font-size: clamp(31px, 3.05vw, 50px);
    line-height: 1.3;
    letter-spacing: -.025em;
    font-weight: 700;
    font-size: 24px;
}

h1 span {
  color: var(--yellow);
}

.intro {
    width: 95%;
    margin: 0;
    color: #f1f4f8;
    font-size: clamp(11px, 1.02vw, 15px);
    line-height: 2;
    font-weight: 600;
    font-size: 14px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 9%;
  margin-top: 26px;
}
.button {
display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 53%;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff431 0%, #f4d900 100%);
    color: #07152b;
    text-decoration: none;
    font-size: clamp(11px, .95vw, 14px);
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(254, 236, 0, .14);
    transition: transform .2s ease, box-shadow .2s ease;
    font-size: 15px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(254, 236, 0, .22);
}

.button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.daughter {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.daughter svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
}

.daughter p {
  margin: 0;
  color: #f3f5f8;
  font-size: clamp(8px, .72vw, 11px);
  line-height: 1.5;
}

.daughter strong {
  color: var(--yellow);
  font-weight: 600;
}

.banner__visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 59.1%;
  height: 100%;
  overflow: hidden;
}

.banner__visual picture,
.banner__visual img {
  display: block;
  width: 100%;

}

.banner__visual img {

}

/* Tablet */
@media (max-width: 1050px) {
  .banner {
    width: 100%;
  }

  .banner__content {
    width: 52%;
  }

  .banner__visual {
    width: 59%;
  }

  .actions {
    gap: 12%;
  }

  .button {
   
  }
}

/* Mobile: eigene, vertikale Ansicht für das Iframe */
@media (max-width: 760px) {
  .banner {
    width: 100%;
    max-width: none;
    min-height: 760px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }

  .banner__content {
    width: 100%;
    height: auto;
    padding: 28px 22px 12px;
  }

  .logo {
    font-size: 34px;
  }

  h1 {
    margin: 34px 0 18px;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.05;
  }

  .intro {
    width: 100%;
    max-width: 650px;
    font-size: 15px;
    line-height: 1.55;
  }

  .actions {
    margin-top: 26px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .button {
    width: min(100%, 315px);
    min-height: 50px;
    font-size: 14px;
  }

  .daughter p {
    font-size: 11px;
  }

  .banner__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 365px;
    margin-top: auto;
  }

  .banner__visual img {
    object-fit: cover;
    object-position: center top;
  }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
  .banner {
    min-height: 700px;
  }

  .banner__content {
    padding: 24px 18px 8px;
  }

  .logo {
    font-size: 29px;
  }

  h1 {
    margin-top: 28px;
    font-size: 34px;
  }

  .intro {
    font-size: 13.5px;
  }

  .actions {
    margin-top: 22px;
  }

  .button {
    max-width: none;
    width: 100%;
  }

  .banner__visual {
    height: 300px;
  }
}
