/* 
 * assets/css/reset.css
 * Modern CSS Reset 
 */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  /* Smooth scrolling native behavior */
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  background: transparent;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}
