/* ===== LIFESTYLE PAGE ===== */
#lifestyle-canvas {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 60px);
  overflow: hidden;
  cursor: crosshair;
  user-select: none;
}

.landscape-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hint text */
.lifestyle-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 5;
  text-align: center;
}

#lifestyle-canvas.has-photos .lifestyle-hint {
  opacity: 0;
}

/* Revealed photos */
.revealed-photo {
  position: absolute;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 1px 4px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
  pointer-events: none;
}

.revealed-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.photo-label {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-top: 4px;
  padding-bottom: 2px;
}

/* Zone hover hints (invisible zones glow subtly on hover) */
.landscape-svg [data-theme] {
  cursor: crosshair;
  transition: opacity 0.3s ease;
}

.landscape-svg [data-theme]:hover {
  opacity: 0.08;
}

/* Responsive */
@media (max-width: 768px) {
  .revealed-photo {
    padding: 4px;
  }

  .lifestyle-hint {
    font-size: 0.75rem;
    bottom: 1.5rem;
  }
}
