/* css/collaborate.css */

/* Additional styles for the Perks and Contact sections to match the theme */
.section-container {
  max-width: 1000px;
  margin: 2rem auto 0;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 0.5rem;
}

.perks-list {
  list-style: outside;
  padding: 0;
  margin: 0 0 1rem 0;
}

.perks-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-color);
  color: var(--text-color);
}

.perks-list li:last-child {
  border-bottom: none;
}

.perks-note {
  font-size: 0.85rem;
  color: var(--subtext-color);
  font-style: italic;
  margin-top: 1rem;
  display: block;
}

.contact-section {
  text-align: center;
  margin-top: 2rem;
}

.contact-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.contact-btn:hover {
  background-color: #1d4ed8;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.25rem;
  background: #fafafa;
  transition: box-shadow 0.2s ease;
}

.project-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.status-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.ongoing {
  background: #e6f4ea;
  color: #1e8e3e;
}

.status-badge.finished {
  background: #e3f2fd;
  color: #1976d2;
}

.project-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.project-actions {
  display: flex;
  justify-content: flex-end;
}

.preview-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.preview-link:hover {
  background: #0056b3;
}
