@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap");

body {
  font-family: "JetBrains Mono", monospace;
  background-color: #000;
  color: #0f0;
}

a {
  color: #0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.terminal-prompt {
  color: #0f0;
}

.terminal-line::before {
  content: "> ";
  color: #ffd7af;
}

.text-peach {
  color: #ffd7af;
}

.text-cyan {
  color: #0ff;
}

.text-custom-cyan {
  color: #60ffff;
}

.text-bright-cyan {
  color: #00ffff;
}

.text-custom-green {
  color: #87ff87;
}

.text-custom-pink {
  color: #ff86af;
}

strong {
  color: #ffd7af;
}

nav a {
  color: #ffd7af;
}

nav a.active {
  color: #0f0;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.project-link span {
  display: inline-block;
  line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  nav {
    font-size: 0.875rem;
    gap: 0.75rem;
  }

  .terminal-line::before {
    font-size: 1rem;
  }

  h1,
  h2 {
    font-size: 1.25rem;
  }
}

/* Color Utilities - Text */
.text-green {
  color: #0f0;
}

.text-cyan {
  color: #0ff;
}

.text-peach {
  color: #ffd7af;
}

.text-custom-cyan {
  color: #60ffff;
}

.text-bright-cyan {
  color: #00ffff;
}

.text-custom-green {
  color: #87ff87;
}

.text-custom-pink {
  color: #ff86af;
}

.text-gray {
  color: #808080;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

/* Color Utilities - Background */
.bg-black {
  background-color: #000;
}

/* Color Utilities - Border */
.border-green {
  border-color: #0f0;
}

.border-green-500 {
  border-color: #22c55e;
}

.border-green-900 {
  border-color: #14532d;
}
