/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

/* Container for the image and click zones */
.image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Fullscreen image */
.fullscreen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Base click zone styles */
.click-zone {
  position: absolute;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10; /* Ensure it's on top */
}

/* Hover effect */
.click-zone:hover {
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid red; /* Optional: helps debugging */
}

/* Adjusted click-zone positions */
.zone-1 {
  top: 40%;
  left: 40%;
  width: 150px;
  height: 150px;
  z-index: 20;
}

.zone-2 {
  top: 26%;
  left: 60%;
  width: 150px;
  height: 150px;
  z-index: 20;
}

.zone-3 {
  top: 65%;
  left: 65%;
  width: 150px;
  height: 150px;
  z-index: 20;
}

.zone-4 {
  top: 3%;
  left: 25%;
  width: 150px;
  height: 150px;
  z-index: 20;
}

.zone-5 {
  top: 1%;
  left: 40%;
  width: 150px;
  height: 150px;
  z-index: 20;
}

.zone-6 {
  top: 40%;
  left: 50%;
  width: 150px;
  height: 150px;
  z-index: 20;
}

.zone-7 {
  top: 10%;
  left: 50%;
  width: 150px;
  height: 150px;
  z-index: 20;
}
