/* About Hero Section (Inspired by Halftone/Grid Reference) */
.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.about-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  /* Fade it out so text is readable */
}

.about-hero-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  /* If the user drops in a halftone statue, this will help it blend perfectly */
  mix-blend-mode: multiply;
}

/* Fallback SVG if no image is available */
.halftone-placeholder {
  width: 600px;
  height: 600px;
  max-width: 100vw;
  background-image: radial-gradient(#ccc 2px, transparent 2px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(circle, black 20%, transparent 60%);
  mask-image: radial-gradient(circle, black 20%, transparent 60%);
  opacity: 1;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 58px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 25px;
}

.about-hero-title span {
  color: #B0B0B0;
  /* The faded grey text effect from the reference */
  font-weight: 400;
  background: #ff4326;
  color: #fff;
  padding: 0px 10px;
}

.about-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 45px;
  max-width: 520px;
}

.btn-solid-dark {
  display: inline-block;
  background-color: #ff4326;
  color: #FFFFFF;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #1A1A1A;
}

.btn-solid-dark:hover {
  background-color: #333;
  color: #FFF;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .about-hero-container {
    gap: 40px;
  }

  .about-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 100px;
    min-height: auto;
  }
  .about-hero-title {
    font-size: 34px;
  }
  .about-hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
}