:root {
  --color-brand-primary: #064e3b; /* Emerald 900 */
  --color-brand-secondary: #047857; /* Emerald 600 */
  --color-accent: #d97706; /* Amber 600 */
  --color-surface: #fef3c7; /* Amber 50 */
  --color-text-main: #1f2937; /* Gray 800 */
  --color-text-muted: #4b5563; /* Gray 600 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--color-brand-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-primary);
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-main);
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--color-brand-primary);
}

/* Utility Classes */
.text-brand { color: var(--color-brand-primary); }
.text-accent { color: var(--color-accent); }
.bg-brand { background-color: var(--color-brand-primary); }
.bg-brand-light { background-color: var(--color-surface); }
.border-brand { border-color: var(--color-brand-secondary); }

/* Components */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: white;
  background-color: var(--color-accent);
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: #b45309; /* Amber 700 */
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--color-brand-primary);
  background-color: transparent;
  border: 2px solid var(--color-brand-primary);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--color-brand-primary);
  color: white;
}

/* Restaurant Specific */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--color-brand-primary);
  color: white;
  font-weight: 700;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.cuisine-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-surface);
  color: var(--color-brand-primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid rgba(6, 78, 59, 0.1);
}

.price-indicator {
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}
.price-indicator .active {
  color: var(--color-brand-primary);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Hero Gradients */
.hero-gradient {
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, #022c22 100%);
}
