@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
}
.linkactive {
  color: #fc0254;
  text-decoration: underline;
  text-decoration-color: #fc0254;
  font-weight: bold;
}
.links {
  cursor: pointer;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-weight: bold;
}
.links:hover {
  color: #fc0254;
  text-decoration: underline;
  text-decoration-color: #fc0254;
}
.recipe-card {
  position: relative;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

/* Overlay with "+" */
.image-wrapper::after {
  content: "+";
  background-color: rgba(255, 0, 128, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  transition: height 0.3s ease;
  color: white;
  font-size: 60px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.recipe-card:hover .image-wrapper::after {
  height: 100%;
}

.recipe-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .recipe-card h3 {
      font-size: 18px;
      padding: 10px;
      margin: 0;
    }

    .recipe-card h6 {
      margin-top: 10px;
      font-size: 14px;
      color: #888;
    }

    @media (max-width: 767.98px) {
      .h-100-mobile {
        height: auto !important;
      }
    }
    .circle{
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: url(https://preview.colorlib.com/theme/yummy/img/feature-1.jpg);
}
.section4{
    background-color: #f8f9fb;
    height: 300px;
    padding-left: 20px;
    padding-top: 20px;
}