    /* * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --foodstories-main-font: "Outfit", sans-serif;
        --foodstories-heading-font:  "Kavoon", serif;
        --foodstories-subtitle-font: "Roboto Condensed", sans-serif;
        --foodstories-letter-space: 1px;
        --foodstories-heading-font-size:39px;
        --foodstories-subtitle-font-size:28px;
        --foodstories-main-font-size:18px;
    }
    .foodstories-sectionbg{
        background-color: #e1c0e0;
    }
    .foodstories-section {
      padding: 5rem 1rem;
    }

    .foodstories-title {
    font-family: var(--foodstories-heading-font);
        text-transform:capitalize; 
        font-size: var(--foodstories-heading-font-size);
      font-weight: 700;
      color: #5D2F77;
    }

    .foodstories-subtitle {
      font-family: var(--services-subtitle-font);
        text-transform:capitalize; 
        font-size: var(--services-subtitle-font-size);
      color: #2e2a2a;
    }

 
    .foodstories-card {
      width: 100%;
      height: 300px;
      border-radius: 1.5rem;
      position: relative;
      background-size:cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .foodstories-card:hover {
      transform: scale(1.05);
    }

    .foodstories-details {
      position: absolute;
      bottom: -15rem;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      background: #fff;
      border-radius: 1rem;
      text-align: center;
      box-shadow: 0 8px 24px hsla(0,0%,0%,0.15);
      opacity: 0;
      transition: all 0.5s ease;
    }

    .foodstories-card:hover .foodstories-details {
      opacity: 1;
      bottom: 1rem;
    }

    .foodstories-details p {
      color: #555;
    }

    .foodstories-details h3 {
      color: #222;
    }

    .foodstories-details a {
      color: #ff5e62;
      text-decoration: none;
      font-weight: 500;
    }

    .foodstories-details a:hover {
      text-decoration: underline;
    }


    @media (max-width: 991px) {
      .foodstories-card {
        height: 300px;
      }
    }

    @media (max-width: 768px) {
      .foodstories-card {
        height:230px;
      }
    }

    @media (max-width: 450px) {
      .foodstories-card {
        height: 250px;
      }
      .foodstories-title {
        font-size: 2rem;
      }
      .foodstories-subtitle {
        font-size: 1.2rem;
      }
    } */




    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --foodstories-main-font: "Outfit", sans-serif;
    --foodstories-heading-font:  "Kavoon", serif;
    --foodstories-subtitle-font: "Roboto Condensed", sans-serif;
    --foodstories-letter-space: 1px;
    --foodstories-heading-font-size:39px;
    --foodstories-subtitle-font-size:28px;
    --foodstories-main-font-size:18px;
}
.foodstories-sectionbg{
    background-color: #e1c0e0;
}
.foodstories-section {
  padding: 5rem 1rem;
}

.foodstories-title {
  font-family: var(--foodstories-heading-font);
  text-transform:capitalize; 
  font-size: var(--foodstories-heading-font-size);
  font-weight: 700;
  color: #5D2F77;
}

.foodstories-subtitle {
  font-family: var(--foodstories-subtitle-font);
  text-transform:capitalize; 
  font-size: var(--foodstories-subtitle-font-size);
  color: #2e2a2a;
}

/* Card */
.foodstories-card {
  width: 100%;
  height: 300px;
  border-radius: 1.5rem;
  position: relative;
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.foodstories-card:hover {
  transform: scale(1.05);
}

.foodstories-details {
  position: absolute;
  bottom: -15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: #fff;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 24px hsla(0,0%,0%,0.15);
  opacity: 0;
  transition: all 0.5s ease;
}

.foodstories-card:hover .foodstories-details {
  opacity: 1;
  bottom: 1rem;
}

.foodstories-details p {
  color: #555;
}

.foodstories-details h5 {
  color: #222;
}

.foodstories-details a {
  color: #ff5e62;
  text-decoration: none;
  font-weight: 500;
}

.foodstories-details a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .foodstories-card {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .foodstories-card {
    height:230px;
  }
}

@media (max-width: 450px) {
  .foodstories-card {
    height: 250px;
  }
  .foodstories-title {
    font-size: 2rem;
  }
  .foodstories-subtitle {
    font-size: 1.2rem;
  }
}