/* ---------------- Projects Section ---------------- */
.projects h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0e0e52;
}

/* Layout for side-by-side columns */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Individual project card */
.project {
  background-color: #fff;
  border-left: 4px solid #0e0e52;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* Header + expandable text */
.project-content {
  margin-bottom: 1rem;
}

/* Collapsible content using HTML5 <details> */
.project-details {
  cursor: pointer;
  margin-top: 0.5rem;
}

.project-details summary {
  font-size: 1rem;
  font-weight: normal;
  color: #333;
  cursor: pointer;
  list-style: none;
}

.project-details[open] summary {
  font-weight: bold;
  color: #0e0e52;
}

.project-details p {
  margin-top: 0.5rem;
  line-height: 1.6;
  color: #555;
}

/* Image or video media */
.project-media {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
}
