/* Alkashi-inspired Theme Enhancements */

/* Dark Theme - Slate - Adjustments */
[data-md-color-scheme="slate"] {
  --md-hue: 45; /* Adjust hue towards gold */
  --md-typeset-a-color: #d4af37; /* Gold color for links */
}

/* Make code blocks have gold text */
[data-md-color-scheme="slate"] .md-typeset code {
  color: #d4af37;
}

/* Gold navigation section titles */
[data-md-color-scheme="slate"] .md-nav__title {
  color: #d4af37 !important;
}

/* Gold active link color */
[data-md-color-scheme="slate"] .md-nav__link--active {
  color: #d4af37 !important;
  font-weight: bold;
}

/* Adjusted hovering color */
[data-md-color-scheme="slate"] .md-nav__link:hover {
  color: #ffcc00 !important;
}

/* Tag styling */
.md-tag {
  display: inline-block;
  padding: 0.2em 0.5em;
  margin: 0.2em;
  border-radius: 4px;
  background-color: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 0.75em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.md-tag:hover {
  background-color: rgba(212, 175, 55, 0.5);
  color: #ffffff;
  text-decoration: none;
}

/* Tag page styling */
.md-tags-content h2 {
  margin-top: 2em;
  color: #d4af37;
}

.md-tags-content ol.md-nav__list {
  list-style-type: none;
  padding-left: 1em;
}

.md-tags-content ol.md-nav__list li {
  margin-bottom: 0.5em;
} 