body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #111;
  color: #f5f5f5;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #111;
  border-bottom: 1px solid #222;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4fd1c5; /* Accent color */
}

.home-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
}

.intro h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.tagline {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .intro h1 {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1rem;
  }
}

/* Projects Page Styles */
.projects-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}

.projects-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #181818;
  border-radius: 1rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 1px solid #232323;
}
.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 32px 0 rgba(79,209,197,0.10);
  border-color: #4fd1c5;
}

.project-image-placeholder {
  width: 100%;
  height: 140px;
  background: #232323;
  border-radius: 0.7rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 1.1rem;
  font-style: italic;
}

.project-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border-radius: 0.7rem;
  background: #232323;
  display: block;
}

.project-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #fff;
}

.project-content p {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 0.7rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.project-tags span {
  background: #232323;
  color: #4fd1c5;
  font-size: 0.92rem;
  padding: 0.22rem 0.7rem;
  border-radius: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.project-links {
  margin-top: 0.2rem;
}
.project-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1.2rem;
  transition: color 0.2s;
}
.project-links a:hover {
  color: #4fd1c5;
}

@media (max-width: 600px) {
  .projects-main {
    padding: 1rem 0.2rem 2rem 0.2rem;
  }
  .projects-title {
    font-size: 1.4rem;
  }
  .projects-grid {
    gap: 1rem;
  }
  .project-card {
    padding: 1rem 0.7rem 0.7rem 0.7rem;
  }
  .project-image img {
    height: 90px;
  }
  .project-content h2 {
    font-size: 1.05rem;
  }
  .project-content p {
    font-size: 0.95rem;
  }
  .project-tags span {
    font-size: 0.85rem;
  }
}

/* Experience Page Styles */
.experience-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}

.experience-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

.timeline {
  position: relative;
  margin-left: 2.2rem;
  padding-left: 1.5rem;
  border-left: 3px solid #4fd1c5;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  min-height: 44px; /* ensure enough space for logo */
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.timeline-item.in-view {
  opacity: 1;
  transform: translateX(0);
}
/* Alternate direction for odd items */
.timeline-item:nth-child(odd) {
  transform: translateX(40px);
}
.timeline-item.in-view:nth-child(odd) {
  transform: translateX(0);
}

.timeline-content {
  background: #181818;
  border-radius: 1rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  border: 1px solid #232323;
  margin-left: 0.5rem;
}

.exp-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.exp-company {
  font-weight: 700;
  color: #4fd1c5;
  font-size: 1.1rem;
}
.exp-role {
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
}
.exp-dates {
  color: #b0b0b0;
  font-size: 0.98rem;
  font-style: italic;
}

.exp-bullets {
  margin: 0.5rem 0 0.7rem 1.1rem;
  color: #b0b0b0;
  font-size: 1rem;
}
.exp-bullets li {
  margin-bottom: 0.3rem;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.exp-tags span {
  background: #232323;
  color: #4fd1c5;
  font-size: 0.92rem;
  padding: 0.22rem 0.7rem;
  border-radius: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.exp-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #232323;
  border: 2px solid #4fd1c5;
  position: absolute;
  left: -3.3rem;
  top: 0.1rem;
  z-index: 3;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}

@media (max-width: 600px) {
  .experience-main {
    padding: 1rem 0.2rem 2rem 0.2rem;
  }
  .experience-title {
    font-size: 1.4rem;
  }
  .timeline {
    margin-left: 1.1rem;
    padding-left: 0.7rem;
    border-left-width: 2.5px;
  }
  .timeline-content {
    padding: 0.8rem 0.7rem 0.7rem 0.7rem;
  }
  .exp-header {
    flex-direction: column;
    gap: 0.2rem;
  }
  .exp-company, .exp-role, .exp-dates {
    font-size: 0.98rem;
  }
  .exp-bullets {
    font-size: 0.95rem;
    margin-left: 0.7rem;
  }
  .exp-tags span {
    font-size: 0.85rem;
  }
  .exp-logo {
    width: 28px;
    height: 28px;
    left: -2.1rem;
    top: 0.1rem;
  }
}

/* About Page Styles */
.about-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.about-profile {
  flex-shrink: 0;
}
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #232323;
  border: 3px solid #4fd1c5;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
}
.about-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.about-content p {
  font-size: 1.08rem;
  color: #b0b0b0;
  margin-bottom: 1.2rem;
}
.resume-btn {
  display: inline-block;
  background: #4fd1c5;
  color: #111;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 0.7rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
.resume-btn:hover {
  background: #38b2ac;
  color: #fff;
}

.education-section {
  margin-bottom: 2.2rem;
}
.education-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.edu-item {
  background: #181818;
  border-radius: 0.7rem;
  padding: 1rem 1.2rem;
  border: 1px solid #232323;
  color: #f5f5f5;
  font-size: 1.05rem;
}

.skills-section {
  margin-bottom: 2.2rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.skills-grid h3 {
  color: #4fd1c5;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.skills-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.skills-grid li {
  color: #b0b0b0;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-section {
  margin-bottom: 1.5rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.08rem;
}
.contact-list i {
  color: #4fd1c5;
  margin-right: 0.7rem;
}
.contact-list a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-list a:hover {
  color: #4fd1c5;
}
.obfuscated-email {
  font-family: 'Inter', monospace;
  letter-spacing: 0.01em;
  color: #b0b0b0;
}

@media (max-width: 700px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .profile-img {
    width: 90px;
    height: 90px;
  }
  .about-content h1 {
    font-size: 1.3rem;
  }
  .about-content p {
    font-size: 0.98rem;
  }
  .resume-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
  .education-list {
    gap: 0.7rem;
  }
  .edu-item {
    font-size: 0.98rem;
    padding: 0.7rem 0.8rem;
  }
  .skills-grid {
    gap: 0.7rem;
  }
  .skills-grid h3 {
    font-size: 1rem;
  }
  .skills-grid li {
    font-size: 0.95rem;
  }
  .contact-list {
    font-size: 0.98rem;
  }
} 