body {
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 20px;
  background: #f2f0e6;
  color: #3b3a30; 
  text-align: center;
}

.map-container {
  position: relative;
  display: inline-block;
  box-shadow: 0 6px 12px rgba(88, 75, 54, 0.3);
  border-radius: 12px;
  background: #e6e1d6;
  padding: 12px;
}

.map-image {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  border: 4px solid #7a6a48;
  box-shadow: 0 4px 10px rgba(122, 106, 72, 0.5);
}

.region {
  position: absolute;
  background-color: #7a936f; 
  border: 2px solid #556b2f; 
  color: #f0efe9; 
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 4px rgba(85, 107, 47, 0.3);
  font-weight: 600;
  user-select: none;
}

.region:hover {
  background-color: #a2b67f; 
  color: #334422;
  box-shadow: 0 4px 8px rgba(50, 80, 25, 0.6);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #faf7f0;
  border: 3px solid #7a6a48;
  border-radius: 20px;
  padding: 30px 25px;
  z-index: 1000;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 8px 16px rgba(88, 75, 54, 0.45);
  color: #4a4a3a;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Georgia', serif;
}

#close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  color: #7a6a48;
  user-select: none;
  transition: color 0.3s;
}

#close:hover {
  color: #556b2f;
}

.image-gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: center;
}

.image-gallery img {
  width: 110px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(85, 107, 47, 0.4);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.image-gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(122, 106, 72, 0.7);
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46, 44, 38, 0.85); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(122, 106, 72, 0.9);
  cursor: default;
}

#lightbox-close {
  position: fixed;
  top: 30px;
  right: 40px;
  font-size: 42px;
  color: #c9c6b8;
  cursor: pointer;
  user-select: none;
  z-index: 2100;
  transition: color 0.3s;
}

#lightbox-close:hover {
  color: #7a6a48;
}
