/* Hero search button — extracted from the original style.css (lines 377-394) */
.search-btn {
  background: var(--primary-grad);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--r-btn);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 14px rgba(124,92,255,0.3);
}
.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,92,255,0.45);
  filter: brightness(1.05);
}
.search-btn:active { transform: translateY(0) scale(0.98); }


/* Primary CTA button — extracted from the original style.css (lines 670-690) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--primary-grad);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-btn);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 15px rgba(124,92,255,0.35);
}
.cta-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,92,255,0.45);
}
.cta-btn:active { transform: translateY(0) scale(0.98); }


/* Project language pill (index + project pages) — extracted from the original style.css (lines 1411-1438) */
/* ══════════════════════════════════════════════
   SHARED PROJECT PILL (used on index + project pages)
══════════════════════════════════════════════ */
.proj-pill {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font);
}
.proj-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.proj-pill.active {
  background: var(--primary-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(124,92,255,0.28);
}

