/* ============================================================
   RESET.CSS — CSS Reset & Base Styles
   VirtualToursXR — Light Theme
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:      var(--font-family);
  font-size:        var(--fs-base);
  font-weight:      var(--fw-regular);
  line-height:      var(--lh-normal);
  color:            var(--clr-text-2);
  background-color: var(--clr-bg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color:       var(--clr-text-1);
  letter-spacing: var(--ls-tight);
}

p { line-height: var(--lh-relaxed); }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-base);
}

ul, ol { list-style: none; }

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

button, input, textarea, select {
  font-family: inherit;
  font-size:   inherit;
  border:      none;
  outline:     none;
  background:  none;
  cursor:      pointer;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background-color: rgba(13, 148, 136, 0.18);
  color: var(--clr-text-1);
}
