/* ==========================================================================
   Hero Section — Ultra Modern Dark
   ========================================================================== */

/* Hero Container */
.header-location,
.hero-section,
.site-header {
  position: relative;
  /*background-color: var(--bg-primary);*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 80vh;
}

/* Hero Image Overlay */
.header-location::before,
.hero-section::before,
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.68) 100%) !important;
  z-index: 1;
  pointer-events: none;
}

/* Ensure content sits above overlay */
.header-location .container,
.header-location .header-txt,
.hero-section .container,
.site-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Headings */
.header-location h1,
.header-location h2,
.hero-section h1,
.site-header h1 {
  font-family: var(--font-display) !important;
  color: #fff !important;
  font-size: clamp(2.5rem, 5vw, 5rem) !important;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

/* Hero Subheadings / Supporting Copy */
.header-location p,
.header-location .lead,
.hero-section p,
.site-header p {
  font-family: var(--font-body);
  color: var(--silver-light) !important;
  font-size: 20px !important;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Micro-label (Optional) */
.hero-micro-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: 16px;
}

/* Hero CTA Container */
.hero-cta,
.header-location .header-btn {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Property Search Bar Integration (Optional) */
.hero-search-bar {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 48px;
  box-shadow: var(--shadow-elevated);
  text-align: left;
}
