body {
    font-family: system-ui, sans-serif;
    margin: 0;
    background-color: #000;
    color: #eee;
}

/* header, content, footer*/
.container {
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

/*______________HEADER______________*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 10px 10px #000;
    transition: transform 0.3s ease;
    background: #111;
    backdrop-filter: none;
}

/* Płynna animacja */
.site-header p {
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}

/* chowanie */
.site-header.hide-top p {
  transform: translateY(-100%);
  opacity: 0;
  position: absolute;
}


.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header {
    padding-top: 5px;
    padding-bottom: 5px;
}

.site-header p {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
    font-size: 10px;
    letter-spacing: 9px;
    padding-left: 10px;
    color: #ddd;
}

.logoWrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoWrap:hover .logoDash,
.logoWrap:hover .logoPl {
    color: #ccc
}

.logoImg {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.logo {
    font-family: "Audiowide", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 15px;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}

.logo .logoSex {
    color: #ff8f00;
}

.logoWrap .logoDash,
.logoWrap .logoPl {
    font-size: 10px;
    color: #666;
    transition: .2s;
}

nav a {
    margin-left: 31px;
    text-decoration: none;
    color: #ccc;
    font-size: 12px;
    transition: .2s;
}

nav a:hover {
    color: #fff;
}


@media (max-width: 910px) {
    .site-header p {
        padding-top: 0px;
        letter-spacing: 7px;
        padding-left: 0px;
    }

    .site-header,
    .site-header .container {
        padding: 10px;
        padding-bottom: 5px;
    }
}

@media (max-width: 599px) {
    .site-header p {
        text-align: center;
    }

    .site-header .container {
        flex-direction: column;
    }
}

/*______________FOOTER______________*/
.site-footer {
    background-color: #111;
    font-size: 14px;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer p.copyright {
    width: 20%;
}

.site-footer p.footer_info {
    width: 50%;
    font-size: 12px;
    color: #666;
}

.site-footer nav.footer_links {
    width: 30%;
}

@media (max-width: 807px) {
    .site-footer .container {
        flex-direction: column;
    }

    .site-footer p.copyright {
        margin: 0;
    }

    .site-footer p.copyright,
    .site-footer p.footer_info,
    .site-footer nav.footer_links {
        width: 100%;
        text-align: center;
    }
}

/*______________CONTENT______________*/
main.container {
    min-height: 100vh;
}

.search-form {
    margin-top: 20px;
}

.search-form input {
    padding: 10px;
    width: 60%;
    max-width: 300px;
    outline: none;
    border-radius: 5px;
    color: #eee;
    background-color: #2c2c2c;
    border: 2px solid transparent;
}

.search-form input:focus {
    border: 2px solid #ff8f00;
}

.search-form button {
    background-color: #db7b00;
    border-radius: 5px;
    color: #eee;
    height: 39px;
    padding: 10px 15px;
    cursor: pointer;
    transition: .2s;
    border: none;
    outline: none;
}

.search-form button:hover {
    background-color: #ff8f00;
}

/*_________________________*/




.hasla-list li {
    margin: 8px 0;
}

.lead {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1em;
}

.faqh2 {
    font-size: 0.9rem;
}

.faqh3 {
    font-size: 0.8rem;
}

.faqp {
    font-size: 0.7rem;
}


.width100 {
    width: 100%;
    border-radius: 10px;
}

.textAndImgWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Nagłówki */
.h1-header {
    color: #f0f0f0;
    font-size: 2rem;
    margin-bottom: 20px;
}

.h2-header {
    padding-bottom: 5px;
    border-bottom: 1px dashed #ff8f00;
    text-align: right;
    letter-spacing: 4px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 200;
}

.marginC {
    margin: auto;
    display: block;
}

.floatL {
    float: left;
    margin-right: 5px;
    max-width: 100%;
    border-radius: 10px;
    border: 10px solid #111;
}

.floatR {
    float: right;
    margin-left: 5px;
    max-width: 100%;
    border-radius: 10px;
    border: 10px solid #111;
}

.t-alignL {
    text-align: left;
}

.t-alignC {
    text-align: center;
}

.t-alignR {
    text-align: right;
}

/* Tekst */
.text-default {
    color: #ddd;
    line-height: 1.6;
    font-size: 1rem;
}

.text-highlight {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* Linki */
a {
    color: #ff8f00;
    text-decoration: none;
}



.article-images {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
}

.article-images .img25 {
    width: 25%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.article-images .img33 {
    width: 33%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.article-images .img50 {
    width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.article-images .img100 {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.article-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

figure {
    margin: 0;
}

figcaption {
    width: 100%;
    font-size: 12px;
    text-align: center;
}

/* Tła sekcji */
.bg-dark-1 {
    text-align: justify;
    background-color: #111;
    color: #eee;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.bg-dark-2 {
    text-align: justify;
    background-color: #222;
    color: #eee;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.bg-dark-3 {
    text-align: justify;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.bg-dark-4 {
    text-align: justify;
    background-color: #444;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.padding0 {
    padding: 0;
}

.hideTel {
    display: block;
}

.showTel {
    display: none;
}

/* Cytaty */
blockquote {
    font-style: italic;
    border-left: 3px solid #ff8f00;
    padding-left: 10px;
    margin: 15px 0;
    color: #ccc;
}

/* Lista */
ul,
ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 5px;
}

/* Specjalne */
span {
    font-weight: bold;
}

@media (min-width: 600px) and (max-width: 1023px) {

    .h1-header {
        font-size: 1.85rem;
    }

    .h2-header {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }

    .text-default {
        font-size: 1.02rem;
        line-height: 1.65;
    }
}

@media (max-width: 599px) {
    .hideTel {
        display: none;
    }

    .showTel {
        display: block;
    }

    .floatL,
    .floatR {
        margin: 0;
        border: none;
    }

    .h1-header {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .h2-header {
        font-size: 1.15rem;
        letter-spacing: 2px;
        text-align: left;
    }

    .text-default {
        font-size: 1.08rem;
        line-height: 1.75;
    }

    li {
        font-size: 1.05rem;
    }

    blockquote {
        font-size: 1.05rem;
    }

    .article-images {
        flex-direction: column;
        text-align: center;
    }

    .article-images .img33,
    .article-images .img50 {
        width: auto;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .article-images img {
        max-width: 100%;
        width: auto;
    }
}
