/* Medford Group — Terminal aesthetic */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier Prime', 'Courier New', monospace;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(15, 17, 23, 0.92) 0%, rgba(15, 17, 23, 0.87) 50%, transparent 85%) fixed,
    url('../images/background_topo.png') center center / cover fixed #0f1117;
  color: #d4d4c8;
}

/* Glassmorphism utilities */
.glass-surface {
  background: rgba(22, 29, 46, 0.55) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(51, 81, 112, 0.45) !important;
  opacity: 0.8;
}

.glass-card {
  background: rgba(28, 37, 55, 0.60) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(51, 81, 112, 0.45) !important;
  opacity: 0.8;
}

.glass-nav {
  background: linear-gradient(to bottom, rgba(15, 17, 23, 0.60) 0%, rgba(15, 17, 23, 0.60) 80%, rgba(15, 17, 23, 0.00) 100%) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Nav active link */
.nav-link.active {
  color: #AC8347;
  border-bottom: 2px solid #AC8347;
}

/* Page content: styles for markdown-generated HTML */
.page-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #AC8347;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #AC8347;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.page-content p {
  color: #d4d4c8;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
  color: #d4d4c8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content ul {
  list-style-type: disc;
}

.page-content ol {
  list-style-type: decimal;
}

.page-content li {
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

.page-content a {
  color: #8892a4;
  text-decoration: underline;
  text-decoration-color: #AC8347;
}

.page-content a:hover {
  color: #AC8347;
}

.page-content hr {
  border: none;
  margin: 2rem 0;
}

.page-content strong {
  color: #d4d4c8;
  font-weight: 700;
}

.page-content em {
  color: #d4d4c8;
  font-style: italic;
}

.page-content code {
  background-color: #1c2537;
  color: #AC8347;
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 0.9em;
}

.page-content pre {
  background-color: #1c2537;
  border: 1px solid #335170;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.page-content pre code {
  background: none;
  padding: 0;
  color: #d4d4c8;
}

/* Publication card line clamp */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer links */
footer a {
  transition: color 0.2s;
}
