/**handles:fajne-layout**/
/*
 * layout.css – struktura layoutu: body, kontenery, sekcje
 */

body {
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

header,
footer,
main {
  width: 100%;
  max-width: var(--max-width);
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
}