/**
 * @file
 * GRACE Theme - Print Styles
 */

@media print {
  /* Reset */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Hide non-essential elements */
  .header,
  .footer,
  .main-navigation,
  .user-menu,
  .breadcrumb,
  .sidebar,
  .social-share,
  .newsletter,
  .btn,
  button,
  .menu-toggle,
  .skip-link,
  nav,
  aside,
  .messages {
    display: none !important;
  }

  /* Page layout */
  .page-wrapper,
  .main-content,
  .content-layout,
  .content-layout__main {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }

  p, ul, ol {
    orphans: 3;
    widows: 3;
  }

  /* Links */
  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="http"]:after,
  a[href^="https"]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    font-weight: normal;
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  figure {
    page-break-inside: avoid;
  }

  /* Tables */
  table {
    border-collapse: collapse !important;
  }

  th, td {
    border: 1px solid #000 !important;
  }

  tr {
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* Page breaks */
  .page-break {
    page-break-before: always;
  }

  .no-page-break {
    page-break-inside: avoid;
  }

  /* Node/Article specific */
  .node__header {
    margin-bottom: 20pt;
    padding-bottom: 10pt;
    border-bottom: 1pt solid #ccc;
  }

  .node__title {
    margin-bottom: 5pt;
  }

  .node__meta {
    font-size: 10pt;
    color: #666 !important;
  }

  .node__content {
    text-align: justify;
  }

  /* Add site info in header */
  @page {
    margin: 2cm;
  }

  /* Footer for printed pages */
  .node::after {
    content: "GRACE - Groupe de Réhabilitation Améliorée après ChirurgiE - www.grace-asso.fr";
    display: block;
    margin-top: 30pt;
    padding-top: 10pt;
    border-top: 1pt solid #ccc;
    font-size: 9pt;
    color: #666 !important;
    text-align: center;
  }
}
