.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-text {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ff6600;
  padding: 8px 12px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  border-radius: 4px;
}

.overlay-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ff6600;
  color: #fff;
  padding: 8px 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.overlay-button:hover {
  transform: scale(1.05);
}
