/* ===== Eric Meyer's Reset + Normalize Enhancements ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-style: normal;
  color: #fff;
  background: #000;
}

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

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Inherit font and color for form elements */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

/* Box sizing for all */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Default link styling */
a {
  color: inherit;
  text-decoration: none;
}

/* Images */
img, picture {
  max-width: 100%;
  display: block;
}

/* Input + button fallback styles */
button, input[type="submit"] {
  background-color: blue;
  color: white;
  border-radius: 6px;
  border: 1px solid #aaa;
  padding: 0.6em 1.2em;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background-color: #66f;
}

/* Typography base */
:root {
  font-size: 75%;
}
body {
  font-size: 1.15rem;
}
p {
  font-size: 1.2rem;
}
h1 { font-size: 5.4vw; font-family: Arial, sans-serif; }
h2 { font-size: 4.4vw; }
h3 { font-size: 1.3rem; text-transform: uppercase; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.1rem; text-transform: uppercase; }
h6 { font-size: 1.0rem; }

/* Responsive typography scaling */
@media screen and (min-width: 600px) {
  :root { font-size: 100%; }
}
@media screen and (min-width: 1000px) {
  :root { font-size: 125%; }
}
