/*--------------------------------------------------------------
# General - Base Styles
--------------------------------------------------------------*/

/* Base Font & Colors */
body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: #444444;
  line-height: 1.6;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #47b2e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Poppins', sans-serif;
  color: #37517e;
  line-height: 1.3;
}

/* Selection */
::selection {
  background: rgba(71, 178, 228, 0.25);
  color: #37517e;
}

::-moz-selection {
  background: rgba(71, 178, 228, 0.25);
  color: #37517e;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #47b2e4, #73c5eb);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #37a2d4, #63b5db);
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 3px solid rgba(71, 178, 228, 0.5);
  outline-offset: 2px;
}

/* Image Defaults */
img {
  max-width: 100%;
  height: auto;
}