/* -------------------------
   GALLERY PAGE STYLING
-------------------------- */
#gallery {
  padding: 3rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

#gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #006400; /* Kenyan green */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 5px solid #000; /* Kenyan flag colors in order */
}

.project-card:nth-child(2n) { border-top-color: #ff0000; } /* red */
.project-card:nth-child(3n) { border-top-color: #006400; } /* green */
.project-card:nth-child(4n) { border-top-color: #fff; } /* white */

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover; /* keep uniform size */
  border-bottom: 3px solid #eee;
}

.project-content {
  padding: 1rem;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.project-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Scroll animation hidden by default */
.project-card {
  opacity: 0;
  transform: translateY(20px);
}
.project-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* Responsive */
@media (max-width: 600px) {
  #gallery {
    padding: 2rem 1rem;
  }
  .project-content h3 {
    font-size: 1.1rem;
  }
  .project-content p {
    font-size: 0.9rem;
  }
}
