/* === NEW STYLES FOR PORTFOLIO IMPROVEMENTS === */

/* TECH STACK BADGES */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.tech-badge {
  background: rgba(179, 239, 178, 0.1);
  color: #b3efb2;
  border: 1px solid rgba(179, 239, 178, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.tech-badge:hover {
  background: rgba(179, 239, 178, 0.2);
  border-color: #b3efb2;
  transform: translateY(-2px);
}

/* CV BUTTON & BADGE */
.cv-badge {
  background: #b3efb2 !important;
  color: #000 !important;
  font-weight: 800 !important;
  border: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.cv-badge:hover {
  transform: scale(1.05) translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(179, 239, 178, 0.4);
  background: #fff !important;
}

.cv-badge i {
  font-size: 1.1em;
}

/* Ensure project cards have enough space for badges */
.stack-description {
  margin-bottom: 20px !important;
}
