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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #cdd6f4;
  background-color: #1e1e2e;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #cdd6f4;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #cdd6f4;
  border-bottom: 2px solid #313244;
  padding-bottom: 0.4rem;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #bac2de;
}

p {
  margin-bottom: 1rem;
  color: #bac2de;
}

a {
  color: #89b4fa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: #bac2de;
}

.subtitle {
  font-size: 1rem;
  color: #a6adc8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top; /* keeps focus on your face */
  border: 3px solid #313244;
  flex-shrink: 0; /* prevents photo from squishing on narrow screens */
}
