.projects-section {
  padding: 2rem 0;
}

.projects-section h2 {
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.projects-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #cd853f, #d2691e, #deb887);
  border-radius: 2px;
}


.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.3rem;
  color: #8b4513;
  margin-bottom: 0.8rem;
}

.project-content p {
  color: #654321;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.tech-tag {
  background: linear-gradient(135deg, #d2691e, #cd853f);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  color: #8b4513;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid #8b4513;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.project-link:hover {
  background: #8b4513;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Design*/
@media (max-width: 768px) {
  .projects-section h2 {
    font-size: 2rem;
  }

  .project-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .project-link {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .project-content {
    padding: 1rem;
  }

  .project-content h3 {
    font-size: 1.1rem;
  }
}
