/* ==========================================================================
   CSS Reset — Envision Tattoo Studio
   Modern normalization only; no visual styling.
   ========================================================================== */

/* Box-sizing reset: inherit border-box on all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Strip default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Smooth scrolling and consistent text sizing across devices */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Full-height body with improved text rendering */
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Responsive media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form elements inherit parent font */
input,
button,
textarea,
select {
  font: inherit;
}

/* Prevent long words from overflowing text containers */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Tighter line-height for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

/* Unstyled, inheritable links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default list markers */
ul,
ol {
  list-style: none;
}

/* Neutral button reset */
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Focus indicator — styled in base.css using CSS variable */

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto;
  }
}
