/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Custom styles for EasyFoodList landing page */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Subtle hover effects only */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

/* Static gradient text - no animation */
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced glass morphism effect for light theme */
.glass-effect {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Subtle glow effects for buttons on hover only */
.glow-blue:hover {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.glow-emerald:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Improved text readability */
.text-shadow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive improvements */
@media (max-width: 640px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
  }
}

/* Custom scrollbar for webkit browsers - light theme */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(243, 244, 246, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #2563eb, #4f46e5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #1d4ed8, #4338ca);
}
