/* ============================================================
   Tour 360° — Theme classes per le 2 demo ufficiali (V1 + V3)
   Si applica al body via JS dopo aver letto ?theme=v1|v3
   ============================================================ */

@import url('https://fonts.bunny.net/css?family=playfair-display:400i,700i|manrope:200,400,700,800&display=swap');

/* V1 - Studio Caldo (Dentologie warm) */
body.theme-v1 {
  --tour-cta-bg: #d97548;
  --tour-cta-text: #ffffff;
  --tour-hotspot: #d97548;
  --tour-title-font: 'Playfair Display', Georgia, serif;
}
body.theme-v1 .tour-room-title {
  font-style: italic;
  font-weight: 700;
}
body.theme-v1 .tour-hotspot { background: #d97548; }
body.theme-v1 .tour-hotspot { animation-name: hotspotPulseV1; }
@keyframes hotspotPulseV1 {
  0% { box-shadow: 0 0 0 0 rgba(217, 117, 72, 0.5); }
  70% { box-shadow: 0 0 0 24px rgba(217, 117, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 117, 72, 0); }
}

/* V3 - Studio del Futuro (WorldOfNRG light cool) — DEFAULT theme */
body.theme-v3 {
  --tour-cta-bg: #c8a8ff;
  --tour-cta-text: #261d26;
  --tour-hotspot: #b79eff;
  --tour-title-font: 'Manrope', sans-serif;
}
body.theme-v3 .tour-room-title {
  font-weight: 200;
  letter-spacing: -0.04em;
}
