/* src/components/YummyliciousRecipes.css */

/* Styling the section and container */
.section {
    padding: 50px 0;
    background-color: #f8f9fa;
  }



  /* Title styling */
  h2.wow.fadeScale {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
  }

  /* OwlCarousel styles */
  .owl-theme .owl-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .owl-theme .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
  }

  /* .owl-theme .owl-dot.active {
    background-color: #007bff;
  } */

  /* Styling for each recipe item */
  .box-info-modern {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .box-info-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }

  /* YouTube iframe styling */
  .box-info-modern iframe {
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
  }

  /* Recipe title styling */
  .box-info-modern-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }

  .box-info-modern-title a {
    color: #333;
    text-decoration: none;
  }

  .box-info-modern-title a:hover {
    color: #007bff;
  }

  /* "Read more" link styling */
  .box-info-modern-link {
    font-size: 14px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-top: 10px;
  }

  .box-info-modern-link:hover {
    text-decoration: underline;
  }

  /* Responsive styles */
  @media (max-width: 992px) {
    .owl-theme .owl-dots {
      bottom: -30px;
    }
  }

  @media (max-width: 576px) {
    .box-info-modern iframe {
      max-width: 100%;
      height: 200px;
    }

    h2.wow.fadeScale {
      font-size: 28px;
    }
  }
