/* Hero Section - Marquee Animation */
.hero-marquee {
  background-color: var(--primary-color);
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: absolute;
  left: 0;
  height: 60px;
  box-sizing: content-box;
}

.hero-marquee + * {
  padding-top: 60px !important;
}

.hero-marquee-wrapper {
  display: inline-flex;
  animation: marquee 40s linear infinite;
  animation-play-state: running;
  will-change: transform;
  gap: 50px;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-marquee-content {
  display: inline-flex;
  gap: 50px;
  flex-shrink: 0;
}

.hero-marquee-content span {
  font-size: 36px;
  font-weight: 800;
  line-height: 60px;
  display: inline-block;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Responsive Design - Hero*/
@media (max-width: 576px) or (max-height: 576px) {
  .hero-marquee {
    height: 40px;
  }

  .hero-marquee + * {
    padding-top: 40px !important;
  }

  .hero-marquee-content span {
    font-size: 20px;
    line-height: 40px;
  }
}

/* B1F1 Marquee Animation */
.b1f1-marquee {
  background-color: #fed73b;
  border-top: 6px solid var(--primary-color);
  border-bottom: 6px solid var(--primary-color);
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  height: 60px;
  box-sizing: content-box;
}

.b1f1-marquee + * {
  margin-top: 72px !important;
}

.b1f1-marquee-wrapper {
  display: inline-flex;
  animation: marquee 40s linear infinite;
  animation-play-state: running;
  will-change: transform;
  gap: 50px;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.b1f1-marquee-content {
  display: inline-flex;
  gap: 50px;
  flex-shrink: 0;
}

.b1f1-marquee-content span {
  font-size: 36px;
  font-weight: 800;
  line-height: 60px;
  display: inline-block;
  color: black;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Responsive Design - B1F1 */
@media (max-width: 576px) {
  .b1f1-marquee {
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    height: 40px;
  }

  .b1f1-marquee + * {
    margin-top: 48px !important;
  }

  .b1f1-marquee-content span {
    font-size: 20px;
    line-height: 40px;
  }
}

/* Menu Selections Marquee Animation */
.menu-selections-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.menu-selections-marquee-wrapper {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  animation-play-state: running;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.menu-selections-marquee-content {
  display: inline-flex;
  gap: 0;
  flex-shrink: 0;
}

/* Responsive Design - Menu Selections Marquee */
@media (max-width: 768px) {
  .menu-selections-marquee-wrapper {
    animation-duration: 25s;
  }
}

/* Animations */
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
