/* Projects Section Styles */
.projects {
  color: #f8f9fa;
  padding-top: 100px;
}

.projects h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f61;
}

/* Project Card */
.project-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-card h3 {
  font-size: 1.5rem;
  color: #ff6f61;
  margin-bottom: 10px;
}

.project-card .overview {
  font-size: 1rem;
  color: #f8f9fa;
  margin-bottom: 15px;
}

.project-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: left;
}

.project-buttons .btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent);
}

.btn-secondary {
  background-color: #6c5ce7;
  color: white;
}

.btn-secondary:hover {
  background-color: #a29bfe;
}

/* Technology Stack */
.tech-stack h4 {
  font-size: 1.1rem;
  color: #ff6f61;
  margin-bottom: 10px;
}

.tech-stack ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack ul li {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}