/* tour.css - Virtual Tour Styles */

.tour-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 99990;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.tour-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.tour-highlight {
  position: relative !important;
  z-index: 99995 !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.5), 0 0 30px rgba(56, 189, 248, 0.3) !important;
  border-radius: inherit;
  transition: box-shadow 0.3s ease;
  background: var(--bg-dark);
  pointer-events: none;
}

.tour-tooltip {
  position: fixed;
  z-index: 99999;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 20px rgba(56, 189, 248, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.tour-tooltip.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.tour-step-counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 10px 0;
}

.tour-content {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.tour-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.tour-btn-skip {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.tour-btn-skip:hover {
  color: #f8fafc;
}

.tour-btn-next {
  background: #38bdf8;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.tour-btn-next:hover {
  background: #0ea5e9;
}
