/* Reset + font */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
  padding: 0 1rem;
}

header {
  text-align: center;
  padding: 2rem 0;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #555;
}

.links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #0066cc;
}

main {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0 3rem;
}

h2 {
  margin-top: 2rem;
  color: #0066cc;
}

ul {
  padding-left: 1.2rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 1.5rem 0;
  border-top: 1px solid #ddd;
}

button {
  margin: 0.5rem;
  cursor: pointer;
  background: none;
  border: 1px solid #666;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

button:hover {
  background: #f0f0f0;
}

/* Print styles for PDF */
@media print {
  button {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    background: #fff !important;
    color: #000 !important;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  footer {
    border: none;
    color: #000;
  }

  header {
    padding-top: 0.2in; /* ensures header text is fully visible in PDF */
  }
}
