/* Hero 1 */

#hero-1 {
  min-height: 100vh;
}

#learn-recipes, #read-blogs {
  cursor: pointer;
}

#learn-recipes > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(75%);
  transition: .6s;
}

#read-blogs > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(75%);
  transition: .6s;
}

#learn-recipes:hover > img, #read-blogs:hover > img {
  filter: brightness(100%);
  transition: .6s;
}

#learn-recipes > div, #read-blogs > div {
  position: absolute;
  border-radius: 16px;
  background: rgba(79,114,52,0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Hero 2 */

#hero-2 {
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

#hero-2 .card {
  height: 300px;
  border-style: none;
  transition: .6s;
}

#hero-2 .card:hover {
  transition: .6s;
  box-shadow: -4px 4px 9px var(--bs-gray-600);
  margin-top: -15px;
  margin-bottom: 15px;
}

#hero-2 .card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(90%);
}

#hero-2 .card .btn {
  opacity: 0;
  transition: .3s;
}

#hero-2 .card:hover .btn {
  opacity: 1;
  transition: .6s;
}

#hero-2 .option-2 {
  background: #4f7234;
  height: 100vh;
}

#modal-recipe {
}

/* Hero 3 */

#hero-3 {
  min-height: 100vh;
  padding-bottom: 60px;
  padding-top: 60px;
}

#hero-3 .card.main {
  height: 400px;
  border-style: none;
  border-radius: 16px;
  /*box-shadow: -1px 1px 7px 0px var(--bs-gray);*/
}

#hero-3 .card .description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#hero-3 .popular-div a {
  text-decoration: none;
}

#hero-3 .card.main img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

#hero-3 .card.popular {
  width: 100%;
  border-style: none;
  border-radius: 16px;
  background: rgba(255,255,255,0);
  transition: .3s;
}

#hero-3 .card.popular:hover {
  background: rgb(79,114,52);
  transition: .6s;
}

#hero-3 .card.popular:hover h4 {
  transition: .6s;
  color: #f3f4e2 !important;
}

#hero-3 .card.popular:hover p {
  transition: .6s;
  color: var(--bs-gray-400) !important;
}

#hero-3 .card.popular img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 180px;
  border-radius: 16px;
}

#hero-3 .tags a {
  border-radius: 50px;
  background: #4f7234;
  color: #f3f4e2;
  text-decoration: none;
}

