/* =========================
   Hero Section
   ========================= */
.hero {
  padding: 6rem 0 4rem;
  background: url("/img/hero_bg.png") no-repeat center top;
  background-size: cover;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 60%;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #646464;
}

.hero-text p {
  font-size: 1.25rem;
  color: grey;
  margin-bottom: 2rem;
  font-weight: lighter;
}

.hero-text .btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 25px;
  background: #10D3E2;
  color: grey;
  font-weight: lighter;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-text .btn:hover {
  background: #0bb6c4;
}

.hero-image {
  flex: 1 1 50%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Mobile Responsive (Hero)
   ========================= */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2rem;
    background-position: center top;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    flex: 1 1 100%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-text .btn {
    padding: 12px 22px;
    font-size: 0.95rem;
    border-radius: 20px;
  }

  .hero-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-image img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}
