/* Reset + Base */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f9fafb;
  color: #111827;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background: #111827;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
}

.navbar a:hover {
  opacity: 0.75;
}

.nav-logo {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Page Layout */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Headings */
h1, h2, h3 {
  font-weight: 600;
  color: #1f2937;
}

footer {
    margin-top: 60px;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

/* About page layout */
.about-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.profile-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: left;
    width: 100%;
  }
}

/* Resume-specific */
.resume-section {
  margin-bottom: 40px;
}

.resume-section h2 {
  margin-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 6px;
}

.job-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.company {
  font-weight: 500;
  color: #374151;
}

.dates {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
}
