/* Import Google Fonts - Inter family with multiple font weights */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base body styles */
body {
  font-family: 'Inter', sans-serif; /* Set the default font for the site */
  scroll-behavior: smooth;          /* Smooth scrolling for anchor links and page navigation */
}

html, body {
  margin: 0;
  padding: 0;
}

/* Custom scrollbar styles for Webkit browsers (Chrome, Safari) */

/* Scrollbar width */
::-webkit-scrollbar {
  width: 8px; /* Set the width of the vertical scrollbar */
}

/* Scrollbar track (background behind the thumb) */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Light gray track background */
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #3e2f83;  /* Set thumb color to the secondary brand color */
  border-radius: 4px;   /* Rounded corners for the thumb */
}

/* Hover effect for scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
  background: #2d2165; /* Darker shade on hover for visual feedback */
}
