.btn-custom {
  background-color: #00695c;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 105, 92, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #004d40;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.gallery-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  border-radius: 1rem 1rem 0 0;
  margin-top: 10px;
}

.gallery-card .card-body {
  padding: 1rem;
  text-align: center;
}

.gallery-card h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-card p {
  font-size: 0.95rem;
  color: #555;
}

.btn-deschide {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background-color: #265b8c;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-deschide:hover {
  background-color: #1b4b75;
  transform: translateY(-1px);
}

