.kenya-brick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.brick {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.brick:hover {
  transform: scale(1.03);
}

.title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: 1;
}

/* Hidden info area */
.brick .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.brick.active .info {
  transform: translateY(0);
}

.brick p {
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.more-btn {
  padding: 8px 14px;
  background-color: #ff6600;
  color: white;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.more-btn:hover {
  background-color: #e65c00;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


.visit-btn {
  background-color: #1abc9c; /* Teal color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.visit-btn:hover {
  background-color: #16a085; /* Darker shade of teal */
}

.visit-btn:focus {
  outline: none;
}


