/* Dark ML/CV Theme: Pitch black with clean monochrome styling */

/* Fonts: Inter for body, JetBrains Mono for headings */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;700&display=swap");

:root {
  /* Core dark palette */
  --tf-dark-bg: #000000;
  --tf-dark-surface: #0a0a0a;
  --tf-dark-border: #1a1a1a;

  /* Text colors */
  --tf-text-primary: #e8e8ed;
  --tf-text-secondary: #9898a8;
  --tf-text-muted: #6b6b7a;

  /* Bootstrap overrides */
  --bs-body-bg: #000000;
  --bs-body-color: var(--tf-text-primary);
  --bs-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --bs-link-color: #e8e8ed;
  --bs-link-hover-color: #ffffff;

  /* TechFolio overrides */
  --tf-pill-bg: #1a1a1a;
  --tf-icon-fill: #e8e8ed;
  --tf-icon-hover: #ffffff;
  --tf-page-bg-color: #000000;
  --tf-footer-bg-color: #000000;
  --tf-projects-bg-color: #000000;
}

/* Global resets for dark mode */
body {
  background-color: #000000 !important;
  color: var(--tf-text-primary);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  color: #e8e8ed;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Paragraph and lead text */
p,
.lead {
  color: var(--tf-text-secondary);
}

.lead {
  font-weight: 400;
}

/* Links */
a {
  color: #9898a8;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

/* Social icons */
.tf-social {
  display: inline-block;
  fill: #e8e8ed;
  height: 1.5em;
  vertical-align: -.1em;
  width: 1.5em;
  transition: all 0.3s ease;
}

.tf-social:hover {
  fill: #ffffff;
}

/* Profile image */
.rounded-circle {
  border-color: #333333;
  border-style: solid;
  border-width: 2px;
}

/* Horizontal rules */
hr {
  border-color: #1a1a1a;
  opacity: 0.5;
}

/* Mobile navbar brand hide */
@media (max-width: 500px) {
  .navbar-brand {
    display: none;
  }

  .navbar-brand-mobile {
    display: inline;
  }
}