/* Card background update */
.card {
    width: 400px;
    border-radius: 25px;
    padding: 10px;
    margin: 10px;
    background-color: white; /* Card background white */
    box-shadow: 5px 6px 8px rgba(0, 0, 0, 0.2); /* subtle shadow */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 255, 0.5); /* Blue shadow on hover */
}

#pets {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
    background-color: white; /* Page section background white */
    border-radius: 25px;
}


img{
    width: 100%;
    border-radius: 25px;
}

img:hover{
    box-shadow: 3px 4px 5px rgb(222, 137, 32);
}



h2{
    color: #2e210b;
}

span{
    color: #87570b;
    text-decoration:underline;
}

h1{
    color: rgb(103, 45, 3);
    text-align: center;
}


/* Popup Modal CSS */
.modal {
  display: none; /* by default hidden */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 70%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

#caption {
  margin: 15px auto;
  text-align: center;
  color: #f1f1f1;
  font-size: 18px;
  max-width: 70%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff4d4d;
}
