body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.navbar {
    font-size: 1rem;
}

h1, h2, h3 {
    font-weight: 600;
    color: #333;
}
.promo-card {
    transition: transform 0.2s ease, background-color 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-5px);
    background-color: #2c5cd5; /* un bleu un peu plus foncé au hover */
}
.carousel-item img {
  width: 100%;
  height: 200px !important;   /* <-- ici */
  object-fit: cover !important;
  border-radius: 8px;
}


