@charset "UTF-8";
:root {
  --color-blue: #2b5cf3;
  --color-white: #fff;
  --color-black: #000;
}

body:not(.wp-core-ui) {
  overflow-x: clip;
}

html,
body {
  overflow-x: hidden;
}

body {
  /* Tutaj umieszczamy style globalne */
  background-color: #fff;
  color: #000;
  font-weight: 400;
  scroll-behavior: smooth;
  margin: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p {
  margin-bottom: 10px;
}
body h1 {
  font-size: 2.5rem; /* największy nagłówek */
  font-weight: 700;
  line-height: 1.2;
}
body h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
body h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}
body h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}
body h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
body h6 {
  font-size: 1rem; /* najmniejszy nagłówek */
  font-weight: 500;
  line-height: 1.4;
}
body .decor-font {
  font-style: italic;
  font-family: var(--heuristica);
}
body * {
  font-family: var(--dm-sans);
}
body .main-front-page {
  padding-top: 100px;
}
body .et-container {
  max-width: 1244px;
  padding-inline: 20px;
  margin: 0 auto;
}
body img,
body svg {
  display: flex;
  max-width: 100%;
  height: auto;
}
body ul,
body ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
body a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

/* Karty z jasnym tłem */
.card-custom {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 30px !important;
}

@media only screen and (max-width: 991px) {
  .card-body {
    padding: 0 !important;
  }
}

/* Nagłówki */
.heading-custom {
  color: #273373;
}

/* Przyciski złote z zaokrągleniem */
.btn-custom {
  font-size: 18px !important;
  background-color: #ffb300 !important;
  border-radius: 30px !important;
  border: none !important;
  color: #fff !important;
  padding: 20px 30px;
  font-weight: 600;
  transition: background 0.2s ease;
  min-width: 250px;
  height: 60px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-custom:hover {
  background-color: #e6a000 !important;
}

.main-info {
  padding-top: 100px;
  padding-bottom: 100px;
}
.main-info .et-container .wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .main-info .et-container .wrapper {
    grid-template-columns: 1fr;
  }
}

/* Input w wyszukiwarce */
.search-box {
  position: relative;
}

.search-box input[type=text] {
  background-color: #f8f8f8;
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
}

.search-box input[type=text]::-moz-placeholder {
  color: #888;
}

.search-box input[type=text]::placeholder {
  color: #888;
}

.search-suggestions {
  position: absolute;
  top: 77px;
  width: calc(100% - 45px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 50;
}

.search-suggestions div {
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.search-suggestions div:hover {
  background-color: #fff5e0; /* lekki złoty hover */
}

.card .adress-wrap {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
}
.card .adress {
  display: flex;
  align-items: center;
}
.card .list-disc {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
.card .list-disc li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
}
.card .list-disc a {
  color: #000;
}

a.link-contact {
  color: #000;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 15px;
}

.main-search {
  padding-top: 140px !important;
}

.card-body table thead tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.card-body table thead tr th {
  color: #273373;
}
.card-body table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.card-body table tbody tr:hover {
  background-color: #fafafa !important;
}

.icon-bg {
  background-color: #ffb300;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.icon-bg svg {
  width: 20px;
}/*# sourceMappingURL=theme-style.css.map */