body {
  background-color: #f0f4e6;
  font-family: 'Arial', sans-serif;
}
.dog-park-bg {
  background-image: linear-gradient(to bottom, rgba(139, 69, 19, 0.1), rgba(34, 139, 34, 0.3));
}
.logo {
  width: 150px;
  height: 50px;
  background-color: #ccc;
}
.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #e0e0e0;
  border-radius: 8px;
}
.staff-img {
  width: 150px;
  height: 150px;
  background-color: #ccc;
  object-fit: contain;
  border-radius: 8px;
}
.nav-link:hover {
  text-decoration: underline;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}