.foodie-fantasy-icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: url('PATH/TO/YOUR/FOODIE-FANTASY-ICON.png');
  /* replace the line above with your actual logo/icon URL in Zoho */
  background-size: 115%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 25px rgba(178, 134, 68, 0.55);
  overflow: hidden;
}

/* soft magical glow around the circle */
.foodie-fantasy-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(178, 134, 68, 0.5),
    transparent 90%
  );
  z-index: -1;
}

/* hover effect for links/buttons */
.foodie-fantasy-icon:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 35px rgba(178, 134, 68, 0.75);
  transition: all 0.2s ease-out;
}

/* small version for nav or buttons */
.foodie-fantasy-icon--small {
  width: 40px;
  height: 40px;
}
