/* === TYPOGRAPHY BASE === */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.hero-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #111;
}

.hero-phrase {
  font-size: 1.2rem;
  color: #333;
  margin: 6px 0;
  line-height: 1.5;
}


/* === HEADINGS === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 60px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}


/* === PARAGRAPHS === */
p {
  margin-bottom: 1.25rem;
  color: #222;
  font-size: 1rem;
  line-height: 1.7;
}


/* === LINKS === */
a {
  color: #1d3557;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #13314d;
  text-decoration: underline;
}


/* === LISTS === */
ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}


/* === BLOCKQUOTES === */
blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 4px solid #1d3557;
  color: #444;
  font-style: italic;
}


/* === CODE === */
code {
  font-family: 'Courier New', monospace;
  background-color: #f4f4f4;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 0.95rem;
}


/* === SMALL TEXT === */
small {
  font-size: 0.85rem;
  color: #666;
}


/* === HIGHLIGHT / MARK === */
mark {
  background-color: #ffeaa7;
  padding: 2px 4px;
  border-radius: 2px;
}