/* Projects Page Styles */

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

.project-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.project-card-link:hover {
  text-decoration: none;
}

.project-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.project-card-link:hover .project-card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.project-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.project-tech,
.project-highlights {
  margin-bottom: 1.5rem;
}

.project-tech strong,
.project-highlights strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.project-highlights ul {
  list-style: none;
  padding-left: 0;
}

.project-highlights li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--text-light);
}

.project-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
