/* Project Page Specific Styles */

.project-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.project-nav-path {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-cyan);
}

.project-hero {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-hero-placeholder {
  background: linear-gradient(135deg, #000033 0%, #001155 50%, #002244 100%);
}

.project-hero .thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.project-meta {
  padding: 16px 0 8px;
}

.project-meta-date {
  color: var(--text-cyan);
  font-family: var(--silk);
  font-size: 12px;
  margin-bottom: 8px;
}

.project-long-desc {
  font-family: var(--terminal);
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
}

.project-long-desc p {
  margin-bottom: 12px;
}

.project-long-desc ul {
  margin: 8px 0 12px 20px;
}

.project-long-desc li {
  margin-bottom: 6px;
  color: var(--text-bright);
}

.stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.stat-block {
  flex: 1;
  min-width: 120px;
  padding: 14px;
  border: 1px solid var(--text);
  text-align: center;
  background: rgba(0,255,0,0.02);
}

.stat-value {
  font-family: var(--silk);
  font-size: 16px;
  color: var(--text-yellow);
  margin-bottom: 6px;
}

.stat-key {
  font-family: var(--mono);
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-links-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-hero { height: 160px; }
  .project-nav-bar { flex-direction: column; align-items: flex-start; }
  .stats-row { flex-direction: column; }
  .stat-block { min-width: auto; }
}
