/* Storefront Notes — base.css
   Reset + foundational rules. Deliberately simple, dated-WordPress feel. */

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3c3c3c;
  background-color: #f4f2ee;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #262421;
  line-height: 1.3;
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

p {
  margin: 0 0 1.2em 0;
}

a {
  color: #2b5d8a;
  text-decoration: underline;
}

a:hover {
  color: #1d4468;
}

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

ul, ol {
  margin: 0 0 1.2em 0;
  padding-left: 1.6em;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.2em 0 1.6em 0;
  font-size: 0.95em;
}

table th, table td {
  border: 1px solid #d8d3c8;
  padding: 8px 10px;
  text-align: left;
}

table th {
  background-color: #ebe7de;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
}

table tr:nth-child(even) {
  background-color: #faf9f6;
}

blockquote {
  margin: 1.4em 0;
  padding: 0.6em 1.2em;
  border-left: 4px solid #c9a45c;
  background-color: #ece7dc;
  font-style: italic;
  color: #4a4741;
}

hr {
  border: none;
  border-top: 1px solid #d8d3c8;
  margin: 2em 0;
}

code {
  background: #ece7dc;
  padding: 2px 5px;
  font-size: 0.9em;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #262421;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 2px solid #2b5d8a;
  outline-offset: 2px;
}
