/* Grand News Food Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700;900&family=Bebas+Neue&display=swap');

:root {
  --primary-orange: #f97316;
  --deep-orange: #ea580c;
  --bbq-red: #dc2626;
  --charcoal: #18181b;
  --charcoal-light: #27272a;
  --warm-gold: #f59e0b;
}

body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  color: #18181b;
  background-color: #fafaf9;
  scroll-behavior: smooth;
}

.font-display {
  font-family: 'Bebas Neue', 'Noto Sans SC', sans-serif;
  letter-spacing: 0.05em;
}

/* Hero gradient */
.hero-bg {
  background: radial-gradient(circle at 70% 30%, rgba(251, 146, 60, 0.18) 0%, rgba(254, 243, 199, 0.3) 40%, #fafaf9 80%);
}

.hero-glow {
  box-shadow: 0 20px 50px -10px rgba(234, 88, 12, 0.25);
}

/* Card hover animation */
.card-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* Badge pulse */
@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.badge-pulse {
  animation: softPulse 2.5s infinite ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a1a1aa;
}

/* Mobile floating action bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .mobile-call-bar {
    display: none;
  }
}

/* Intent Pills */
.intent-pill {
  border-color: #e4e4e7;
  background-color: #f4f4f5;
  color: #52525b;
  cursor: pointer;
}
.intent-pill:hover {
  border-color: #fb923c;
  color: #ea580c;
  background-color: #fff7ed;
}
.intent-pill.active {
  border-color: #ea580c;
  background-color: #fff7ed;
  color: #c2410c;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(234, 88, 12, 0.2);
}

/* Modal animation */
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-animate-in {
  animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Floating dock pulse halo */
@keyframes dockHalo {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(234, 88, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
  }
}

.dock-halo {
  animation: dockHalo 3s infinite;
}
