@import 'general.css';

/* SECTION PRESTATIONS */
.section-prestations {
  background: #739299; /* Couleur de fond Prestations */
  padding: 80px 20px;
}

.section-prestations .section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-prestations .section-intro h2 {
  font-family: var(--font-titre);
  font-size: 2.5rem;
  color: var(--color-bleu-anthracite);
  margin-bottom: 20px;
}

.section-prestations .section-intro p {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: #333;
}

/* CARTES DE SERVICES */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.prestation-card {
  flex: 0 1 calc(25% - 30px);
  max-width: 300px;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

.prestation-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

/* BANDE HAUTE AVEC FOND VGTAL */
.prestation-top {
  background: url('../assets/img/selva_MOTIF_vert.jpg') center repeat;
  background-color: rgba(3, 115, 139, 0.5);
  display: flex;
  height: 160px;
  align-items: center;
  justify-content: center;
}

.prestation-top img {
  max-height: 140px;
  max-width: 140px;
}

/* CONTENU CARTE */
.prestation-content {
  padding: 20px;
  text-align: center;
}

.prestation-content h3 {
  font-family: var(--font-titre);
  color: var(--color-bleu-anthracite);
  margin-bottom: 10px;
}

.prestation-content p {
  font-family: var(--font-main);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.prestation-content a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-jaune);
  color: black;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.prestation-content a:hover {
  background: var(--color-rose);
}
