/* ===== Residential Gallery ===== */
.residential-gallery {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}

.residential-gallery h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.residential-gallery p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid a {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.gallery-grid a:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
