/* ==========================================================================
   J.A. CHAPES SÀRL — Prestations
   --------------------------------------------------------------------------
   Boutons de filtre par catégorie et cartes photo des prestations.
   ========================================================================== */

/* ==========================================================================
   10. PRESTATIONS
   ========================================================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.filter {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.3s ease;
}
.filter:hover { border-color: var(--orange); color: var(--text); }
.filter.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

/* Carte photo plein cadre (prestations & chantiers)
   Empilement : image (0) < voile dégradé (1) < texte (2) */
.card {
  position: relative;
  isolation: isolate;          /* crée un contexte d'empilement propre */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 5;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 106, 26, 0.6);
}

.card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card__img { transform: scale(1.08); }

/* Voile sombre pour garder le texte lisible sur la photo */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
}

.card__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
}

.card__title { position: relative; z-index: 2; font-size: 1.2rem; }

.card__text {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.card__place {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-soft);
}

/* Aspect différent pour les chantiers (plus large) */
.cards--projects .card { aspect-ratio: 4 / 3; }
