/* ===============================
   PROJECTS PAGE
================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

/* PROJECT CARD */
.project-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.project-image {
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

/* CONTENT */
.project-body {
  padding: 22px 24px 26px;
}

.project-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #c8a04f;
  margin-bottom: 6px;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.project-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* READ MORE */
.btn-small {
  font-size: 14px;
  font-weight: 600;
  color: #c8a04f;
  text-decoration: none;
}

.btn-small:hover {
  color: #a9853f;
}

/* CTA */
.section.center {
  text-align: center;
  padding: 80px 20px;
}

.section.center h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section.center p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project-image {
    height: 200px;
  }

  .project-title {
    font-size: 18px;
  }
}
