/* -------------------- IMPRESSION.CSS -------------------- */

/* Réinitialisation et simplification pour impression */
* {
  background: none !important;
  color: black !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body {
  font-family: serif;
  font-size: 10pt;
  line-height: 1.5;
  margin: 1cm;
}

header, nav, .galerie, .cta {
  display: none;
}

h1, h2, h3, p {
    margin: 0.2em 0;
  color: black;
  page-break-after: avoid;
}

img {
  max-width: 100%;
  height: auto;
  page-break-inside: avoid;
}

main {
  width: 100%;
}

/* Affiche une synthèse texte pour impression */
main:before {
  content: "Fiche synthétique - Achetez local : résumé de la démarche";
  display: block;
  font-size: 18pt;
  font-weight: bold;
  margin-bottom: 0.5cm;
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5cm;
}

/* Supprime les liens visuellement mais garde le texte */
a[href]:after {
  content: " (" attr(href) ")";
  font-size: 80%;
}

footer {
  position: relative;
  bottom: 0;
  margin-top: 1cm;
  text-align: center;
}

footer .social a {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  color: black !important;
}

@page {
  margin: 1cm;
}
