* {
  font-family: "Inter", sans-serif;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.6);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}
.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.glass-effect {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.nav-scrolled {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(15px);
}

.product-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.food-gradient {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.black-text {
  color: rgba(0, 0, 0, 0.9); 
}
