/* Custom styles for DSTA docs */

:root {
  --md-primary-fg-color: #6750A4;
  --md-accent-fg-color: #4F46E5;
}

/* Hero section on index */
.md-typeset .hero {
  padding: 2rem 0;
  text-align: center;
}

.md-typeset .hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.md-typeset .hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.service-card {
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 8px;
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-live { background: #d4edda; color: #155724; }
.status-beta { background: #fff3cd; color: #856404; }
.status-wip  { background: #f8d7da; color: #721c24; }
