/* --- STYL DLA PODSTRONY PARAFIA --- */

/* --- NAWIGACJA SEKCJI (odnosniki) --- */
/* --- NAWIGACJA SEKCJI (odnosniki) --- */
#odnosniki {
  background: #1f1f1f;
  padding: 0.8rem 0;
  margin: 1rem auto;        /* odstęp od headera */
  border-radius: 12px;      /* zaokrąglone rogi */
  max-width: 1100px;        /* żeby nie rozciągało się na całą szerokość */
}


#odnosniki ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

#odnosniki li {
  background: #2a2a2a;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

#odnosniki a {
  text-decoration: none;
  color: #ccc;
  font-weight: bold;
}

#odnosniki li:hover {
  background: #333;
}

#odnosniki a:hover {
  color: #ffcc00;
}

/* --- BLOKI TREŚCI --- */
.divs, #historia, #regulamin, #odeszli {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-top: 1rem;
}

hr {
  border: 0;
  border-top: 1px solid #333;
  margin: 1.5rem 0;
}

/* --- TEKSTY I NAGŁÓWKI --- */
h1 {
  text-align: center;
  margin-bottom: 1rem;
}

h3 {
  color: #ffcc00;
  font-size: 1.1rem;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
}

/* --- LISTY --- */
ol, ul {
  padding-left: 1.2rem;
}

li {
  margin: 0.3rem 0;
}

/* --- OBRAZY --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* --- PRZYCISK DO POBRANIA --- */
a[download] {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #007bff;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

a[download]:hover {
  background-color: #0056b3;
}

/* --- RESPONSYWNOŚĆ PODSTRONY --- */
@media (max-width: 768px) {
  #odnosniki ul {
    flex-direction: column;
    align-items: center;
  }

  #odnosniki li {
    width: 90%;
    text-align: center;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  p, li {
    font-size: 0.95rem;
  }
}
