body {
    background-color: #2A3945;
}

.fournisseurs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fournisseurs-title {
    color: #F9B233;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.fournisseurs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.fournisseur-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.fournisseur-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.fournisseur-nom {
    color: #2A3945;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.fournisseur-description {
    color: #555;
    font-size: 1rem;
    text-align: center;
}

/* --- FLIP CARD FOURNISSEURS --- */
.card-flip {
  background: none;
  perspective: 1200px;
  width: 340px;
  height: 340px;
  margin: 0 auto 2rem auto;
  cursor: pointer;
  position: relative;
}
.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}
.card-flip.active .card-flip-inner {
  transform: rotateY(180deg);
}
.card-flip-front, .card-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(42,57,69,0.13);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-flip-front {
  background: #fff;
  z-index: 2;
}
.card-flip-back {
  background: #f9f9f9;
  transform: rotateY(180deg);
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-flip .card {
  background: none;
  box-shadow: none;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-flip .card-body {
  padding: 2rem 1.5rem;
  text-align: center;
}
.card-flip .card-title {
  font-size: 1.4rem;
  color: #2A3945;
  font-weight: 700;
  margin-bottom: 1rem;
}
.card-flip .card-text {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.card-flip .video-container {
  width: 100%;
  height: 200px;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-flip .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.button-74 {
  background: #F9B233;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 1rem;
  display: inline-block;
}
.button-74:hover {
  background: #d89a1e;
  color: #fff;
}
.card-flip-back, .card-flip-back .card, .card-flip-back .card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-flip-back .card-body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-flip-back .button-74 {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  margin-top: 2rem;
  margin-bottom: 0;
  align-self: center;
}
@media (max-width: 800px) {
  .card-flip {
    width: 95vw;
    height: 320px;
  }
} 