/* Professional, clean layout */
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;  /* Light gray-blue */
  color: #212529;
  line-height: 1.6;
}

header {
  background-color: #183157;
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
  margin: 0;
}

header h1 a {
  text-decoration: none;
  color: #f8f9fa;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  margin-right: 1.5rem;
  text-decoration: none;
  color: #ffffff;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 400;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

footer {
  text-align: center;
  margin: 4rem auto 2rem;
  font-size: 0.9rem;
  color: #6c757d;
}

img {
  max-width: 100%;
  margin-top: 1rem;
  border-radius: 4px;
  box-shadow: 0 6px 4px rgba(0,0,0,0.1);
}

.bio-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.bio-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.profile-pic {
  width: 180px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.bio-text {
  flex: 1;
  min-width: 250px;
}

.bio-text p {
  text-align: justify;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icon {
  background-color: #183157;
  color: white;
  text-decoration: none;
  padding: 0.2rem 0.2rem;
  font-size: 1.3rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 33px;
  min-height: 33px;
  transition: background-color 0.4s ease;
}

.social-icon span {
  font-weight: bold;
  font-family: sans-serif;
  font-size: 0.95rem;
}

.social-icon:hover {
  background-color: #8b98ab;
}

header, main, footer {
  width: 100%;
}

/* Inner content stays aligned and narrow */
.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}


