/* Base Styles */
body {
  margin: 2rem auto;
  max-width: 600px;
  padding: 1rem;
  font-family: 'Merriweather', serif;
  line-height: 1.6;
  background-color: #fffaf0;
  color: #4B3832;
}

/* Layout */
header {
  /* text-align: center; */
  border-bottom: 1px solid #D3B8AE;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
header h1 {
  margin: 0;
  font-size: 2rem;
}

header .locations {
    font-size: 10px;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 0rem;
}

section {
  margin-bottom: 3rem;
}
section h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-style: italic;
  color: #854442;
}

ul {
  list-style: disc inside;
  padding-left: 1rem;
}
li {
  margin: 0.75rem 0;
}
li a {
  color: #CB997E;
  text-decoration: none;
  font-weight: 500;
}
li a:hover {
  text-decoration: underline;
  color: #A16452;
}

/* Profile and About Section */
.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 5px;
  object-fit: cover;
  display: block;
  margin: 1rem 0rem;
}
.subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #A16452;
  margin-bottom: 0rem;
}
#about {
  margin-bottom: 2rem;
}
#about h3 {
  font-size: 1.3rem;
  font-style: italic;
  color: #854442;
}
#about p {
  margin-top: 0.5rem;
}

footer {
  margin-top: 2rem;
  border-top: 1px solid #D3B8AE;
  /* text-align: center; */
  color: #4B3832;
  font-size: 0.8rem;
  padding-top: 1rem;
}
footer a {
  color: #CB997E;
  text-decoration: none;
  /* padding-right: 10px; */
}
footer a:hover {
  text-decoration: underline;
  color: #A16452;
}
