/* ============================================================
   SERVICES PAGE SPECIFIC CSS
   ============================================================ */

.services-hero {
  height: 650px;
  /* FIXED: Added ../ to the image URL so it finds the assets folder */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0) 70%),
    url('../assets/InstantRoof_web_services_page_01.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--white);
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 800px;
  padding-left: 5%;
}

.services-hero .eyebrow-white {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.services-hero .hero-title {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1.0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.services-hero .hero-subtext {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
  text-transform: uppercase;
  opacity: 0.95;
}

.services-hero-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.btn-green-solid {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn-white-solid {
  background-color: var(--white);
  color: var(--black);
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn-green-solid:hover,
.btn-white-solid:hover {
  transform: translateY(-2px);
}

.mobile-br {
  display: none;
}

/* Mobile Adjustments for the Hero Section */
@media (max-width: 992px) {
  .services-hero {
    justify-content: center;
    text-align: center;
  }

  .services-hero-content {
    align-items: left;
    padding-left: 0;
  }

  .services-hero-btns {
    justify-content: center;
  }

  .services-hero .hero-title {
    font-size: 52px;
  }

  .mobile-br {
    display: block;
  }

  .hero-title {
    text-align:lefr;
    font-size: 40px !important;
    line-height: 1.1;
  }
}