/* Shepherd CLI - Sphinx Custom Styles */

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

code, pre {
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* Headings */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Code blocks */
.highlight pre {
  border-radius: 8px;
  padding: 1rem;
}

/* Tables */
table {
  border-radius: 8px;
  overflow: hidden;
}

/* Admonitions */
.admonition {
  border-radius: 8px;
}

/* Terminal output styling */
.terminal {
  background: #0d1117;
  border-radius: 8px;
  padding: 1rem;
  color: #e6edf3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  overflow-x: auto;
}

.terminal .prompt {
  color: #7ee787;
}

.terminal .output {
  color: #8b949e;
}

/* Feature cards using sphinx-design */
.sd-card {
  border-radius: 12px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Hero section */
.hero {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-foreground-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-background-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Buttons */
.sphinx-design .sd-btn-primary {
  background: #111111 !important;
  border-color: #111111 !important;
}

.sphinx-design .sd-btn-primary:hover {
  background: #333333 !important;
  border-color: #333333 !important;
}

[data-theme="dark"] .sphinx-design .sd-btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111111 !important;
}

