@font-face {
  font-family: Satoshi;
  src: url(./fonts/Satoshi-Bold\ kopie.ttf);
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: gainsboro;
  overflow-x: hidden;
}

/* Container */
.container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Basis styling */
.nike,
.shirt,
.wallonie {
  position: absolute;
  display: block;
}

.nike img,
.shirt img,
.wallonie img {
  width: 100%;
  height: auto;
  display: block;
}

/* 🖥️ DESKTOP LAYOUT (groot scherm) */
.nike {
  top: 12vh;
  left: 25vw;
  width: clamp(120px, 20vw, 300px);
  z-index: 9999;
}

.shirt {
  top: 0vh;
  left: 62vw;
  width: clamp(250px, 40vw, 600px);
  transform: translateX(-50%);
  z-index: 9999;
}

.wallonie {
  top: 42vh;
  left: 25vw;
  width: clamp(120px, 20vw, 300px);
  z-index: 9999;
}

/* Terug knop */
.terug-knop {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  cursor: pointer;
  opacity: 20%;
}

/* Spacer */
.spacer {
  height: 150px;
  width: 100%;
}
/* Grote desktops / kleine laptops: 1600px → 1200px */
@media screen and (max-width: 1400px) and (min-width: 1025px) {
  .nike {
    top: 12vh;
    left: 20vw;
    width: clamp(120px, 40vw, 300px);
    z-index: 9999;
  }

  .shirt {
    top: 8vh;
    left: 65vw;
    width: clamp(250px, 55vw, 500px);
    transform: translateX(-50%);
    z-index: 9999;
  }

  .wallonie {
    top: 42vh;
    left: 20vw;
    width: clamp(120px, 40vw, 300px);
    z-index: 9999;
  }
}

/* TABLET */
@media screen and (max-width: 1024px) {
  .nike {
    top: 12vh;
    left: 15vw;
    width: clamp(120px, 40vw, 300px);
    z-index: 9999;
  }

  .shirt {
    top: 10vh;
    left: 70vw;
    width: clamp(400px, 50vw, 600px);
    transform: translateX(-50%);
    z-index: 9999;
  }

  .wallonie {
    top: 40vh;
    left: 15vw;
    width: clamp(120px, 40vw, 300px);
    z-index: 9999;
  }
}

/* 📱 MOBIEL LAYOUT */
@media screen and (max-width: 768px) {
    html, body {
    overflow: auto !important;
    height: auto !important;
  }

  .cursor-dot {
    display: none !important;
  }

  .hover-image {
    display: none !important;
    opacity: 0 !important;
  }
  /* mobiel krijgt eigen hoogte zodat alles zichtbaar is */
  .container {
    min-height: 220vh;
  }

  /* eventueel andere terugknop */
  .terug-knop {
    content: url("../assets/images/achtergrond\ mobile\ geel.webp");
  }

  .nike {
    top: 10vh;
    left: 12vw;
    width: 70vw;
  }

  .shirt {
    top: 120vh;
    left: 50vw;
    width: 90vw;
  }

  .wallonie {
    top: 60vh;
    left: 9vw;
    width: 80vw;
  }

  .spacer {
    height: 200px;
  }
}
