/*
Theme Name: JW Theme
Theme URI: http://example.com
Author: Twoje Imię
Author URI: http://example.com
Description: Opis Twojego Szablonu
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jw-theme
*/

/* Resetowanie stylów */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Podstawowe style */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #333;
    padding: 50x;
}

nav {
    display: flex;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
}

.menu-items li {
    margin-right: 20px;
}

.menu-items a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
}

.menu-items a:hover {
    background-color: #555;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.social-icons {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.social-icon {
    width: auto;
    height: 30px;
    margin-right: 20px;
    /* Dodatkowy margines między ikonkami */
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #333;
}

@media (max-width: 768px) {
    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-toggle {
        display: block;
        color: #fff;
    }

    .menu-items.active {
        display: flex;
        background-color: #333;
    }

    .menu-items li {
        margin-right: 0;
    }
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entry-header {
    font-size: x-large;
    background-color: transparent;
    color: #333;
    font-style: bold;
    margin-bottom: 10px;
}

.featured-image img {
    max-width: 100%;
    text-align: center;
    height: auto;
}


.content-area {
    background-color: rgb(228, 227, 227);
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 25px;
}

.content-area h2 {
    font-size: large;
    margin-top: 10px;
    margin-bottom: 10px;
    color: black;
}

.content-area p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-area img {
    max-width: 100%;
    text-align: center;
    height: auto;
}