/* Estilos específicos para projeto Ink Agenda */

/* Feature cards e elementos compartilhados usam wiki.css e wiki-unified.css */
/* Cores do header e badges já definidas em wiki.css (.project-header.ink, --ink-color) */

/* Ajustes opcionais para páginas do Ink */
.project-header.ink h1,
.project-header.ink h2,
.project-header.ink p {
  color: white;
}

.project-header.ink .tech-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Tema dark */
[data-theme="dark"] .project-header.ink {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
}

[data-theme="dark"] .project-header.ink .tech-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ecf0f1;
}

/* Screenshot Cards */
.screenshot-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.screenshot-card:hover {
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
  border-color: #0066cc;
  transform: translateY(-2px);
}

.screenshot-card .screenshot-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #0066cc;
}

.screenshot-card .screenshot-header h5 {
  margin: 0;
  font-size: 1.1rem;
  color: #0066cc;
  font-weight: 600;
}

.screenshot-card .screenshot-header i {
  margin-right: 0.5rem;
}

.screenshot-card img {
  margin-bottom: 0.75rem;
  max-height: 300px;
  object-fit: cover;
  background: white;
}

.screenshot-card small {
  font-size: 0.85rem;
  margin-top: auto;
}

[data-theme="dark"] .screenshot-card {
  background: #1a1a1a;
  border-color: #333;
}

[data-theme="dark"] .screenshot-card:hover {
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.2);
  border-color: #0099ff;
}

[data-theme="dark"] .screenshot-card .screenshot-header {
  border-bottom-color: #0099ff;
}

[data-theme="dark"] .screenshot-card .screenshot-header h5 {
  color: #0099ff;
}
