.gallery-link-frame {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.3s ease;
  
  /* The Outer Frame (Wood/Gold) */
  border: 12px solid #3d2b1f; /* Dark wood colour */
  
  /* The inner "Mount" (The white border) */
  padding: 15px;
  background-color: #fcfaf2; /* Off-white/cream paper colour */
  
  /* Adding depth with shadows */
  box-shadow: 
    inset 0 0 5px rgba(0,0,0,0.2), /* Subtle shadow on the mount */
    0 10px 20px rgba(0,0,0,0.3);   /* Heavy shadow to lift frame off the wall */
    
  cursor: pointer;

}

.gallery-link-frame img {
  width: 300px; /* Adjust size as needed */
  height: auto;
  /* Thin inner border to separate photo from mount */
  border: 1px solid #ddd; 
}

/* Hover Effect: Makes it feel like a button */
.gallery-link-frame:hover {
  transform: scale(1.03) rotate(1deg); /* Slight "hanging" tilt */
  border-color: #5d4037; /* Lighter wood on hover */
}