.hero {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../imgs/hero.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  border: 1px solid gold;
  padding: 10px 25px;
  border-radius: 20px;

  transition: 0.3s;
}

.btn:hover {
  background: gold;
  color: #0e4618;
}

.featured {
  padding-top: 0;
}

.featured__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.featured__title {
  font-size: 36px;
}

.featured__img {
  width: 400px;
  height: 450px;
  overflow: hidden;
}

.featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured__img:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .featured__wrapper {
    margin-top: 0px;
  }

  .featured__title {
    font-size: 32px;
  }
}
