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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #212529;
  background-color: #F8F9FA;
}

a {
  color: #0D6E6E;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  background-color: #F8F9FA;
  border-bottom: 1px solid #E9ECEF;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

nav a {
  font-size: 15px;
  color: #212529;
  font-weight: 600;
}

nav a:hover {
  color: #0D6E6E;
  text-decoration: none;
}

/* Hero Section */
#hero {
  padding: 60px 0;
  text-align: center;
}

.headshot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 24px;
  border: 3px solid #E9ECEF;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1rem;
  color: #0D6E6E;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 0.95rem;
  color: #495057;
}

/* Section Styles */
section {
  padding: 60px 0;
}

section + section {
  border-top: 1px solid #E9ECEF;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0D6E6E;
  margin-bottom: 20px;
}

/* Bio Section */
#bio p {
  color: #212529;
  margin-bottom: 12px;
}

#bio p:last-child {
  margin-bottom: 0;
}

/* Skills Section */
.skills-group {
  margin-bottom: 20px;
}

.skills-group:last-child {
  margin-bottom: 0;
}

.skills-group h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #495057;
  margin-bottom: 12px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tag-technical {
  background-color: #0D6E6E;
  color: #fff;
}

.tag-interpersonal {
  background-color: #E9ECEF;
  color: #212529;
}

/* Experience Section */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.experience-card {
  background-color: #E9ECEF;
  border-radius: 8px;
  padding: 24px;
}

.experience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 4px;
}

.experience-card .role {
  font-size: 0.875rem;
  color: #0D6E6E;
  font-weight: 600;
  margin-bottom: 4px;
}

.experience-card .date {
  font-size: 0.8rem;
  color: #6C757D;
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 0.9rem;
  color: #495057;
}

/* Contact Section */
#contact .contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #212529;
}

.contact-link a {
  color: #0D6E6E;
  font-weight: 600;
}

.contact-link a:hover {
  text-decoration: underline;
}

.contact-label {
  font-weight: 600;
  min-width: 72px;
  color: #495057;
}

/* Footer */
footer {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #6C757D;
  border-top: 1px solid #E9ECEF;
}

/* Responsive */
@media (max-width: 600px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  nav .container {
    justify-content: center;
    gap: 20px;
  }

  #hero {
    padding: 40px 0;
  }

  section {
    padding: 40px 0;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.25rem;
  }

  .tagline {
    font-size: 0.9rem;
  }
}
