/* ============================= */
/* Buttons (shared)              */
/* ============================= */

/* Base button used in projects and other places */
.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: #e9d5ff;
  color: #020617;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Outline modifier for .btn */
.btn.outline {
  background: transparent;
  border: 1px solid #e9d5ff;
  color: #e9d5ff;
}

/* ============================= */
/* Page-level CTA buttons        */
/* ============================= */

/* Large resume button in navbar/hero */
.btn-resume {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #000000;
  padding: 10px 70px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* Primary solid button */
.btn-primary {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #061126;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--card-shadow);
  display: inline-block;
}

/* Neutral outlined button */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  display: inline-block;
}

/* Ghost / icon-only buttons */
.btn-ghost {
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

/* Small size utility */
.btn-sm {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}
