/* ============================================================
   Print stylesheet — transforme la home en CV imprimable.
   Chargée en media="print" depuis baseof.html, et utilisée
   telle quelle (sans @media wrapper) par le CI pour générer
   /cv.pdf via Puppeteer.
   ============================================================ */

/* Reset des paddings / fonds Bootstrap pour utiliser toute la page */
html, body {
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  color: #1a1a1a !important;
  font-size: 11pt;
  line-height: 1.45;
}

@page {
  size: A4;
  margin: 1.3cm 1.4cm;
}

/* Cache tout ce qui n'a pas sa place sur un CV imprimé */
.navbar,
#sideNav,
.home-cta-wrap,
.home-socials-heading,
.list-social-icons,
.resume-section .scroll-top,
footer,
script {
  display: none !important;
}

/* Sections : sortir des sections pleine hauteur du theme */
.resume-section {
  min-height: 0 !important;
  padding: 0 0 0.8rem !important;
  page-break-inside: avoid;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.8rem;
}

.resume-section:last-of-type {
  border-bottom: none;
}

.container-fluid {
  padding: 0 !important;
}

/* En-tête : nom + contact en haut, compact */
#about h1 {
  font-size: 22pt !important;
  line-height: 1 !important;
  margin-bottom: 0.2rem !important;
  text-transform: none !important;
}

#about .subheading {
  font-size: 10.5pt !important;
  margin-bottom: 0.6rem !important;
}

#about a {
  color: #1a1a1a !important;
  text-decoration: underline;
}

/* Photo de profil : cachée (le menu latéral est caché en print) */
#about .img-profile {
  display: none !important;
}

/* Titres de section : style CV sobre */
.resume-section h2 {
  font-size: 14pt !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem !important;
  color: #1a1a1a !important;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 0.15rem;
}

.resume-section h3 {
  font-size: 11pt !important;
  margin-top: 0.3rem !important;
  margin-bottom: 0.1rem !important;
  color: #1a1a1a !important;
}

.resume-section h4 {
  font-size: 10.5pt !important;
  color: #444 !important;
  font-weight: 600;
}

/* Expériences : compactes, dates à droite */
.resume-item {
  page-break-inside: avoid;
  margin-bottom: 0.55rem !important;
}

.resume-date {
  font-size: 9.5pt !important;
  color: #555 !important;
  white-space: nowrap;
}

/* Listes de skills : compactes, en lignes */
.dev-icons,
.list-inline {
  font-size: 10pt !important;
}

/* Forcer le texte primary du theme en noir */
.text-primary {
  color: #1a1a1a !important;
}

/* Liens : noir, soulignés */
a {
  color: #1a1a1a !important;
  text-decoration: none;
}

/* Éviter les coupures pénibles */
h2, h3, h4 {
  page-break-after: avoid;
}

p, li {
  orphans: 2;
  widows: 2;
}
