*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  position: relative;
  background-color: #1a0a24;
}

.landing-bg {
  position: fixed;
  inset: 0;
  background-image: url("assets/landing.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #1a0a24;
  z-index: 0;
}

.overlay-link {
  position: fixed;
  z-index: 1;
  display: block;
  cursor: pointer;
}

.overlay-phone {
  left: 4%;
  bottom: 10%;
  width: 36%;
  height: 14%;
}

.overlay-website {
  top: 8%;
  right: 6%;
  width: 28%;
  height: 12%;
}

.overlay-email {
  top: 14%;
  right: 6%;
  width: 28%;
  height: 8%;
}

/* Service list – box aligned with poster (contain) so links stay over the list */
.landing-service-strip {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100vw, 56.25vh);
  height: min(100vh, 177.78vw);
  max-width: 100vw;
  max-height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.landing-service-strip .service-link {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5.8%;
  pointer-events: auto;
  cursor: pointer;
  display: block;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.landing-service-strip .service-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.landing-service-strip .service-link:active {
  background-color: rgba(255, 255, 255, 0.2);
}

.landing-service-strip .service-link:nth-child(1) { top: 29%; }
.landing-service-strip .service-link:nth-child(2) { top: 34.8%; }
.landing-service-strip .service-link:nth-child(3) { top: 40.6%; }
.landing-service-strip .service-link:nth-child(4) { top: 46.4%; }
.landing-service-strip .service-link:nth-child(5) { top: 52.2%; }
.landing-service-strip .service-link:nth-child(6) { top: 58%; }

@media (max-width: 768px) {
  .landing-service-strip .service-link {
    height: 5.5%;
  }
  .landing-service-strip .service-link:nth-child(1) { top: 28%; }
  .landing-service-strip .service-link:nth-child(2) { top: 33.5%; }
  .landing-service-strip .service-link:nth-child(3) { top: 39%; }
  .landing-service-strip .service-link:nth-child(4) { top: 44.5%; }
  .landing-service-strip .service-link:nth-child(5) { top: 50%; }
  .landing-service-strip .service-link:nth-child(6) { top: 55.5%; }
}

@media (max-width: 768px) {
  .overlay-phone {
    left: 4%;
    bottom: 8%;
    width: 50%;
    height: 12%;
  }
  .overlay-website,
  .overlay-email {
    right: 4%;
    width: 55%;
  }
}
