/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/open-sans-v44-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/open-sans-v44-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #02132b, #005d6d);
}

.split-view {
  display: flex;
  width: 80%;
  max-width: 1000px;
  height: 100dvh;
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: 0 6px 18px;
  background-color: #fff;
}

.split.left {
  flex: 1;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background-color: #f9fafb;
}

.split.left h1 {
  margin: 0;
  color: #111827;
  font-size: 2rem;
  font-weight: 800;
}

.split.left p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 400px;
}
.herzlich {
  font-size: 1.3rem;
  font-weight: 600;
}
.info {
  font-size: 1.4rem;
  color: #f8a712;
  font-weight: 700;
}

.split.left button {
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #0077ff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.split.left button:hover {
  background-color: #005bcc;
  transform: translateY(-4px);
}

.split.right {
  flex: 1.2;
  overflow: hidden;
}

.split.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split.right img:hover {
  transform: scale(1.05);
}

.adresse {
  display: flex;
}
@media (max-width: 800px) {
  .split-view {
    flex-direction: column;
    height: auto;
  }
  .split.right img {
    height: 300px;
  }
}
