/* VDP Brand Colors */
:root {
  --md-primary-fg-color: #0f2137;
  --md-primary-fg-color--light: #1a3a5c;
  --md-primary-fg-color--dark: #0a1628;
  --md-accent-fg-color: #42a5f5;
}

[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #0f2137;
  --md-primary-fg-color--light: #1a3a5c;
  --md-primary-fg-color--dark: #0a1628;
}

/* Hero section on landing page */
.md-typeset .vdp-hero {
  text-align: center;
  padding: 2rem 1rem;
}

.md-typeset .vdp-hero img {
  max-width: 180px;
  margin-bottom: 1rem;
}

.md-typeset .vdp-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.md-typeset .vdp-hero .vdp-tagline {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Feature grid */
.md-typeset .vdp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.md-typeset .vdp-feature {
  padding: 1.5rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.5rem;
}

.md-typeset .vdp-feature h3 {
  margin-top: 0;
}

/* Quick links */
.md-typeset .vdp-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.md-typeset .vdp-links a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-decoration: none;
}

.md-typeset .vdp-links a.primary {
  background: var(--md-primary-fg-color);
  color: white;
}

.md-typeset .vdp-links a.secondary {
  border: 2px solid var(--md-primary-fg-color);
  color: var(--md-primary-fg-color);
}

[data-md-color-scheme="slate"] .md-typeset .vdp-links a.secondary {
  border-color: var(--md-accent-fg-color);
  color: var(--md-accent-fg-color);
}
