/* ===================================
   RESET - Browser Normalization
   ===================================
   
   Modern CSS reset for consistent baseline across browsers.
*/

/* Box model reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default list styling */
ul, ol {
  list-style: none;
}

/* Remove default quotes */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Form element font inheritance */
input, button, textarea, select {
  font: inherit;
}

/* Remove button styling */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Prevent text overflow */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Root setup */
html, body {
  height: 100%;
  overflow: hidden; /* Fixed viewport - no page scrolling */
}

/* Smooth scrolling for in-page navigation */
html {
  scroll-behavior: smooth;
}

/* Remove default focus outline (we'll add custom focus rings) */
*:focus {
  outline: none;
}
