body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Futura', 'Montserrat', Arial, sans-serif;
  overflow: hidden;
}

.village-map {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('background-site.png') no-repeat center center;
  background-size: cover;
}

/* Invisible clickable zones over buildings */
.building {
  position: absolute;
  display: block;
  cursor: pointer;
  border: 2px dashed transparent;
  transition: border 0.3s ease;
}

/* Hover effect: show outline */
.building:hover {
  border: 2px dashed #ffcc00;
  border-radius: 10px;
}

/* Position each building manually */
.memories {
  top: 20%;
  left: 15%;
  width: 80px;
  height: 80px;
}

.projects {
  top: 40%;
  left: 50%;
  width: 90px;
  height: 90px;
}

.about {
  top: 65%;
  left: 30%;
  width: 70px;
  height: 70px;
}

.contact {
  top: 75%;
  left: 70%;
  width: 60px;
  height: 60px;
}

/* Responsive scaling */
@media (max-width: 600px) {
  .building {
    width: 50px;
    height: 50px;
  }
}
