main {
  padding: 30px;
  max-width: 900px;
  margin: auto;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

html {
  overflow-y: scroll;
}


@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

:root {
  --fiolet-ciemny: #2D245D;
  --fiolet-jasny: #B8A8D8;
  --tlo: #ffffff;
}

body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--tlo);
  color: var(--fiolet-ciemny);
  line-height: 1.6;
}

header {
  background-color: var(--fiolet-jasny);
  padding: 20px;
  text-align: center;
}

header img {
  max-height: 160px;
  margin-bottom: 10px;
}

nav {
  background-color: var(--fiolet-ciemny);
  padding: 10px;
  text-align: center;
}

nav a {
  padding: 14px 26px;
  padding: 12px 24px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}



footer {
  background-color: var(--fiolet-jasny);
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: var(--fiolet-ciemny);
}


/* Layout dla sidebar po lewej */
.layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 100vh;
}

nav {
  background-color: var(--fiolet-ciemny);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

nav a {
  padding: 14px 26px;
  padding: 12px 24px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  margin: 10px 0;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}


/* Styl sekcji main – większa czcionka i mniej marginesu od góry */
main section {
  padding-top: 10px;
  font-size: 1.3em;
}

/* Sidebar – dwukrotnie większa czcionka i wyśrodkowanie linków */
nav {
  font-size: 2em;
  text-align: center;
  align-items: center;
}

/* Dopasowanie tła sidebara do wysokości całej strony */
.layout {
  min-height: 100vh;
}

nav {
  height: 100%;
}


/* Białe tło pod logo */


/* Podniesienie sekcji */
.lift-section {
  margin-top: -40px;
}


/* RESPONSYWNOŚĆ – TABLETY I TELEFONY */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 180px 1fr;
  }
  nav {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .layout {
    display: block;
  }

  nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 15px;
    font-size: 1.2em;
  }

  nav a {
  padding: 14px 26px;
  padding: 12px 24px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
    margin: 0 8px;
  }

  

  header {
    text-align: center;
  }

  header img {
    max-height: 120px;
  }
}

/* Tło pełnej wysokości dla treści */
body, html {
  height: 100%;
}
.layout {
  min-height: 100%;
}


/* Zapobieganie "potrząsaniu" strony przy zmianie zakładek */
html {
  overflow-y: scroll; /* wymuszenie obecności scrollbara */
}

body {
  min-height: 100vh; /* zapewnia pełną wysokość */
}


/* ZAPOBIEGANIE PODSKAKIWANIU TEKSTU PRZY ZMIANIE STRON */
.layout {
  min-height: 100vh;
  align-items: flex-start;
}





/* === Responsywność dodana przez ChatGPT === */

/* Elastyczny kontener główny */
.container, .main-content, .content, .section, .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Elementy kolumnowe w układzie desktopowym */
.column, .left, .right, .box {
    flex: 1 1 45%;
    box-sizing: border-box;
}

/* Menu responsywne */
nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

nav ul li {
    flex: 1 1 auto;
    text-align: center;
}

/* Media query: dla ekranów o szerokości 768px i mniejszych */
@media (max-width: 768px) {
    .container, .main-content, .content, .section, .wrapper {
        flex-direction: column;
    }

    .column, .left, .right, .box {
        flex: 1 1 100%;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        width: 100%;
    }
}


/* === Kadra === */
.kadra-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
}
.staff-member {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}
.staff-member img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
.staff-member h3 {
  margin-top: 15px;
  font-size: 1.2em;
}
.staff-member p {
  font-size: 0.95em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .staff-member {
    flex: 1 1 100%;
  }
}


/* === Poprawiony układ kadry === */
.kadra-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  align-items: center;
}
.staff-member {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  width: 100%;
}
.staff-member img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
}
.staff-member h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
}
.staff-member p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .staff-member {
    flex-direction: column;
    text-align: center;
  }
  .staff-member img {
    width: 100%;
    max-width: 300px;
  }
}


/* Ulepszone wyrównanie sekcji kadry do widocznego obszaru */
.kadra-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 40px 40px 40px;
  box-sizing: border-box;
}
.staff-member {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}
.staff-member img {
  width: 220px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.staff-member h3 {
  margin: 0 0 10px;
  font-size: 1.1em;
}
.staff-member p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .staff-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .staff-member img {
    width: 100%;
    max-width: 300px;
  }
}


/* Usunięcie górnego marginesu między tytułem a kadrą */
.kadra-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* Usunięcie górnego marginesu między nagłówkiem a treścią */
.kadra-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


h1 {
  margin-top: 0;
  padding-top: 0;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
    padding: 10px 20px;
  }

  main {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }

  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-member img {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
  }

  .team-member .description {
    width: 100%;
  }

  header img {
    width: 80%;
    max-height: none;
  }
}

@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .kadra-osoba {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kadra-osoba img {
    width: 80%;
    max-width: 300px;
  }

  .kadra-opis {
    padding: 10px;
  }

  main {
    padding: 10px;
  }
}


/* RESPONSYWNOŚĆ DLA URZĄDZEŃ MOBILNYCH */
@media screen and (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    main {
        margin-left: 0;
        padding: 20px;
    }

    .person {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .person img {
        width: 80%;
        max-width: 300px;
        height: auto;
    }

    .person-description {
        padding: 10px;
    }
}
