@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Barlow Semi Condensed", Arial, Helvetica, sans-serif;
  color: #2c2c2c;
  background: #f5f2ec;
}

.screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #f5f2ec;
}

/* Sprachschalter:
   exakt dieselbe Position wie bei Variante 1 */
.language {
  position: fixed;
  z-index: 20;

  top: 3.5vh;
  left: 4vw;

  display: flex;
  align-items: center;
  gap: 0.35em;

  font-size: clamp(11px, 0.75vw, 14px);
  font-weight: 400;
}

.language button {
  padding: 0;
  border: 0;
  background: transparent;

  color: inherit;
  font: inherit;

  cursor: pointer;
  opacity: 0.45;
}

.language button.active {
  opacity: 1;
}

.language button:hover {
  opacity: 1;
}

/* Name und Navigation */
.site-header {
  position: fixed;

  left: 4vw;
  bottom: 6vh;

  z-index: 20;
}

.name {
  display: block;

  margin-bottom: 0.45em;

  color: inherit;
  text-decoration: none;

  font-size: clamp(30px, 2.8vw, 50px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 1.8em;

  margin-top: 1.9em;
}

nav a {
  color: inherit;
  text-decoration: none;

  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: 0.04em;
}

nav a:hover {
  opacity: 0.5;
}

nav a.active {
  opacity: 0.45;
}

/* Infobereich */
.info {
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding:
    12vh
    8vw
    12vh
    38vw;
}

.info-text {
  width: 100%;
  max-width: 720px;
}

.info-text p {
  margin: 0 0 1.4em;

  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.45;
  font-weight: 400;
}

.contact {
  margin-top: 4em;
}

.contact p {
  margin-bottom: 0.4em;

  font-size: clamp(12px, 0.9vw, 16px);

  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact a {
  color: inherit;
  text-decoration: none;

  font-size: clamp(17px, 1.25vw, 22px);
}

.contact a:hover {
  opacity: 0.5;
}

/* kleinere Bildschirme */
@media (max-width: 900px) {

  .language {
    top: 3vh;
    left: 5vw;
  }

  .site-header {
    position: relative;

    left: auto;
    bottom: auto;

    padding:
      14vh
      5vw
      0;
  }

  .info {
    min-height: auto;

    padding:
      10vh
      5vw
      12vh;
  }

  .info-text {
    max-width: 680px;
  }

  .info-text p {
    font-size: clamp(19px, 4.5vw, 27px);
  }
}