/* Base styles */
body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  font-size: 0.875rem;
  color: #5eead4;
}

.navbar a {
  color: #5eead4;
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-top: 100px;
}

.intro {
  color: #5eead4;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.name {
  font-size: 4rem;
  font-weight: bold;
  color: #e5e5e5;
}

.subtitle {
  color: #a78bfa;
  font-size: 1.25rem;
  margin-top: 1rem;
}

.buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.resume {
  border: 1px solid #5eead4;
  color: #5eead4;
}

.resume:hover {
  background-color: #5eead4;
  color: #000000;
}

.projects {
  border: 1px solid #d1d5db;
  color: #e5e5e5;
}

.projects:hover {
  background-color: #d1d5db;
  color: #000000;
}

/* Projects Section */
.projects-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 1rem;
}

.project-card {
  border: 1px solid #4b5563;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: #111111;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cyan {
  color: #5eead4;
}

.purple {
  color: #a78bfa;
}

.project-card p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.tag {
  font-size: 1.25rem;
  display: block;
  color: inherit;
}
