/* Custom styles for Mercado Davis */

/* Typography */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
}

/* Brand colors (already defined in base.html with Tailwind) */
.text-brand-primary {
  color: #c41230;
}

.text-brand-secondary {
  color: #2c5f2d;
}

.text-brand-accent {
  color: #ff9500;
}

/* Custom styles for menu items */
.menu-item-container {
  transition: all 0.3s ease;
}

.menu-item-container:hover {
  transform: translateY(-3px);
}

/* Spice indicator animations */
.spice-indicator {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

/* Custom button styles */
.btn-primary {
  background-color: #c41230;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #a00f27;
}

.btn-secondary {
  background-color: #2c5f2d;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #224a24;
}

/* Improve readability of section headers */
.section-header {
  position: relative;
  font-weight: 700;
  padding-bottom: 0.5rem;
}

.section-header:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #c41230;
}

/* Special styles for promotional content */
.promo-card {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.promo-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Improve mobile menu experience */
@media (max-width: 768px) {
  .mobile-menu-container {
    width: 100%;
    padding: 1rem;
  }
  
  .mobile-menu-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
  }
}
