@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

:root {
  --primary-color: #f59e0b;
  --primary-hover: #fbbf24;
  --bg-color: #000000;
  --text-light: #d1d5db;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fbbf24;
}

/* Add any custom non-Tailwind styles here */