/* ============================================================
   RESET — Wild Thyme Catering & Events
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--size-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  min-height: 44px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  overflow-wrap: break-word;
}

blockquote {
  font-family: var(--font-quote);
  font-style: italic;
}

.btn, button, input[type=submit], a.btn {
  min-height: 44px;
}