/* ===================================
   TEAM SAMSARA - RESET & BASE STYLES
   =================================== */

/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base body styles */
body {
  font-family: var(--font-bahnschrift);
  background: var(--color-background);
  color: var(--color-primary);
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/* Remove default button styles */
button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* Remove default input styles */
input {
  border: none;
  background: none;
  font-family: inherit;
}

input:focus {
  outline: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}