/* Base styles */
body {
  font-family: 'Noto Serif', 'Lohit Oriya', serif;
  background-color: #fdfcf8;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #e6ddc4;
  padding: 1.5em;
  text-align: center;
  border-bottom: 2px solid #c2b280;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #5c4b2d;
}

.subtitle {
  font-style: italic;
  color: #7a6a4f;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  background-color: #f2e8d5;
  padding: 0.5em;
  list-style: none;
  margin: 0;
}

nav li {
  margin: 0 1em;
}

nav a {
  text-decoration: none;
  color: #5c4b2d;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  padding: 2em;
}

.text-block h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  color: #3e3e3e;
}

.pali {
  font-family: 'Noto Serif', serif;
  font-size: 1.2em;
  color: #4b3f2f;
}

.odia {
  font-family: 'Lohit Oriya', 'Noto Sans Oriya', serif;
  font-size: 1.2em;
  color: #2f3f4b;
}

.translation {
  font-family: 'Georgia', serif;
  font-size: 1em;
  color: #555;
  margin-top: 1em;
}

/* Footer */
footer {
  background-color: #e6ddc4;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  color: #5c4b2d;
  border-top: 2px solid #c2b280;
}