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

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* Base Body Styles Reset */
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0c0c0e !important;
  color: #f1f5f9 !important;
}

body {
  background-color: #0c0c0e !important;
  color: #f1f5f9 !important;
  background-image: radial-gradient(circle at 50% -10%, #15151c 0%, #0c0c0e 65%) !important;
}

/* Headers style overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  letter-spacing: -0.025em;
  color: #ffffff;
}

/* Premium smooth Linktree styling for links */
.portfolio-link {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-link:hover {
  transform: scale(1.02);
  background-color: #1f1f24 !important;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5) !important;
}

.portfolio-link:active {
  transform: scale(0.985);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #0c0c0e;
}

::-webkit-scrollbar-thumb {
  background: #1b1b22;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2b2b36;
}
