.send-flowers-regular {
  font-family: "Send Flowers", cursive;
  font-weight: 400;
  font-style: normal;
}

.gallery {
  display: grid;
  gap: 10px;

  /* Responsive columns */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  /* Limit total width */
  max-width: 1100px;   /* adjust this */
  margin: 0 auto;     /* center horizontally */

  padding: 16px;

  justify-items: center;
}

/* Card styling */
.card {
  display: block;
  text-decoration: none;
  text-align: center;
  color: inherit;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  background: transparent;
  max-width: 350px;
  width: 100%;
}

/* Title overlay */
.card-title {
  position: absolute;
  top: 75%;
  left: 50%;

  transform: translate(-50%, -50%); /* perfect center */

  color: black;
  /*font-family: 'Send Flowers';*/
  font-size: 1.5rem;
  font-weight: bold;

  text-align: center;
  padding: 0.15em 1em;

  background: rgba(255, 255, 255, 0.4); /* optional dark overlay */
  /*border-radius: 6px;*/
  min-width: 100%;
}


.card img {
  width: 100%;
  height: 200px;        /* pick any height you like */
  object-fit: cover;    /* crops nicely like a tile */
  display: block;
  border-radius: 6px;
}

.card h3, .card p {
  margin: 1px 1px 0;
}

.card p {
  margin-bottom: 12px;
}


/* No wrapping in title */
.card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}