/* ==========================================================================
   THE BLUE BALE — Reset & Base Normalization
   WordPress Astra Child Theme Compatible
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body,
body.the-blue-bale-theme,
body.ast-desktop,
body.ast-page-builder-template,
body.ast-plain-container,
body.ast-separate-container,
#page,
.site,
.site-content,
#content,
#main,
#main-content,
.ast-container,
.entry-content {
  min-height: 100vh;
  background-color: var(--color-bg, #08090b) !important;
  background: var(--color-bg, #08090b) !important;
  color: var(--color-text, #f4f6fa) !important;
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  border: none !important;
  box-shadow: none !important;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--color-accent, #3d8cff);
  color: #ffffff;
}
