* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #02050a;
}

body {
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #02050a;
  overflow: hidden;
}

.landing-image {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
}

/* Kontakt-Link */
.contact-link {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 10;

  padding: 12px 20px;
  border: 1px solid rgba(120, 230, 255, 0.35);
  border-radius: 999px;

  color: #dffaff;
  background: rgba(2, 8, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: rgba(0, 180, 220, 0.18);
  border-color: rgba(120, 230, 255, 0.75);
}

.contact-link:focus-visible {
  outline: 2px solid #6fffd2;
  outline-offset: 4px;
}

/* Große Desktop-Bildschirme */
@media (min-width: 1400px) {
  .landing-image {
    object-position: center center;
  }

  .contact-link {
    top: 36px;
    right: 44px;
    padding: 13px 24px;
    font-size: 16px;
  }
}

/* Laptop / kleinere Desktop-Bildschirme */
@media (max-width: 1200px) {
  .landing-image {
    object-position: center center;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .landing-image {
    object-position: center center;
  }

  .contact-link {
    top: 22px;
    right: 24px;
    padding: 11px 18px;
    font-size: 14px;
  }
}

/* Smartphone */
@media (max-width: 600px) {
  body {
    overflow: hidden;
  }

  .landing {
    min-height: 100svh;
  }

  .landing-image {
    height: 100svh;
    object-fit: cover;

    /*
      Wichtig:
      Falls der Terminal-Bereich auf dem Handy zu weit rechts/links abgeschnitten wird,
      kannst du diesen Wert ändern:
      center center
      left center
      right center
      60% center
      70% center
    */
    object-position: center center;
  }

  .contact-link {
    top: 16px;
    right: 16px;
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Sehr kleine Smartphones */
@media (max-width: 380px) {
  .contact-link {
    top: 14px;
    right: 14px;
    padding: 9px 13px;
    font-size: 12px;
  }
}

/* Querformat auf Smartphones */
@media (max-height: 500px) and (orientation: landscape) {
  .contact-link {
    top: 12px;
    right: 14px;
    padding: 8px 13px;
    font-size: 12px;
  }

  .landing-image {
    height: 100vh;
    object-position: center center;
  }
}