/* Project detail page styles */

.back-link {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: #f0f0f0; }

/* Hero */
.project-hero {
  padding: 3rem 0 2rem;
}

.project-meta {
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.project-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.project-tagline {
  font-size: 1.05rem;
  color: #888;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-hero-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.project-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-link {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  border: 1px solid #2a2a2a;
  padding: 6px 16px;
  border-radius: 999px;
  transition: all 0.2s;
}
.store-link:hover {
  color: #f0f0f0;
  border-color: #666;
}

/* Sections */
.project-section {
  margin-top: 2.5rem;
}

.project-body {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 1rem;
}

.project-tbc {
  color: #555;
  font-style: italic;
  border-left: 2px solid #2a2a2a;
  padding-left: 1rem;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.5;
}

/* Screenshots placeholder */
.screenshots-placeholder {
  padding: 3rem 2rem;
  background: #0e0e0e;
  border: 1px dashed #1e1e1e;
  border-radius: 12px;
  text-align: center;
}

.screenshots-placeholder p {
  font-size: 0.85rem;
  color: #444;
}

/* Tech grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.tech-card {
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 16px;
  transition: background 0.15s;
}
.tech-card:hover { background: #141414; }

.tech-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 4px;
}

.tech-desc {
  font-size: 0.75rem;
  color: #555;
}

/* Status card */
.status-card {
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #1a1a1a;
}

.status-row:last-child {
  border-bottom: none;
}

.status-key {
  font-size: 0.8rem;
  color: #555;
}

.status-val {
  font-size: 0.85rem;
  color: #ccc;
  font-weight: 500;
}

/* Nav footer */
.project-nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #1a1a1a;
}

.back-to-projects,
.next-project {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.back-to-projects:hover,
.next-project:hover {
  color: #f0f0f0;
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .project-nav-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
