/* Documents page styling */

.documents-landing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.documents-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 300;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.document-card {
  background: white;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.document-card.coming-soon {
  opacity: 0.7;
  background: #f8f9fa;
}

.document-card.coming-soon::before {
  content: "Coming Soon";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #6c757d;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.document-header {
  margin-bottom: 1rem;
}

.document-title {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
}

.document-title:hover {
  color: #3498db;
}

.document-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.document-author {
  font-weight: 500;
}

.document-description {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.document-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.document-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #3498db;
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.btn-outline:hover {
  background: #f8f9fa;
  color: #495057;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.documents-footer {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.documents-footer h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.documents-footer p {
  color: #495057;
  line-height: 1.6;
}

.documents-footer a {
  color: #3498db;
  text-decoration: none;
}

.documents-footer a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .document-actions {
    flex-direction: column;
  }
  
  .btn {
    justify-content: center;
  }
} 