:root {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  font-weight: 400;

  color: #e2e8f0;
  background-color: #000000;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  min-height: 100vh;
  background-color: #000000;
  color: #e2e8f0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Header Section */
.header {
  text-align: center;
  margin-bottom: 4rem;
}

.name {
  font-size: 3rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 500;
}

/* Section Styling */
.section {
  margin-bottom: 4rem;
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 0.5rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item .label {
  font-weight: 600;
  color: #f8fafc;
  min-width: 80px;
}

.contact-item a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #93c5fd;
}

/* Experience Section */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-item {
  border-left: 3px solid #1a1a1a;
  padding-left: 1.5rem;
}

.job-header {
  margin-bottom: 0.75rem;
}

.job-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}

.company {
  font-weight: 500;
  color: #60a5fa;
  margin-right: 1rem;
}

.duration {
  color: #64748b;
  font-size: 0.9rem;
}

.experience-item p {
  color: #cbd5e1;
  line-height: 1.6;
}

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

.project-card {
  background-color: #000000;
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.project-card:hover {
  border-color: #333333;
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.project-card p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background-color: #222222;
  color: #e2e8f0;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #333333;
}

.project-actions {
  display: flex;
  gap: 0.75rem;
}

.github-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #222222;
  color: #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #333333;
  transition: all 0.2s ease;
}

.github-btn:hover {
  background-color: #333333;
  border-color: #444444;
  color: #f8fafc;
}

/* Skills Section */
.skills-section {
  margin-bottom: 4rem;
}

.skills-category {
  margin-bottom: 2rem;
}

.skills-category h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-badge {
  background-color: #111111;
  color: #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #222222;
  transition: all 0.2s ease;
}

.skill-badge:hover {
  background-color: #222222;
  border-color: #333333;
}

.config {
  text-decoration: "underline";
  color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }

  .name {
    font-size: 2.5rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .contact-item .label {
    min-width: auto;
  }

  .job-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .company {
    margin-right: 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .skills-list {
    gap: 0.5rem;
  }

  .skill-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  /* .project-actions { */
  /*   flex-direction: column; */
  /* } */
}
