/* ========== Global Styles ========== */
body {
  font-family: Arial, sans-serif;
  font-size: 18px;     /* bump up from 16px */
  line-height: 1.7;    /* extra breathing room */
  color: #333;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
}

/* Page wrapper ensures consistent width */
.page-wrapper {
  max-width: 950px;
  margin: auto;
  padding: 0 15px;
}

/* ========== Navigation Bar ========== */
nav {
  display: flex;
  justify-content: center;  /* center nav links */
  gap: 20px;
  margin: 20px 0;
}

nav a {
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

/* ========== Main Container ========== */
.container {
  display: flex;
  flex-direction: row;      /* side by side */
  align-items: flex-start;
  gap: 40px;
}

/* ========== Left Column: Profile (Photo-focused) ========== */
.profile-column {
  flex: 0 0 300px;     
  text-align: center;
}

.profile-pic {
  width: 180px;          /* large photo */
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

.profile-name {
  font-size: 1.3rem;     /* reduced name size */
  font-weight: bold;
  margin: 0.4rem 0;
}

.profile-title {
  font-size: 0.9rem;     /* modest title */
  font-weight: normal;
  line-height: 1.3;
  margin: 0.3rem 0;
  color: #444;
}

.profile-location {
  font-size: 0.8rem;     /* smaller location */
  color: #666;
  margin-bottom: 0.4rem;
}

.profile-links {
  font-size: 0.8rem;     /* subtle links */
}

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

.profile-links a:hover {
  text-decoration: underline;
}

/* ========== Right Column: About Me ========== */
.about-column {
  flex: 1;
  min-width: 300px;
}

.about-column h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

/* ========== Responsive: Mobile View ========== */
@media (max-width: 700px) {
  .container {
    flex-direction: column;   /* stack vertically on small screens */
  }

  .profile-column {
    margin-bottom: 20px;
  }
}
