/* ========================================
   PROJECTS PAGE STYLES — v2
   ======================================== */

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
.project-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
}
.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  border-color: rgba(244, 180, 0, 0.2);
}
.project-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.project-caption {
  padding: 1rem 1.25rem;
  text-align: center;
  background: #f8f7f5;
  border-top: 1px solid #eee;
}
.project-caption p {
  margin: 0;
  color: #1a1a1a;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-hero h1 { color: white !important; }

.projects-cta {
  background: #f8f7f5;
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 4rem;
  border: 1px solid #eee;
}
.projects-cta p {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .projects-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .project-item { border-radius: 8px; }
  .project-image { object-fit: contain; }
}
