body {
  background: #f9f9f9;
}

html {
  scroll-behavior: smooth;
}

.font-outfit {
  font-family: "Outfit";
}

.font-playball {
  font-family: "Playball";
}

/* bounces img */
.bounce {
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* bounceSupport img */
.bounceSupport {
  animation: bounceSupport 5s infinite;
}

@keyframes bounceSupport {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Center navigation buttons */
.swiper-navigation-container {
  position: absolute;
  bottom: -60px; /* Adjust the distance below the cards */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 40px;
  height: 40px;
  background-color: #f15e32 !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 12px;
  font-weight: 900;
  color: white;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.scroll-section,
.image-section {
  opacity: 0;
  transform: scale(0.5);
}

.bg-layer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: 100%;
}

.bg1 {
  background-image: url("images/foodBg.jpg");
}

.bg2 {
  background-image: url("images/foodBg2.jpg"); /* will be set dynamically too */
}

/* rotate image circular */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.orbit-rotate {
  animation: rotate 30s linear infinite;
}

.orbit-rotate > div > img {
  animation: counter-rotate 30s linear infinite;
}

@keyframes counter-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
