/* ================================== */
/* RESET */
/* ================================== */

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Jost", sans-serif;
  background-image: url("../img/P1140845.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 100dvh;
  overflow-x: hidden;
}


/* ================================== */
/* LOGO – Desktop */
/* ================================== */

#logo {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  width: clamp(14rem, 22vw, 24rem); /* stabilisiert */
  z-index: 2;
}


/* ================================== */
/* TEXT BLOCK – Desktop */
/* ================================== */

#text {
  position: fixed;
  bottom: 15vh;
  right: 5vw;
  max-width: 60vw;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}


/* ================================== */
/* SHAPE – 300% Scale */
/* ================================== */

#shape {
  position: fixed;
  width: 300vw;
  height: 50vh;
  right: -100vw;
  bottom: -17vh;
  pointer-events: none;
  z-index: 0;
}


/* ================================== */
/* TYPOGRAPHY – Desktop (stabilisiert) */
/* ================================== */

h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 200;
  margin: 0;
}

a {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: white;
  text-decoration: none;
}


/* ================================== */
/* MOBILE & TABLET (<=1024px) */
/* – UNVERÄNDERT */
/* ================================== */

@media (max-width: 1024px) {

  #logo {
    width: 70vw;
    max-width: 26rem;
    min-width: 16rem;
    left: 5vw;
    top: 4vh;
  }

  #text {
    max-width: 90vw;
    bottom: 17vh;
  }

  #shape {
    width: 320vw;
    height: 55vh;
    right: -110vw;
    bottom: -18vh;
  }

  h1 {
    font-size: 9vw;
    line-height: 0.95;
  }

  h2 {
    font-size: 5vw;
  }

  a {
    font-size: 4.2vw;
  }

}


/* ================================== */
/* LARGE DESKTOP BACKGROUND TWEAK */
/* ================================== */

@media (min-width: 1200px) {
  body {
    background-position: 50% 20%;
  }
}