/* ==========================================================================
   Base - Reset, Typography, Global Styles
   Monotics WordPress Theme
   ========================================================================== */

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

/* --- Smooth Scroll --- */
html {
  scroll-behavior: smooth;
}

/* --- Body --- */
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Selection --- */
::selection {
  background: rgba(0, 200, 255, 0.25);
  color: var(--white);
}

::-moz-selection {
  background: rgba(0, 200, 255, 0.25);
  color: var(--white);
}

/* --- Links --- */
a {
  color: inherit;
  text-decoration: none;
}

/* --- Images --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Lists --- */
ul,
ol {
  list-style: none;
}

/* --- Focus visible for accessibility --- */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* --- Paragraph --- */
p {
  line-height: 1.7;
}

/* --- Screen reader only utility --- */
.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;
}
