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

html {
  height: 100%;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  min-height: 100dvh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  /* 78px = fixed navbar height — keeps content below navbar */
  padding-top: 78px;
  overflow-x: hidden; /* Убираем горизонтальный скролл на всей странице */
}

button,
input,
textarea,
select {
  font: inherit;
}

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

/* Remove old decorative background layers */
body::before,
body::after {
  display: none !important;
}
