/* Stone Collective - Base Styles */

/* Base HTML */
html {
  font-size: 100%; /* 16px base */
}

/* Body */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-background);
  color: var(--color-text);
}

/* Headings - Sentient serif font */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sentient', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem; /* 56px */
}

h2 {
  font-size: 3.25rem; /* 52px */
}

h3 {
  font-size: 2.75rem; /* 44px */
}

h4 {
  font-size: 2rem; /* 32px */
}

h5 {
  font-size: 1.75rem; /* 28px */
}

h6 {
  font-size: 1.375rem; /* 22px */
}

/* Heading Style Classes - apply heading typography to any element */
.heading-style-h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-style-h2 {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-style-h3 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-style-h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.heading-style-h5 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-style-h6 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Paragraphs */
p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* Links */
a {
  color: var(--color-accent, inherit);
  transition: color 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Strong and emphasis */
strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

/* Blockquote */
blockquote {
  border-left: 3px solid var(--color-text);
  padding-left: 20px;
  font-size: 1.25rem; /* 20px */
  font-style: italic;
  margin: 1em 0;
}

/* Lists */
ul {
  list-style-type: disc;
  padding-left: 24px;
  margin: 1em 0;
}

ul.no-bullets {
  list-style-type: none;
  padding-left: 0;
}

ol {
  list-style-type: decimal;
  padding-left: 24px;
  margin: 1em 0;
}

li {
  margin-bottom: 4px;
}
