/* ================== */
/* Hero Section Styles */
/* ================== */
.hero-about .hero-image {
  position: relative;
  width: 100vw;
  /* Full viewport width */
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
}

.hero-about .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover entire area, crop if needed */
  display: block;
  transition: transform 0.5s ease;
  /* smooth zoom on hover */
}

.hero-about .hero-image:hover img {
  transform: scale(1.05);
  /* Slight zoom effect on hover */
}

.hero-about .hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 2px;
  user-select: none;
}

/* ======================= */
/* About Content Section */
/* ======================= */
.about-content {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #444;
}

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

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #222;
  font-weight: 700;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-about .hero-overlay {
    font-size: 2.5rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}