/* ========================================================= */
/*                     STYLES GLOBAUX                        */
/* ========================================================= */

/* --- MENU NAVIGATION GLOBAL --- */
.menu {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #C3A75C;
  padding: 10px 40px;   /* espace autour */
  display: flex;        /* pour aligner logo + menu */
  align-items: center;  /* centrer verticalement */
}

.menu .logo {
  height: 90px;         /* taille du logo */
  margin-right: 30px;   /* espace entre logo et menu */
}

.menu ul {
  list-style: none;
  margin: 0 auto;       /* centre la liste */
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.menu a {
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 25px;
  font-weight: 600;
  transition: transform 0.5s ease;
  transform-origin: center;
  will-change: transform;
}

.menu a:hover {
  transform: scale(1.15);
}

/* --- COMPOSANTS GÉNÉRAUX (cartes simples) --- */
.cards-container {
  display: flex;
  flex-direction: column; /* empile verticalement */
  gap: 20px;              /* espace entre les rectangles */
  max-width: 300px;       /* largeur max du conteneur */
  margin: 20px auto;      /* centre le conteneur sur la page */
}

.card {
  background-color: #f5f5f5; /* couleur du rectangle */
  border: 2px solid #C3A75C; /* bordure dorée */
  border-radius: 10px;        /* coins arrondis */
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px); /* léger effet au survol */
}

.card img {
  width: 100%;
  height: auto;
}

.card p {
  margin: 10px 0;
  font-weight: bold;
  color: #333;
  font-size: 18px;
}

/* --- FOOTER GLOBAL --- */
.footer-bas {
  background-color: #C3A75C;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.footer-left .adresse {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-left .horaire {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Bouton Google */
.avis-btn {
  display: inline-block;
  background: #8a8a8a;
  padding: 12px 25px;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #cfcfcf;
  transition: 0.3s;
}

.avis-btn:hover {
  background: #c0c0c0;
  color: black;
}

/* Section MAP (footer) */
.footer-right iframe {
  width: 1000px;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
  .footer-bas {
    flex-direction: column;
    text-align: center;
  }

  .footer-right iframe {
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
}

.copyright {
  color: #C3A75C;
  background-color: black;
  text-align: center;
  width: 100%;
  height: 30px;
}

/* ========================================================= */
/*                      PAGE ACCUEIL                         */
/*                     (index.html)                          */
/* ========================================================= */

/* SECTION TÉMOIGNAGES */
.temoignages-section {
  width: 100%;
  background: #f7f3e7;
  padding: 50px 0;
  margin-top: 60px;
}

.titre-temoignages {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #C3A75C;
}

.temoignages-wrapper {
  overflow: hidden;
  width: 100%;
}

.temoignages-container {
  display: flex;
  gap: 40px;
  animation: defilement-infini 25s linear infinite;
}

.temoignage {
  min-width: 300px;
  max-width: 320px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  font-size: 18px;
  color: #333;
}

.temoignage p {
  font-style: italic;
}

.temoignage span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

/* Animation défilement infini */
@keyframes defilement-infini {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Section MAP (si tu la réactives sur l'accueil) */
.map-section {
  margin-top: 0;
  padding: 0;
  color: #C3A75C;
}

.map-container {
  width: 100%;
  height: 700px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================================= */
/*                      PAGE PRODUITS                        */
/*                   (produits.html)                         */
/* ========================================================= */

.alerte {
  font-size: 20px;
  text-align: center;
}

/* Section produits */
.produits-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px 40px;
}

.titre-produits {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
  color: #C3A75C;
  font-weight: bold;
}

/* Filtres (bouton + panneau latéral) */
.filtre-toggle {
  position: fixed;
  left: 20px;
  top: 200px;
  z-index: 4000;

  background: #C3A75C;
  border: none;
  color: white;
  font-size: 17px;

  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}

.filtre-toggle:hover {
  background: #b7994f;
  transform: translateY(-2px);
}

.filtre-panel {
  position: fixed;
  top: 260px;
  left: 20px;

  width: 250px;
  background: white;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #e5dcc5;
  border-left: 5px solid #C3A75C;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  z-index: 2999;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.filtre-panel.open {
  max-height: 600px;
  opacity: 1;
}

.filtre-panel h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #C3A75C;
  font-weight: bold;
}

.filtre-panel .filtre-groupe {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.filtre-panel label {
  font-size: 13px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #7a6a3c;
}

.filtre-panel input,
.filtre-panel select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d8cba8;
  background: #faf7ef;
  font-size: 14px;
}

.filtre-panel input:focus,
.filtre-panel select:focus {
  border-color: #C3A75C;
  box-shadow: 0 0 0 2px rgba(195,167,92,0.25);
}

/* Filtres "inline" (si tu les utilises plus tard) */
.filtres-produits {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5dcc5;
  border-left: 5px solid #C3A75C;
  padding: 18px 22px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.filtre-groupe {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1;
}

.filtre-groupe label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 6px;
  color: #7a6a3c;
}

.filtre-groupe input,
.filtre-groupe select {
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #d8cba8;
  background: #faf7ef;
  font-size: 14px;
  outline: none;
}

.filtre-groupe input:focus,
.filtre-groupe select:focus {
  border-color: #C3A75C;
  box-shadow: 0 0 0 2px rgba(195,167,92,0.25);
}

/* Sections par marque */
.brand-section {
  margin-bottom: 40px;
}

.brand-title {
  font-size: 26px;
  margin-bottom: 18px;
  color: #333;
  border-bottom: 2px solid #C3A75C;
  display: inline-block;
  padding-bottom: 4px;
}

/* Grille produits */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
}

/* Carte produit */
.product-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  outline: none;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #333;
}

.product-card .price {
  font-weight: bold;
  color: #C3A75C;
  font-size: 15px;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-color: #C3A75C;
}

.no-product {
  font-style: italic;
  color: #777;
  padding: 10px 0;
}

/* ========================================================= */
/*          MODALES GÉNÉRALES (PRODUITS + ÉQUIPES)           */
/* ========================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #ffffff;
  width: 380px;
  max-width: 100%;
  padding: 20px 22px 24px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #555;
}

/* ✅✅ MODIF ICI : IMAGE MODALE CARRÉE ✅✅ */
.modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;   /* carré */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.modal h2 {
  margin-bottom: 6px;
  font-size: 22px;
  color: #333;
}

.modal p {
  font-size: 15px;
  margin-bottom: 4px;
  color: #444;
}

/* Ligne de prix (utilisée seulement pour les produits) */
.modal-price {
  font-size: 17px;
  color: #C3A75C;
  font-weight: bold;
  margin-top: 6px;
}

/* Responsive modales + produits */
@media (max-width: 768px) {
  .filtres-produits {
    padding: 14px 15px;
  }

  .filtre-groupe {
    min-width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .modal {
    padding: 16px;
  }

  /* ✅✅ MODIF ICI AUSSI : RESTE CARRÉ SUR MOBILE ✅✅ */
  .modal-image {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .filtre-toggle {
    top: 150px;
    left: 10px;
    padding: 10px 13px;
  }

  .filtre-panel {
    width: 85%;
    left: 7%;
    top: 140px;
  }
}

/* ========================================================= */
/*                      PAGE SERVICES                        */
/*                   (services.html)                         */
/* ========================================================= */

.service-section {
  width: 100%;
  margin-top: 0;
  padding: 0;
}

/* Ligne service */
.service-row {
  display: flex;
  width: 100%;
  min-height: 450px;
  align-items: stretch;
}



/* Texte = 50% */
.service-text {
  flex: 1;
  padding: 50px;

  display: flex; 
  flex-direction: column;
  justify-content: center;
  background: #ffffff;              /* fond blanc */
  border: 2px solid #C3A75C;        /* bordure dorée */
  border-radius: 18px;              /* coins arrondis */
  margin: 40px;      /* espace autour */
              
}

/* Titres */
.service-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #C3A75C;                   /* titre doré */
}

/* Texte */
.service-text p {
  max-width: 800px;
  line-height: 1.6;
  font-size: 18px;
  color: #333;
}

/* On neutralise dore / white */
.service-text.dore,
.service-text.white {
  background: #ffffff;
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 850px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-img-full {
    width: 100%;
    height: 280px;
  }

  .service-text {
    margin: 20px;
    padding: 30px 20px;
  }
}


/* ========================================================= */
/*                      PAGE ÉQUIPES                         */
/*                   (equipes.html)                          */
/* ========================================================= */


.titre-equipe {
  text-align: center;        /* centre le texte */
  font-size: 44px;
  font-weight: 900;
  margin: 40px 0 50px;       /* espace haut / bas */
  color: #C3A75C;            /* couleur demandée */
  letter-spacing: 2px;
}

.staff-card {
  display: flex;
  align-items: center;              /* centre verticalement */
  justify-content: center;          /* centre le contenu */
  gap: 40px;                        /* espace image ↔ texte */

  max-width: 1100px;                /* empêche pleine largeur */
  margin: 40px auto;                /* centre dans la page */

  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  padding: 30px;
}

/* IMAGE CARRÉE (cartes) */
.staff-card img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* TEXTE */
.staff-info {
  flex: 1;
  text-align: center;
  padding: 10px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.staff-info p {
  font-size: 18px;
  margin: 6px 0;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .staff-card {
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
  }

  .staff-card img {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .staff-info {
    padding: 0;
  }
}


/* ========================================================= */
/*                    PAGE RENDEZ-VOUS                       */
/*                 (rendezvous.html)                         */
/* ========================================================= */

.rendezvous-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.rendezvous-intro {
  text-align: center;
  margin-bottom: 50px;
}

.rendezvous-intro h1 {
  font-size: 42px;
  font-weight: bold;
  color: #C3A75C;
  margin-bottom: 20px;
}

.rendezvous-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}

/* GRID */
.rendezvous-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

/* CARTE */
.rendezvous-card {
  background: white;
  border: 2px solid #C3A75C;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rendezvous-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.rendezvous-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: #C3A75C;
  margin-bottom: 8px;
}

.rendezvous-card .role {
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 18px;
}

/* Liste */
.rendezvous-card ul {
  padding-left: 20px;
  color: #333;
  line-height: 1.5;
}

.rendezvous-card li {
  margin-bottom: 10px;
  font-size: 17px;
}

/* CARTE SANS RDV */
.no-rdv {
  background: #f1f1f1;
  border: 2px dashed #b2b2b2;
}

.no-rdv-text {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .rendezvous-intro h1 {
    font-size: 32px;
  }

  .rendezvous-card h2 {
    font-size: 24px;
  }

  .rendezvous-card .role {
    font-size: 16px;
  }

  .rendezvous-card {
    padding: 20px;
  }
}

/* ========================================================= */
/*                     PAGE GALERIE                         */
/*                   (galerie.html)                         */
/* ========================================================= */

.galerie-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.titre-galerie {
  text-align: center;
  font-size: 40px;
  margin-bottom: 15px;
  color: #C3A75C;
  font-weight: bold;
}

.galerie-intro {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

/* Masonry simple */
.galerie-masonry {
  column-count: 4;
  column-gap: 10px;
}

.galerie-item {
  break-inside: avoid;
  margin-bottom: 10px;
}

.galerie-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover */
.galerie-item img:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Responsive colonnes */
@media (max-width: 1100px) {
  .galerie-masonry {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .galerie-masonry {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .galerie-masonry {
    column-count: 1;
  }
}

/* ========================================================= */
/*                 ACCUEIL - SECTIONS AJOUTÉES               */
/* ========================================================= */

.hero-accueil {
  position: relative;
  width: 100%;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
  background: url("../images/lesentetes.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-contenu {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 25px;
}

.hero-contenu h1 {
  font-size: 56px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-contenu p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 26px;
  opacity: 0.95;
}

.hero-boutons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn-principal,
.btn-secondaire {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-principal {
  background: #C3A75C;
  color: #000;
}

.btn-secondaire {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}

.btn-principal:hover,
.btn-secondaire:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.hero-infos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.info-bulle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 12px;
  backdrop-filter: blur(6px);
}

.info-bulle strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.info-bulle span {
  font-size: 14px;
  opacity: 0.95;
}

/* Aperçu services */
.accueil-apercu {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 50px;
}

.accueil-titre {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
  color: #C3A75C;
  font-weight: 900;
}

.accueil-sous-titre {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

.apercu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.apercu-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8e1cf;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.apercu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-color: #C3A75C;
}

.apercu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.apercu-texte {
  padding: 16px 16px 18px;
}

.apercu-texte h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #333;
}

.apercu-texte p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 15px;
}

/* Bande promo */
.accueil-bande {
  background: #f7f3e7;
  padding: 60px 20px;
}

.bande-contenu {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.bande-texte h2 {
  font-size: 38px;
  margin: 0 0 12px;
  color: #333;
}

.bande-texte p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 18px;
}

.bande-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bande-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border: 2px solid #C3A75C;
}

/* Mini-galerie */
.mini-galerie {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 60px;
}

.mini-galerie-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 25px;
}

.mini-galerie-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
  transition: transform 0.2s ease;
}

.mini-galerie-grid img:hover {
  transform: scale(1.02);
}

.mini-galerie-btn {
  margin-top: 22px;
  text-align: center;
}

/* Responsive accueil */
@media (max-width: 1100px) {
  .apercu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bande-contenu {
    grid-template-columns: 1fr;
  }

  .bande-image img {
    height: 320px;
  }

  .mini-galerie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-contenu h1 {
    font-size: 38px;
  }

  .hero-infos {
    grid-template-columns: 1fr;
  }

  .mini-galerie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-galerie-grid img {
    height: 150px;
  }
}

/* ========================================================= */
/*   BOUTON RDV (page équipes) + SÉLECTION (page rendezvous) */
/* ========================================================= */

.btn-rdv {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #C3A75C;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.btn-rdv:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Mise en évidence sur la page rendez-vous */
.rendezvous-card.selected {
  border: 3px solid #C3A75C;
  box-shadow: 0 12px 28px rgba(195,167,92,0.35);
  transform: translateY(-3px);
  position: relative;
}

/* Badge "Sélectionné" */
.rdv-badge {
  display: inline-block;
  background: #C3A75C;
  color: #000;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}

