
/* === TYPOGRAFIA I UKŁAD === */
body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;           /* przyjazna dla oka */
  line-height: 1.75;
  background: #fdfdfd;
  color: #111;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  max-width: 750px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

/* === NAGŁÓWKI === */
h1, h2, h3 {
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

h1 { font-size: 2.3rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

/* === LINKI === */
a {
  color: #003366;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  text-decoration: underline;
  color: #001a33;
}

/* === HEADER & FOOTER === */
header, footer {
  background: #eee;
  padding: 1rem;
  text-align: center;
}
footer {
  font-size: 0.9rem;
  color: #555;
}

/* === INNE ELEMENTY === */
.preview {
  color: #777;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 1.2rem;
}

/* === PRZYCISKI / PRZELACZNIKI / FUTURE === */
button, .btn {
  font-family: inherit;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  cursor: pointer;
  transition: background 0.2s ease;
}
button:hover, .btn:hover {
  background: #e1eaff;
}
