* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #05070b;
}

body {
  overflow: hidden;
}

.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #05070b;
}

.hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  animation: crewnexFade 900ms ease-out both;
}

/* Aree invisibili sopra le icone già presenti nell'immagine */
.social-hotspots {
  position: absolute;
  left: 50%;
  top: 88.5%;
  transform: translateX(-50%);
  width: clamp(175px, 15vw, 285px);
  height: clamp(42px, 4.4vw, 74px);
  z-index: 50;
}

.hotspot {
  position: absolute;
  top: 0;
  height: 100%;
  display: block;
  cursor: pointer;
}

.hotspot.instagram {
  left: 0;
  width: 31%;
}

.hotspot.linkedin {
  left: 34.5%;
  width: 31%;
}

.hotspot.facebook {
  left: 69%;
  width: 31%;
}

.seo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@keyframes crewnexFade {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}
