/* Hero Section */
.hero-section {
  padding: 11.3rem 1.9rem;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  /* min-height: 100vh; */
}

.hero-content {
  max-width: 600px;
  /* margin-left: 5%; */
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
   width: 500px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-button {
  padding: 15px 30px;
  background: #00d084;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.hero-button:hover {
  background-color: #01a96c;
}

.fullscreen-home {
  height: 100vh;
  /* ✅ fills exactly 1 screen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animation classes */
.hero-title {
  animation: slideInLeft 0.8s ease-out forwards;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-button {
  animation: slideInRight 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-title,
.hero-subtitle,
.hero-button {
  opacity: 0;
  /* start hidden until animation kicks in */
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem !important;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    width: auto;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-button {
    width: auto;
    font-size: 1rem;
    padding: 12px 24px;
  }
}