
/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 70vh;                  /* Full-ish viewport height */
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
              url('images/hero-property-london.jpg') center/cover no-repeat; /* Replace with your image */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent);
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-trust {
  font-size: 1.05rem;
  opacity: 0.9;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 4rem 1.5rem 6rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 1.15rem;
  }
}