/* Basic body font and line height */
body {
  font-family: "Lato", sans-serif;
  line-height: 1.5;
}

/* List style for li */
li {
  list-style: circle;
}

/* Font families for titles */
.title-font,
h1,
h2,
h3 {
  font-family: "Playfair Display SC", serif;
  font-weight: bold;
}

/* Border for h1 and h2 */
h1,
h2 {
  border-bottom: 1px solid black;
}

/* Link styling using MasriSystems primary orange (#cc785c) */
a {
  color: #cc785c;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

a:hover {
  color: #a9583e;
  text-decoration: underline;
}

.dark a {
  color: #e8a55a;
}

.dark a:hover {
  color: #cc785c;
}

/* Hide print signature by default */
.print-signature {
  display: none;
}

/* Print-specific styles */
@media print {
  /* Hide elements not needed for print */
  .no-print,
  .no-print *,
  blockquote {
    display: none !important;
  }

  body {
    background: white !important;
    font-size: 10pt !important;
  }

  #resumeContent {
    width: 100% !important;
    padding: 10mm !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: white !important;
  }

  section {
    margin-bottom: 0.5rem !important;
  }

  h2 {
    margin-bottom: 0.25rem !important;
    font-size: 1.25rem !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  ul {
    margin-top: 0.25rem !important;
  }

  li {
    margin-bottom: 0.1rem !important;
  }

  /* Show print signature */
  .print-signature {
    display: block;
  }

  a {
    color: #cc785c !important;
    text-decoration: none !important;
  }
}

/* Styles for the main resume content area */
#resumeContent {
  width: 210mm; /* Standard A4 width */
  padding: 20px;
  margin: 20px auto; /* Center the content */
}

/* Styles applied when the PDF export is active (used by html2canvas/jsPDF) */
.pdf-export-active h1,
.pdf-export-active h2 {
  padding-bottom: 16px !important; /* Adjust padding for PDF export */
}

/* Hide elements not needed for PDF export */
.pdf-export-active .no-print,
.pdf-export-active .no-print *,
#resumeContent.pdf-export-active .no-print,
#resumeContent.pdf-export-active .no-print *,
.pdf-export-active blockquote {
  display: none !important;
}

/* Show print signature for PDF export */
.pdf-export-active .print-signature {
  display: block !important;
}

.pdf-export-active a {
  color: #cc785c !important;
  text-decoration: none !important;
}

