.nav .nav-item .nav-link.active {
    background-color: lightpink;
    color: darkblue;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
  gap: 15px;
}

.photo {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.photo:hover {
  transform: scale(1.05);
}

.photo img {
height: 100%;       /* Still uses % of the card */
width: 100%;

object-fit: fill;
  padding: 1em;
}

/* Optional caption styling */
/* .caption {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
} */

