:root {
  --md-primary-fg-color: #000000;
  --md-primary-fg-color--light: #333333;
  --md-primary-fg-color--dark: #000000;
  --md-accent-fg-color: #ff4500; /* Deep Orange */
}

/* Premium Header */
.md-header {
  background-color: var(--md-primary-fg-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo Styling */
.md-logo img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.3s ease;
}

.md-logo:hover img {
  transform: scale(1.05);
}

/* Navigation Enhancements */
.md-nav__link {
  transition: color 0.25s, background-color 0.25s;
}

.md-nav__link:hover {
  color: var(--md-accent-fg-color);
}

/* Hero Section / Index Page Styling */
.md-main__inner {
  margin-top: 2rem;
}

/* Custom transitions for links */
a {
  transition: color 0.3s ease;
}

/* Scrollbar styling for a cleaner look */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

[data-md-color-scheme="slate"] ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--md-accent-fg-color);
}

/* Footer styling */
.md-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

[data-md-color-scheme="slate"] .md-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Search bar premium feel */
.md-search__form {
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.md-search__form:focus-within {
  box-shadow: 0 0 0 2px var(--md-accent-fg-color);
}
