/* =========================================================
   HERO / BACKDROP — full-width photo section with headline,
   description and call-to-action buttons
   ========================================================= */

.backdrop {
  width: 100%;
  height: 650px;
  background-image: url('../../_astro/RDI-SumaDoor-Dover-Grey.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
}

.backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 0) 100%     /* diubah dari 0.3 → 0, benar-benar transparan di akhir */
  );
  pointer-events: none;
}

.hero-text {
  position: relative;      /* required so z-index below actually applies */
  z-index: 2;               /* keeps text above the ::before overlay */
  max-width: 1000px;
  margin: 0 auto;
  padding: 220px 40px 0 0px;   /* pushes text below the header height */
}

.hero-heading,
.hero-subheading,
.hero-description {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-heading {
  font-family: "Asap Sharp", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px 0;
  max-width: 700px;
}

.hero-subheading {
  font-family: "Asap Sharp", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 12px 0;
  max-width: 600px;
}

.hero-description {
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  color: #052d55;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 30px;
}

.hero-cta-icon {
  background-color: #052d55;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: white;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
}

.hero-tags {
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0;
}
