.elementor-782 .elementor-element.elementor-element-a758553{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-782 .elementor-element.elementor-element-20f3e60{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-20f3e60 *//* The wrapper keeps everything contained */
.virtual-tour-container {
  position: relative;
  width: 100%;
  height: 600px; /* Default desktop height */
  border-radius: 12px;
  overflow: hidden; /* Clips the iframe corners cleanly */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* The iframe fills the wrapper entirely */
.three-js-embed {
  width: 100%;
  height: 100%;
  border: none;
}

/* The overlay sits directly on top */
.tour-overlay {
  position: absolute;
  inset: 0; /* Shorthand for top, bottom, left, right: 0 */
  background: rgba(0, 0, 0, 0.4); /* Darkens the iframe slightly */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* The Button Styling */
.explore-btn {
  padding: 15px 30px;
  background: #0056b3;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: background 0.2s, transform 0.2s;
}

.explore-btn:hover {
  background: #003d82;
  transform: scale(1.05);
}

/* We trigger this class with JavaScript to let clicks pass through */
.tour-overlay.hidden {
  opacity: 0;
  pointer-events: none; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .virtual-tour-container {
    height: 400px; /* Prevents the iframe from dominating small phone screens */
  }
}/* End custom CSS */