/* ==========================
   Projects Page
   ========================== */

.projects-container {
	max-width: 1000px;
	margin: 3rem auto;
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.project-card {
	background: white;
	border-radius: 14px;
	padding: 1.8rem;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.project-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.project-card h2 {
	margin-top: 0;
	font-size: 1.4rem;
	color: #34436e;
}

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

/* Tech Stack List */
.tech-list {
  list-style: none;
  padding: 0;
  margin-top: 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

/* Tech Tags */
.tech-list li {
  background: linear-gradient(
    180deg,
    #14141c,
    #0b0b10
  );

  color: #ffd84a;
	position: relative;
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 8px;

  padding: 0.6rem 0.75rem;

  font-size: 0.85rem;
  font-weight: 600;

  text-align: center;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition: all 0.25s ease;
}

/* Hover Effect */
.tech-list li:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 22px rgba(0,0,0,0.6),
    0 0 14px rgba(255,215,0,0.35);

  border-color: rgba(255,215,0,0.6);
}
/* Project Links */
.project-links {
	display: flex;
	gap: 1rem;
	margin-top: auto;
}

.project-links a {
	text-decoration: none;
	font-weight: bold;
	color: white;
	background: #34436e;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: 0.2s ease, transform 0.2s ease;
}

.project-links a:hover {
	background: #2b9785;
	transform: translateY(-2px);
}
