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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  line-height: 1.6;
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  scroll-behavior: smooth; /* Ensure smooth scrolling */
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

/* Scroll lock */
html:has(#mobile-menu-toggle:checked),
body:has(#mobile-menu-toggle:checked) {
  overflow: hidden;
  height: 100%;
}

/* Fix for Safari */
@supports (-webkit-touch-callout: none) {
  html:has(#mobile-menu-toggle:checked),
  body:has(#mobile-menu-toggle:checked) {
    position: fixed;
    width: 100%;
  }
}
