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%;
  vertical-align: baseline;
}

@font-face {
    font-display: swap;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol:not(.wp-block-list),
ul:not(.wp-block-list) {
  list-style: none;
}

.wp-block-list {
  margin-block-start: 0;
  margin-block-end: 0;
}

.wp-block-list li {
  margin-left: 4rem;
}

.wp-block-paragraph {
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* NOWE STYLE */

:root {
  --color-white: #fff;
  --color-black: #000;
  --black: #000;
  --white: #fff;

  --bg: #F5F2EA;
  --bg-alt: #ECE6D8;

  --primary: #2B2926;
  /* --primary-dark: #1C1A18; */
  --primary-dark: #000000;

  /* --accent: #A58A5A; */
  --accent: #EDB85C;
  --accent-hover: #B79B6B;
  --accent-border: #edb85c;

  --text: #2A2723;
  /* --text-light: #F7F4ED; */
  --text-light: #ffffff;

  --filter-accent-icon: invert(84%) sepia(25%) saturate(608%) hue-rotate(355deg) brightness(96%) contrast(91%);


}

/* // 10px = 1rem */
html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h1 em,
h2 em,
h3 em,
h4 em,
h5 em {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 4.8rem;

  @media (max-width: 768px) {
    font-size: 4rem;
  }
}

h2 {
  font-size: 4rem;

  @media (max-width: 768px) {
    font-size: 3.6rem;
  }
}

h3 {
  font-size: 3.5rem;

  @media (max-width: 768px) {
    font-size: 3rem;
  }
}

p {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

:root :where(p) {
  font-size: 1.8rem;

  @media (max-width: 768px) {
    font-size: 1.8rem;
  }
}

p:last-child {
  margin-bottom: 0;
}


.is-style-dark {
  background: var(--primary-dark);
  color: var(--text-light);
}

.is-style-light {
  background: var(--bg);
  color: var(--text);
}

.has-background {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.has-accent-hover-color.has-text-color {
  color: var(--accent);
}

.has-accent-hover-color.has-text-color strong {
  color: var(--accent);
  font-weight: 500;
}

.has-accent-color.has-text-color {
  color: var(--accent);
}

.has-accent-color.has-text-color strong {
  color: var(--accent);
  font-weight: 500;
}

body.is-style-light div[style*="background-image"] .wp-block-heading {
  color: var(--text-light) !important;
}

body section[style*="background-color: var(--black)"] a:hover {
  color: var(--accent-hover) !important;
}


body.is-style-light a:where(:not(.wp-element-button)) {
  color: var(--accent);
}

body.is-style-light a:where(:not(.wp-element-button)):hover {
  color: var(--primary-dark);
}

:root :where(.wp-block-group-is-layout-flex) {
  gap: 2rem;
}

@media (max-width: 768px) {
  :root {
    --wp--preset--spacing--20: 10px;
    --wp--preset--spacing--30: 15px;
    --wp--preset--spacing--40: 20px;
    --wp--preset--spacing--50: 25px;
    --wp--preset--spacing--60: 30px;
    --wp--preset--spacing--70: 35px;
    --wp--preset--spacing--80: 40px;
    --wp--preset--spacing--10: 5px;
  }
}