/* Import fonts */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1e1e1e;
  color: #333;
}

.hero-section {
  background: url("../image/elderlycare.jpeg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: white;
}

.hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for contrast */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  color: #fff4eb;
}

.hero-text h1 span {
  font-weight: 700;
  color: #f88ea4;
}

.hero-text p {
  margin: 1rem 0;
  font-family: "Courier Prime", monospace;
  font-size: 1.1rem;
  color: #ffe6e6;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #9b2d4d;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-family: "Courier Prime", monospace;
  font-weight: bold;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
