/* Загальні стилі */
body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: #34519b;
  font-size: 20px;
}

#map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

#map {
  width: 100%;
  height: auto;
  display: block;
}

.map-point {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #34519b;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.map-point:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

#panorama-container {
  position: fixed;
  inset: 0;
  background: black;
}

#panorama {
  width: 100%;
  height: 100%;
}

#back-to-map {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 15px;
  font-family: "Raleway", sans-serif;
  color: #34519b;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  z-index: 999;
}

.tour-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.tour-info {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* 📱 Адаптив для мобільних */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .map-point {
    width: 15px;
    height: 15px;
  }

  #back-to-map {
    font-size: 14px;
    padding: 6px 10px;
  }
}

/* 📱📱 Дуже маленькі екрани (наприклад телефони у вертикалі) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .map-point {
    width: 12px;
    height: 12px;
  }

  #back-to-map {
    font-size: 12px;
    padding: 5px 8px;
  }
}
