@charset "utf-8";
/* CSS Document */

.resize-1{
	font-size: 0.50rem; 
}
/* Fullscreen Matterport hero */
.hero-mp{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Set your background image here */
  background-image: url(../images/hero-pruitt-house.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-mp__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* overlay for readability */
}

.hero-mp__content{
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 24px;
  color: #fff;
}

.hero-mp__title{
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 12px 0;
  letter-spacing: 0.2px;
}

.hero-mp__subtitle{
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 0 0 22px 0;
  opacity: 0.95;
}

.hero-mp__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Optional: keep hero from hiding behind a sticky header */
@media (min-width: 992px){
  .hero-mp{ padding-top: 70px; }
}

