body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
}
header {
  display: flex;  /*aligns image and text horizontally */ 
  align-items: center;  /* vertically center photo + text */
  padding: 40px 20px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-right: 20px;  /* space between photo and text */
}

.header-text {
  display: flex;
  flex-direction: column;
}

.header-text h1 {
  font-weight: bold;
  font-size: 2.5rem;   /* bigger for hero section */
  color: #222;         /* dark for contrast */
  margin: 0 0 10px 0;  /* spacing below */
}

.header-text .subtitle {
  font-weight: bold;
  font-size: 1.2rem;   /* slightly smaller than name */
  margin: 0 0 5px 0;
}

.header-text .tools {
  font-weight: bold;
  font-size: 1rem;
  display: inline;     /* keep all tools on one line */
  color: #555;
  margin: 0;
}

.cv-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.cv-btn:hover {
  background: #333;
}

.subtitle {
  font-size: 1.2rem;
  margin: 5px 0;
}

.tools {
  color: #555;          /* keep the gray color */
  font-weight: bold;     /* make it bold */
  display: inline;       /* keep everything on one line */
  font-size: 1rem;       /* adjust size if needed */
}

.links a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  color: #0066cc;
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.project {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.project a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

ul {
  list-style-type: square;
}

footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #ddd;
}
