/* DummyFill Pro — Base Styles */

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

/* Body defaults */
body {
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Heading defaults */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-extrabold);
  line-height: var(--line-height-heading);
}

/* Link defaults */
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Image defaults */
img {
  max-width: 100%;
  display: block;
}

/* Accessible focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 800;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
