/* css styles */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

body {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.65;

  background-color: #F7F3ED;   /* warm ivory */
  color: #2B2B2B;              /* charcoal text */
}
h1, h2, h3 {
  font-family: "Lora", serif;
  color: #3B2F2F;   /* dark brown */
}

h1 {
  font-size: 38px;
  font-weight: 600;
}

h2 {
  font-size: 26px;
  font-weight: 500;
}

h3 {
  font-size: 22px;
  font-weight: 500;
}
a {
  color: #8B4A3B;
  text-decoration: none;
}

a:hover {
  color: #3B2F2F;
  text-decoration: underline;
}

.navbar {
  background-color: #F7F3ED;
  border-bottom: 1px solid #D6C3A3;
}

.navbar a {
  color: #3B2F2F !important;
  font-weight: 500;
}

.navbar a:hover {
  color: #8B4A3B !important;
}

button, .btn {
  background-color: #8B4A3B;
  color: #F7F3ED;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-family: "Lora", serif;
}

button:hover, .btn:hover {
  background-color: #3B2F2F;
}

img {
  border-radius: 6px;
}

p {
  margin-bottom: 1.1em;
}

h2 {
  margin-top: 1.8em;
}

.profile-link {
  font-size: 12px;
}

.profile-link img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
