/* Typography for Headings */
h1, h2, h3 {
  font-family: 'EB Garamond', serif;
  color: #5c4033;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* Body font with polytonic Greek support */
body, p, ul, ol {
  font-family: 'Cardo', 'Gentium Plus', 'Palatino Linotype', serif;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333;
}

/* Optional Greek class for emphasis */
.greek {
  font-family: 'Gentium Plus', 'Cardo', serif;
  font-style: italic;
}

/* Background parchment look */
body.site {
  background-color: #fdf8ef;
  background-image: url('/images/parchment-texture.jpg'); /* optional */
  background-repeat: repeat;
  background-size: cover;
}

/* Link colors */
a {
  color: #4b3b2b;
  text-decoration: none;
}
a:hover {
  color: goldenrod;
}

