body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-section {
  min-height: 100vh;
  background: url(https://images.pexels.com/photos/764880/pexels-photo-764880.jpeg) no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 15px 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero-title {
  font-size: clamp(26px, 4.5vw, 46px);
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 100%;
  word-wrap: break-word;
}

/* ✅ Email Top Left */
.top-email {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 18px;
  color: aliceblue;
  z-index: 10;
  white-space: nowrap;
}

.hero-section .container {
  max-width: 1100px;
}

.hero-subtitle {
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

h4 {
  margin-bottom: 15px;
}

p {
  font-size: 14px;
  opacity: 0.85;
}

.header__email{
   text-decoration: none;
   color: inherit;
}

/* Responsive */
@media (max-width: 768px) {

  .hero-section {
    padding-top: 120px; /* email overlap avoid */
  }

  .hero-title {
    text-align: center;
    font-size: 26px;        /* ✅ smaller heading */
    line-height: 1.3;      /* ✅ readable */
    padding: 0 10px;       /* ✅ side spacing */
  }

  .top-email {
    top: 15px;
    left: 15px;
    font-size: 13px;
  }

  .hero-subtitle {
    font-size: 14px;
    padding: 0 15px;
  }
}
