/* Import Google Fonts handwriting-style font */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

/* Custom handwriting font face for local font */
@font-face {
  font-family: 'HandwritingCustom';
  src: url('./handwritania.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Signature styling for NDAs - clean handwriting without tilt */
.signature-handwriting {
  font-family: 'HandwritingCustom', 'Caveat', 'Brush Script MT', cursive, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #1a365d;
  text-decoration: none;
  letter-spacing: 0.8px;
  line-height: 1.3;
  transform: none; /* No rotation/tilt */
}

.signature-handwriting-large {
  font-family: 'HandwritingCustom', 'Caveat', 'Brush Script MT', cursive, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1a365d;
  text-decoration: none;
  letter-spacing: 0.8px;
  line-height: 1.3;
  transform: none; /* No rotation/tilt */
}

/* PDF signature styling class */
.pdf-signature {
  font-family: 'HandwritingCustom', 'Caveat', cursive, sans-serif;
  font-size: 32px;
  color: #1a1a66;
  font-weight: normal;
}