@font-face {
  font-family: "SharpGrotesk";
  src: url("assets/SharpGroteskPETrialSmBold-25-BF646589d85a16e.ttf")
    format("truetype");
}

h1 {
  font-family: "SharpGrotesk", sans-serif;
}

body {
  background-color: #f5f5f5;

  font-family: Arial, sans-serif;
}

.header-container {
  padding: 20px;
}

.mw-100 {
  max-width: 98vw;
  /* box-sizing: border-box; */
}

.mh-100 {
  max-height: 100vh;
}

.image-container {
  position: relative;
  display: inline-block;
}

.hotspot {
  position: absolute;
  cursor: pointer;
}

.hotspot-dot {
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #333;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.out .hotspot-dot {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(0, 0);
}

.out .hotspot-content {
  transform: translate(0, 0);
}

.hotspot:hover .hotspot-dot {
  background: #333;
  color: white;
  width: 25px;
  height: 25px;
}

.hotspot-content {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 5px;
  width: max-content;
  max-width: 200px;
  z-index: 1;
  top: 100%;
  left: 50%;
  transform: translate(calc(-50% - 15px), -15px);
}

.hotspot:hover .hotspot-content {
  display: block;
}

.expandable-area {
  position: absolute;
  top: 54.5%; /* Adjust these values to position */
  left: 41.6%; /* the small image correctly */
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border: 1px dashed black;
}

.overlay-image {
  width: 7.936vw;
  height: auto;
  transition: all 0.3s ease;
}

.expandable-area:hover {
  transform: translate(-50%, -50%) scale(6);
  z-index: 2;
}

.hidden-hotspot {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.expandable-area:hover .hidden-hotspot {
  opacity: 1;
  pointer-events: auto;
}

.hidden-hotspot .hotspot-dot {
  width: 5px;
  height: 5px;
  border: 1px solid black;
}
.hidden-hotspot.hotspot:hover .hotspot-dot {
  background: #333;
  color: white;
  width: 10px;
  height: 10px;
}

.hidden-hotspot .hotspot-content {
  max-width: 100px;
  font-size: 3px;
  padding: 1.5px;
  border-radius: 1px;
  transform: translate(calc(-50% - 6px), -6px);
}
