body {
  background-color: #bdbdbd;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.header-banner {
  background-image: url('../images/header.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 5px #444;
  padding: 45px 0;
  text-align: center;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important; /* ➕ effet shadow élégant */
  border-radius: 10px;
  overflow: hidden; /* Pour arrondir aussi le haut si image dépasse */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: white;
  padding-top: 10px; /* ➕ espace en haut si image unie */
  border-radius: 10px 10px 0 0;
  display: block;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  color: #ff6f61;
  font-weight: bold;
}

.btn-custom {
  border-radius: 20px;
  font-weight: bold;
}

footer {
  background-color: #bdbdbd;
}
