:root {
  --gh-bg:      #0C0C0E;
  --gh-surface: #141418;
  --gh-gold:    #C8973A;
  --gh-gold-lt: #E8B86D;
  --gh-pearl:   #F0EBE0;
  --gh-muted:   #8A8A9A;
}

/* ——— Elementor wrapper reset — full-bleed widget ——— */
.elementor-widget-haagala_globe_hero,
.elementor-widget-haagala_globe_hero > .elementor-widget-container,
.e-con:has(.elementor-widget-haagala_globe_hero),
.elementor-section:has(.elementor-widget-haagala_globe_hero),
.elementor-widget-wrap:has(.elementor-widget-haagala_globe_hero) {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}

body:has(.elementor-widget-haagala_globe_hero) {
  background-color: #0C0C0E;
}

.globe-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--gh-bg);
  direction: rtl;
}

.globe-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* מצב רקע בלבד — inset:0 ממלא את כל ה-section (כולל padding) */
.globe-hero-bg-canvas {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.globe-hero-bg-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-bg);
  transition: opacity .6s ease;
  pointer-events: none;
}

.globe-hero-bg-loader.hide {
  opacity: 0;
  pointer-events: none;
}

[id^="loader-"] {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-bg);
  transition: opacity 0.6s ease;
}

[id^="loader-"].hide {
  opacity: 0;
  pointer-events: none;
}

.globe-hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.gh-inner {
  max-width: min(560px, 46vw);
  padding: 0 clamp(24px, 6vw, 96px);
}

.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gh-gold-lt);
  background: rgba(200, 151, 58, 0.08);
  border: 1px solid rgba(200, 151, 58, 0.22);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  pointer-events: auto;
  backdrop-filter: blur(6px);
}

.gh-eyebrow .gh-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gh-gold);
  box-shadow: 0 0 10px var(--gh-gold);
  animation: gh-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes gh-pulse {
  50% { opacity: 0.35; transform: scale(0.7); }
}

.gh-heading {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gh-pearl);
  margin-bottom: 20px;
}

.gh-lead {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  color: var(--gh-muted);
  max-width: 42ch;
  margin-bottom: 34px;
}

.gh-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  pointer-events: auto;
}

.gh-btn {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: inline-block;
}

.gh-btn--primary {
  background: var(--gh-gold);
  color: #0C0C0E;
  box-shadow: 0 10px 30px -8px rgba(200, 151, 58, 0.55);
}

.gh-btn--primary:hover,
.gh-btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -6px rgba(200, 151, 58, 0.65);
  color: #0C0C0E;
}

.gh-btn--secondary {
  color: var(--gh-pearl);
  background: transparent;
  border: 1px solid rgba(200, 151, 58, 0.35);
}

.gh-btn--secondary:hover,
.gh-btn--secondary:focus-visible {
  background: rgba(200, 151, 58, 0.08);
  color: var(--gh-pearl);
}

.gh-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(200, 151, 58, 0.15);
  border-top-color: var(--gh-gold);
  animation: gh-spin 1s linear infinite;
}

@keyframes gh-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
  .globe-hero__content {
    align-items: flex-end;
    padding-bottom: 9vh;
  }

  .gh-inner {
    max-width: 100%;
    text-align: center;
  }

  .gh-lead {
    margin-inline: auto;
  }

  .gh-cta {
    justify-content: center;
  }

  .gh-eyebrow {
    margin-inline: auto;
  }
}
