/* Base */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0c0c0c;
  color: #fff;
  line-height: 1.6;
}

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background: #121212;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--fg);
    }

    .logo img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
    }

 nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem; }
ul { list-style: none; padding: 0; margin: 0; }
li { display: inline-block; margin: 0 10px; }
a { color: #fff; text-decoration: none; position: relative; }
a:after {
  content: "";
  display: block;
  height: 2px;
  background: #ffbb00;
  width: 0;
  transition: 0.3s;
}
a:hover:after { width: 100%; }

/* Hero */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}
.intro-text h1 { font-size: 2rem; margin-bottom: 0.5rem; }

/* Sections */
section {
  padding: 2rem;
  border-bottom: 1px solid #222;
}
h2 { color: #ffbb00; margin-bottom: 1rem; }

/* Experience Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.exp-card {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.exp-card h3 { margin-top: 0; }

/* Skills */
.skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}
.skills li {
  background: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  border-top: 1px solid #222;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .headshot {
    width: 140px;
    height: 140px;
  }
}
