/* Map Section */
.map-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 3px solid #ffcc80;
  text-align: center;
}

.map-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-section p {
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 1.6;
}

#map-container {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
  border: 3px solid #ffcc80;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  position: relative;
}

#map-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.map-popup {
  text-align: center;
  padding: 5px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(139, 90, 43, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.map-overlay.visible {
  opacity: 1;
}

.map-click-icon {
  font-size: 48px;
  color: #fff;
  background-color: transparent;
  margin-bottom: 10px;
}

.map-hover-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
}

.map-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid #ffcc80;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-top: 15px;
  background-color: rgba(139, 90, 43, 0.8);
}

.map-link .material-icons {
  margin-right: 8px;
  font-size: 20px;
  background-color: transparent;
  color: inherit;
}

.map-link:hover {
  background-color: #ffcc80;
  color: #8b5a2b;
  transform: translateY(-3px);
}

.copyright {
  font-size: 16px;
  color: white;
  border-top: 2px solid #ffcc80;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  letter-spacing: 0.5px;
}
