/**
 * Sphere homepage — pixel-spec (approved mockup @ 1440px canvas).
 * Hero: single LasVegasSphereHero.webp background + overlay branding.
 */

/* ─── Canvas tokens (from homepage_sphere_mockup.png) ─── */
.lvr-mockup-body,
.lvr-mockup-page {
  --px-orange: #e85d04;
  --px-navy: #0c2340;
  --px-navy-mid: #0a1a30;
  --px-black: #000000;
  --px-bg: #050b16;
  --px-text: #ffffff;
  --px-muted: rgba(255, 255, 255, 0.78);
  --px-container: 1440px;
  --px-pad: 48px;
  --px-header-h: 118px;
  --px-hero-h: 612px;
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--px-bg);
  color: var(--px-text);
  -webkit-font-smoothing: antialiased;
}

.lvr-mockup-container {
  width: 100%;
  max-width: var(--px-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px-pad);
  padding-right: var(--px-pad);
  box-sizing: border-box;
}

.lvr-px-h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--px-text);
}

.lvr-px-h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--px-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hide Houzez chrome on sphere page */
body.lvr-mockup-body .header-main-wrap,
body.lvr-mockup-body .header-mobile,
body.lvr-mockup-body #header-mobile,
body.lvr-mockup-body .advanced-search-nav,
body.lvr-mockup-body #desktop-header-search,
body.lvr-mockup-body .lvr-portal-bar,
body.lvr-mockup-body #footer-section {
  display: none !important;
}

/* ─── Header ─── */
.lvr-px-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
}

.lvr-px-topbar {
  background: var(--px-black);
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 0;
}

.lvr-px-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lvr-px-topbar__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: var(--px-muted);
}

.lvr-px-topbar__left a {
  color: var(--px-text);
  text-decoration: none;
  font-weight: 600;
}

.lvr-px-ico { color: var(--px-orange); margin-right: 4px; }
.lvr-px-sep { opacity: 0.35; }

.lvr-px-topbar__social a {
  color: var(--px-text);
  font-weight: 700;
  text-decoration: none;
}

.lvr-px-navbar {
  background: rgba(0, 0, 0, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lvr-px-navbar__grid,
.lvr-px-header .header-inner-wrap {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  gap: 20px;
  min-height: 72px;
}

.lvr-px-nav.main-nav-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.lvr-px-header-right,
.lvr-px-header .header-right-area,
.lvr-px-header .header-contact-wrap {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px;
  flex-shrink: 0;
}

.lvr-px-contact-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.lvr-px-tagline {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--px-muted);
  line-height: 1.3;
  max-width: 200px;
}

.lvr-px-header-phone {
  color: var(--px-text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.lvr-px-header-phone:hover {
  color: var(--px-orange);
}

.lvr-px-header-logo-band {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
}

.lvr-px-logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.lvr-px-nav {
  display: flex;
  justify-content: center;
}

.lvr-px-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.lvr-px-menu > li { position: relative; }

.lvr-px-menu > li > a {
  display: block;
  padding: 10px 13px;
  color: var(--px-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lvr-px-menu > li.current-menu-item > a,
.lvr-px-menu > li > a:hover {
  color: var(--px-orange);
  box-shadow: inset 0 -2px 0 var(--px-orange);
}

.lvr-px-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--px-navy);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  z-index: 20;
}

.lvr-px-menu li:hover > .sub-menu { display: block; }

.lvr-px-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--px-orange);
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
}

.lvr-px-nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .lvr-mockup-body .lvr-px-nav-toggle {
    display: none !important;
  }

  .lvr-px-nav-menu {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .lvr-px-navbar__grid {
    flex-wrap: wrap;
  }

  .lvr-px-nav.main-nav-wrap {
    order: 4;
    flex: 1 1 100%;
    justify-content: flex-end;
  }

  .lvr-px-nav-toggle {
    display: block;
  }

  .lvr-px-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--px-navy);
    padding: 12px 16px 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  }

  .lvr-px-nav-menu.is-open {
    display: block;
  }

  .lvr-px-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .lvr-px-header-right,
  .lvr-mockup-body .header-right-area {
    display: none !important;
  }
}

.lvr-px-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* ─── Hero — clean imports asset, no duplicate headline text ─── */
.hero-section-container,
.lvr-px-hero.hero-section-container {
  background-image: url('/imports/lasvegasrealty_hero.png') !important;
  background-position: center center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-color: var(--px-bg);
  min-height: 85vh;
  position: relative;
  width: 100%;
  padding-top: var(--px-header-h);
  overflow: hidden;
}

.hero-section-container .hero-title,
.hero-section-container .hero-subtitle,
.hero-section-container h1,
.hero-section-container h2:not(.sphere-overlay-logo h2) {
  display: none !important;
}

.lvr-px-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.15) 0%, rgba(5, 11, 22, 0.35) 100%);
}

.lvr-px-hero__grid {
  position: relative;
  z-index: 2;
  min-height: calc(85vh - var(--px-header-h));
  display: grid;
  grid-template-columns: minmax(0, 560px);
  align-items: end;
  padding-top: 36px;
  padding-bottom: 48px;
}

.lvr-px-hero__left {
  max-width: 560px;
}

.lvr-px-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lvr-px-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
}

.lvr-px-btn--fill {
  background: var(--px-orange);
  border-color: var(--px-orange);
  color: #fff;
}

.lvr-px-btn--line {
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.lvr-px-btn__ico { font-size: 14px; opacity: 0.95; }

/* Sphere LED overlay — aligned to Sphere in hero background */
.lvr-px-hero__sphere-zone {
  position: absolute;
  z-index: 3;
  right: 10%;
  top: 54%;
  transform: translateY(-50%);
  width: min(34vw, 500px);
  aspect-ratio: 1;
  pointer-events: none;
}

.sphere-overlay-logo {
  position: absolute;
  inset: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  animation: sphere-led-flash 3.8s ease-in-out infinite;
}

@keyframes sphere-led-flash {
  0%,
  100% {
    opacity: 0.78;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  }

  40%,
  60% {
    opacity: 1;
    filter:
      drop-shadow(0 0 14px rgba(255, 200, 120, 0.55))
      drop-shadow(0 0 26px rgba(100, 180, 255, 0.4));
  }

  50% {
    opacity: 0.96;
    filter:
      drop-shadow(0 0 22px rgba(232, 93, 4, 0.8))
      drop-shadow(0 0 42px rgba(120, 200, 255, 0.55));
  }
}

.sphere-overlay-logo__line {
  margin: 0;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 18px rgba(0, 160, 255, 0.35);
}

.sphere-overlay-logo__line--top {
  font-size: 11px;
  margin-bottom: auto;
  padding-top: 4%;
}

.sphere-overlay-logo__line--bottom {
  font-size: 12px;
  margin-top: auto;
  padding-bottom: 6%;
}

.sphere-overlay-logo__img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 160px;
}

.sphere-overlay-logo__name {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 18px rgba(0, 160, 255, 0.35);
}

/* Floating rail — mockup right edge */
.lvr-px-rail {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-42%);
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.lvr-px-rail a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 16px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: none;
  text-decoration: none;
  color: #fff;
  background: rgba(8, 18, 32, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lvr-px-rail__accent,
.lvr-px-rail a:hover {
  background: var(--px-orange);
}

/* ─── Search bar ─── */
.lvr-px-search {
  background: var(--px-navy);
  border-bottom: 3px solid var(--px-orange);
  padding: 18px 0 14px;
  margin: 0;
}

.lvr-px-search__form { margin: 0; }

.lvr-px-search__fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 200px;
  gap: 10px;
  align-items: stretch;
}

.lvr-px-search__field { min-width: 0; }

.lvr-px-search__field select,
.lvr-px-search__field input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 12px;
  box-sizing: border-box;
}

.lvr-px-search__field select option {
  color: var(--px-navy);
  background: #fff;
}

.lvr-px-search__submit .lvr-px-search__btn,
.lvr-px-search__btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 4px;
  background: var(--px-orange) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lvr-px-search__advanced {
  margin-top: 10px;
}

.lvr-px-search__toggle {
  background: none;
  border: 0;
  color: var(--px-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.lvr-px-search__advanced-inner {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.lvr-px-search__field--grow { flex: 1; min-width: 200px; }

/* ─── Featured rentals ─── */
.lvr-px-featured {
  background: var(--px-navy);
  padding: 44px 0 50px;
}

.lvr-px-featured__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  gap: 16px;
}

.lvr-px-featured__all {
  color: var(--px-orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.lvr-px-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lvr-px-listing {
  background: #081a30;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.lvr-px-listing__photo {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lvr-px-listing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lvr-px-listing__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 18px;
}

.lvr-px-listing__price {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(8, 26, 48, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 3px;
}

.lvr-px-listing__body {
  padding: 14px 16px 16px;
}

.lvr-px-listing__body h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.lvr-px-listing__body h3 a {
  color: #fff;
  text-decoration: none;
}

.lvr-px-listing__specs {
  margin: 0;
  font-size: 12px;
  color: var(--px-muted);
}

.lvr-px-listing__loc {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--px-orange);
  font-weight: 600;
}

/* ─── Quick action bar ─── */
.lvr-px-quickbar {
  background: var(--px-bg);
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lvr-px-quickbar__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lvr-px-quickbar__item {
  text-decoration: none;
  color: var(--px-muted);
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(12, 35, 64, 0.35);
}

.lvr-px-quickbar__icon {
  display: block;
  color: var(--px-orange);
  font-size: 22px;
  margin-bottom: 10px;
}

.lvr-px-quickbar__item h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--px-orange);
  text-transform: uppercase;
}

.lvr-px-quickbar__item p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.5;
}

.lvr-px-quickbar__more {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

/* ─── Why + consultation (3 columns) ─── */
.lvr-px-why {
  background: var(--px-navy-mid);
  padding: 52px 0;
}

.lvr-px-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.lvr-px-why__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lvr-px-why__list li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 14px;
  font-weight: 600;
}

.lvr-px-why__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--px-orange);
  font-weight: 800;
}

.lvr-px-stat {
  margin-bottom: 16px;
}

.lvr-px-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--px-orange);
  line-height: 1;
}

.lvr-px-stat span {
  font-size: 13px;
  color: var(--px-muted);
}

.lvr-px-stat-img {
  margin-top: 12px;
  width: 100%;
  max-width: 280px;
  height: 320px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.lvr-px-why__form {
  background: rgba(5, 11, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.lvr-px-why__form .lvr-owner-form label {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.lvr-px-why__form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lvr-px-why__form .btn-primary {
  width: 100%;
  min-height: 48px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ─── Areas we serve ─── */
.lvr-px-areas {
  background: var(--px-bg);
  padding: 52px 0 64px;
}

.lvr-px-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lvr-px-areas__card {
  position: relative;
  display: block;
  min-height: 132px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
}

.lvr-px-areas__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.lvr-px-areas__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.78) 100%);
}

.lvr-px-areas__name {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.lvr-px-areas__card--all {
  background: var(--px-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lvr-px-areas__card--all::after { display: none; }

.lvr-px-areas__card--all .lvr-px-areas__name {
  position: static;
  color: var(--px-orange);
  font-size: 15px;
}

/* ─── Footer ─── */
.lvr-px-footer {
  background: #000;
  padding: 48px 0 24px;
  font-size: 13px;
  color: var(--px-muted);
}

.lvr-px-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.lvr-px-footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.lvr-px-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lvr-px-footer li { margin-bottom: 8px; }

.lvr-px-footer a {
  color: var(--px-muted);
  text-decoration: none;
}

.lvr-px-footer a:hover { color: var(--px-orange); }

.lvr-px-footer__brand img {
  max-height: 48px;
  margin-bottom: 14px;
}

.lvr-px-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

/* ─── Responsive (scale down, same order) ─── */
@media (max-width: 1199px) {
  .lvr-px-hero__sphere-zone {
    right: 6%;
    width: min(38vw, 420px);
  }

  .lvr-px-featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lvr-px-why__grid {
    grid-template-columns: 1fr;
  }

  .lvr-px-quickbar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  :root {
    --px-pad: 20px;
    --px-hero-h: auto;
  }

  .lvr-px-nav-toggle { display: block; }

  .lvr-px-navbar__grid {
    grid-template-columns: auto 1fr auto;
  }

  .lvr-px-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--px-navy);
    padding: 16px;
  }

  .lvr-px-nav-menu.is-open { display: block; }

  .lvr-px-nav { position: relative; justify-content: flex-end; }

  .lvr-px-menu { flex-direction: column; align-items: stretch; }

  .lvr-px-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lvr-px-hero__left { max-width: none; }

  .lvr-px-hero__ctas { justify-content: center; }

  .lvr-px-hero__sphere-zone {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: min(320px, 72vw);
    margin: 0 auto 24px;
  }

  .lvr-px-rail {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px 20px;
  }

  .lvr-px-rail a { writing-mode: horizontal-tb; padding: 10px 14px; }

  .lvr-px-search__fields {
    grid-template-columns: 1fr 1fr;
  }

  .lvr-px-search__submit { grid-column: 1 / -1; }

  .lvr-px-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .lvr-px-featured__grid,
  .lvr-px-quickbar__grid,
  .lvr-px-areas__grid {
    grid-template-columns: 1fr;
  }

  .lvr-px-search__fields { grid-template-columns: 1fr; }
}
