
.card {
    width: 400px;
    border-radius: 25px;
    padding: 10px;
    margin: 10px;
    background-color: white; /* normal card color */
    box-shadow: 5px 6px 8px rgba(0,0,0,0.2); /* subtle shadow */
    transition: 0.3s ease; /* smooth hover effect */
}

/* Card hover style */
.card:hover {
    background-color: #007bff; /* blue background on hover */
    box-shadow: 5px 6px 15px rgba(0, 123, 255, 0.7); /* blue shadow */
}

/* Image hover style */
.card img:hover {
    box-shadow: 3px 4px 15px rgba(0, 123, 255, 0.7); /* blue shadow */
    transition: 0.3s ease;
}

img{
    width: 100%;
    border-radius: 25px;
}

img:hover {
    box-shadow: 3px 4px 15px rgba(0, 123, 255, 0.7); /* blue shadow */
    transition: 0.3s ease; /* smooth transition */
}
#pets {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
    background-color: white; /* changed from gradient to white */
    border-radius: 25px;
}

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;
}
