/* CSS משותף לדפי תמונות אינטראקטיביות (חדר ומסעדה) */

.interactive-page-wrapper {
  font-family: 'Noto Sans Hebrew', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffafc;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: calc(100vh - 60px);
}

.interactive-page-wrapper h1 {
  color: #ff6fae;
  margin-bottom: 4px;
}

.interactive-page-wrapper p {
  margin-top: 0;
  margin-bottom: 16px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 70%;
  overflow: visible;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hotspot {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #ff6fae; /* ורוד */
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffd54a; /* צהוב */
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 0 0 rgba(255, 111, 174, 0.35);
}

.hotspot:hover {
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 0 6px rgba(255, 111, 174, 0.25);
}

.hotspot::after {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hotspot:hover::after {
  content: attr(data-label);
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd54a;
  color: #1d1d1f;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 1;
  z-index: 10;
}

.hint {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

