* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #f6f2ea;
}

.website {
  position: relative;
  display: block;
  width: 100%;
}

.page {
  display: block;
  width: 100%;
  height: auto;
}

/* Unsichtbare Klickflächen */
.hotspot {
  position: absolute;
  z-index: 10;
  display: block;
  background: transparent;
  cursor: pointer;
}

/* DESKTOP – Kontaktblock unten links */

.mail {
  left: 2.7%;
  top: 79.0%;
  width: 20%;
  height: 3.0%;
}

.phone {
  left: 2.7%;
  top: 83.5%;
  width: 18%;
  height: 3.0%;
}

.address {
  left: 2.7%;
  top: 88.0%;
  width: 27%;
  height: 3.2%;
}
/* KONTAKT oben in der Navigation – DESKTOP */
.nav-contact {
  position: absolute;
  z-index: 20;
  right: 1.4%;
  top: 4.0%;
  width: 9.5%;
  height: 4.5%;
  background: transparent;
  cursor: pointer;
}

/* Zielpunkt beim Kontaktblock – DESKTOP */
.kontakt-target {
  position: absolute;
  left: 0;
  top: 78%;
  width: 1px;
  height: 1px;
}

html {
  scroll-behavior: smooth;
}
/* TÜRME KLICKBAR – NUR DESKTOP */
.towers-click {
  position: absolute;
  z-index: 15;
  left: 54%;
  top: 17%;
  width: 43%;
  height: 72%;
  background: transparent;
  cursor: zoom-in;
}

/* VOLLBILD VISITENKARTE */
.card-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(20, 18, 16, 0.82);
  padding: 4vh 4vw;
}

.card-overlay.show {
  display: flex;
}

.card-overlay img {
  display: block;

width: 82vw;
  height: auto;
  max-height: 88vh;

  object-fit: contain;

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}
.contact-card-wrap {
  position: relative;
  width: 82vw;
  max-height: 88vh;
}

.contact-card-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
}
.contact-hit {
  position: absolute;
  z-index: 10001;
  display: block;
  background: transparent;
  cursor: pointer;
}
.contact-phone {
  left: 11.5%;
  top: 62.5%;
  width: 48%;
  height: 6.5%;
}
.contact-mail {
  left: 11.5%;
  top: 70.1%;
  width: 54%;
  height: 6.5%;
}
.contact-web {
  left: 11.5%;
  top: 77.5%;
  width: 55%;
  height: 6.5%;
}
.contact-address {
  left: 11.5%;
  top: 84.8%;
  width: 55%;
  height: 6.5%;
}
.card-close {
  position: fixed;
  top: 22px;
  right: 30px;
  z-index: 10000;

  border: 0;
  background: transparent;
  color: white;

  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}
/* MOBILE */

@media (max-width: 700px) {
  .towers-click,
  .card-overlay {
    display: none !important;
  }
  .nav-contact {
    right: 5%;
    top: 10.0%;
    width: 18%;
    height: 3.5%;
  }

  .kontakt-target {
    top: 85%;
  }
  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .website {
    width: 100vw;
    height: 100vh;
    display: block;
  }

  .page {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    object-position: center 2.0%;
    display: block;
  }

  .mail {
    left: 8%;
    top: 86.3%;
    width: 50%;
    height: 3.1%;
  }

  .phone {
    left: 8%;
    top: 89.2%;
    width: 47%;
    height: 3.1%;
  }

  .address {
    left: 8%;
    top: 92.1%;
    width: 61%;
    height: 3.2%;
  }
}