@charset "UTF-8";
/* =========================
   Reset + zmienne
========================= */
:root {
  --bg: #ffffff;
  --border: #e5e7eb;
  --muted: #6b7280;
  --ok: #16a34a;
  --primary: #5c7666;
  --brand-100: #e9ffe6;
  --brand-300: #a6c3a7;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

/* Usuwamy duplikaty i porządkujemy .container */
.container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding-inline: 16px;
}

/* =========================
   MENU + burger
========================= */
.menu {
  position: relative;
  width: 100%;
  background-color: var(--brand-100);
  /* Burger - domyślnie ukryty na desktopie */
}
.menu .menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.menu .logo {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu .menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  z-index: 200;
}
.menu .menu-toggle .menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu .menu-items {
  display: flex;
  align-items: center;
}
.menu .menu-items ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}
.menu .menu-items ul li {
  padding: 0 10px;
}
.menu .menu-items ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.menu .menu-items ul li a.active {
  color: #5c7666;
  text-decoration: underline;
}
.menu .menu-items ul li a:hover {
  color: gray;
}

/* =========================
   HERO 1
========================= */
.heroBg {
  background-color: var(--brand-100);
}
.heroBg .container {
  background-color: var(--brand-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0 56px;
}
.heroBg .container .logo-container img {
  width: 400px;
}
.heroBg .container .container-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.heroBg .container .container-links h3 {
  padding: 0 10px;
}
.heroBg .container .container-links span {
  opacity: 0.6;
}
.heroBg .container .buttonVisit {
  background-color: var(--brand-300);
  color: #000;
  padding: 10px 30px;
  border-radius: 10px;
  margin: 28px 0 64px;
  cursor: pointer;
  border: 1px solid var(--brand-300);
  transition: border-color 0.25s ease;
}
.heroBg .container .buttonVisit a {
  text-decoration: none;
  color: var(--brand-100);
  transition: border-color 0.25s ease;
}
.heroBg .container .buttonVisit a:hover {
  border-color: #637864;
}
.heroBg .container .buttonVisit:hover {
  border-color: #637864;
}

/* =========================
   HERO 2 (2 kolumny)
========================= */
.heroSecond .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}
.heroSecond .container .leftSection {
  display: flex;
  justify-content: center;
}
.heroSecond .container .leftSection img {
  width: 400px;
}
.heroSecond .container .rightSection {
  padding: 0 8px;
}
.heroSecond .container .rightSection p {
  font-size: 18px;
  text-align: center;
  padding-top: 18px;
}

/* =========================
   HERO 3 (3 boxy)
========================= */
.heroThree {
  width: 100%;
  /* Responsywność */
}
.heroThree .container {
  display: flex;
  flex-wrap: wrap;
  margin: -8px auto;
  padding: 20px 0;
  /* usuwa margines po prawej stronie dla co 3. elementu */
}
.heroThree .container .box33,
.heroThree .container .box100 {
  background-color: lightgrey;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
}
.heroThree .container .box33 ul,
.heroThree .container .box100 ul {
  padding: 5px 20px;
  font-size: 16px;
}
.heroThree .container .box33 {
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  margin: 8px;
}
.heroThree .container .box33:nth-child(3n) {
  margin-right: 0;
}
.heroThree .container .box100 {
  flex: 1 1 100%;
  max-width: 100%;
  margin: 8px 0;
}
@media (max-width: 1024px) {
  .heroThree .container .box33 {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .heroThree .container .box33:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .heroThree .container {
    flex-direction: column;
  }
  .heroThree .container .box33,
  .heroThree .container .box100 {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 8px 0;
  }
}

/* =========================
   Sekcja zielona
========================= */
.greenSection .container {
  margin: 40px auto;
  padding: 32px;
  background-color: var(--brand-300);
  border-radius: 20px;
}
.greenSection .container p {
  padding-top: 10px;
}
.greenSection .container p:first-child {
  padding-top: 0;
}

/* =========================
   Nagłówki sekcji
========================= */
.headerSection {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.headerSection h4 {
  margin: 10px 0;
}
.headerSection h2 {
  padding-bottom: 20px;
}

/* =========================
   Cytat
========================= */
.quote .container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin: 0;
}
.quote .container p {
  font-size: 24px;
  margin-top: 32px;
  text-align: center;
  width: min(760px, 90%);
}

/* =========================
   Kalendarz (Twoje style)
========================= */
.layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
}
/* LEFT: month calendar */
.panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.panel .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.panel .head .title {
  font-weight: 700;
}
.panel .head .muted {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav button {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

.month {
  padding: 12px;
}

.dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}
.dow div {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day {
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
  background: #fff;
}

.num {
  font-weight: 600;
}

.other {
  opacity: 0.45;
}

.disabled {
  color: #9ca3af;
  background: #f3f4f6;
}

.available {
  outline: 2px solid rgba(22, 163, 74, 0.25);
}

.available::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ok);
}

.clickable {
  cursor: pointer;
}

.legend {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ok);
  margin-right: 6px;
}

/* RIGHT: time slots */
.slots-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.selected {
  border: 2px solid #5c7666 !important;
  background: #eef2ff;
}

.slots-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.slots-head .title {
  font-weight: 700;
}
.slots-head .muted {
  font-size: 12px;
  color: var(--muted);
}

.slots {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  height: 350px;
  /* zawsze obecny “tor” paska */
  overflow-y: scroll;
  /* zamiast overflow: auto/scroll; */
  overflow-x: hidden;
  scrollbar-gutter: stable;
  /* rezerwuje miejsce na pasek, gdy jest */
  /* Firefox */
  scrollbar-width: thin;
  /* thin | auto */
  scrollbar-color: var(--primary) #e6f4e6;
  /* thumb | track */
}

/* Chrome/Edge/Safari */
.slots::-webkit-scrollbar {
  width: 12px;
  /* szerokość paska pionowego */
}

.slots::-webkit-scrollbar-track {
  background: #e6f4e6;
  /* zielony, jasny tor */
  border-radius: 10px;
}

.slots::-webkit-scrollbar-thumb {
  background: var(--primary);
  /* zielony kciuk – masz już zmienną */
  border-radius: 10px;
  border: 3px solid #e6f4e6;
  /* “ramka”, daje efekt kapsułki */
}

.slots::-webkit-scrollbar-thumb:hover {
  background: #4b6153;
  /* ciemniejszy na hover */
}

.slot-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  text-align: center;
}
.slot-btn:hover {
  border-color: var(--primary);
}
.slot-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.empty {
  padding: 18px;
  color: var(--muted);
}

/* Dialog */
dialog {
  margin: auto;
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  width: min(520px, 92vw);
}

form {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
}
.actions button {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}
.actions .primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.error {
  color: #b91c1c;
  font-size: 12px;
}

/* =========================
   BREAKPOINTS
========================= */
/* <= 1200px: lekka kompaktacja */
@media (max-width: 1200px) {
  .heroBg .container .logo-container img {
    width: 360px;
  }
  .heroSecond .container .rightSection img {
    width: 360px;
  }
}
/* <= 992px: 2-kolumny -> 1 kolumna w części sekcji */
@media (max-width: 992px) {
  .menu .menu-items ul li a {
    font-size: 15px;
  }
  .heroBg .container .container-links {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
  .heroSecond .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .heroSecond .container .leftSection p {
    font-size: 17px;
  }
  .heroSecond .container .rightSection img {
    width: 360px;
    margin: 0 auto;
  }
  .heroThree .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .row {
    grid-template-columns: 1fr;
  }
  .available::after {
    width: 4px;
    height: 4px;
    top: 2px;
  }
}
/* <= 768px: menu mobilne, większe dot targety, pełna szerokość */
@media (max-width: 768px) {
  /* burger widoczny */
  .menu .menu-toggle {
    display: inline-block;
  }
  /* mobilne menu: off-canvas/dropdown */
  .menu .menu-items {
    position: fixed;
    inset: 0px 0 auto 0;
    /* pod paskiem menu */
    background: #fff;
    border-top: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
    padding: 16px;
    display: block;
    /* ważne: nadpisuje flexa z desktopu */
    max-height: calc(100dvh - 56px);
    overflow-y: auto;
    z-index: 50;
  }
  .menu .menu-items.is-open {
    transform: translateY(0);
  }
  .menu .menu-items ul {
    display: grid;
    gap: 4px;
  }
  .menu .menu-items ul li {
    padding: 0;
  }
  .menu .menu-items ul li a {
    display: block;
    padding: 12px 8px;
    font-size: 16px;
    border-radius: 8px;
  }
  .menu .menu-items ul li a:hover {
    background: #f7f7f7;
  }
  .menu .menu-wrapper {
    padding-block: 10px;
  }
  .heroBg .container .logo-container img {
    width: 300px;
  }
  .heroSecond .container .rightSection img {
    width: 320px;
  }
  .heroThree .container {
    grid-template-columns: 1fr;
  }
  .heroThree .container .box33 {
    font-size: 17px;
  }
  .greenSection .container {
    padding: 24px;
  }
  .quote .container p {
    font-size: 20px;
    width: 100%;
  }
  .available::after {
    width: 4px;
    height: 4px;
    top: 2px;
  }
}
/* <= 576px: typografia i spacing */
@media (max-width: 576px) {
  .heroBg .container {
    padding: 36px 0 44px;
  }
  .heroBg .container .buttonVisit {
    width: 100%;
    text-align: center;
  }
  .heroBg .container .container-links {
    margin-top: 8px;
    /* pionowy stacking bez separatorów */
  }
  .heroBg .container .container-links h3 {
    font-size: 16px;
  }
  .heroBg .container .container-links span {
    display: none;
  }
  .heroSecond .container .leftSection p {
    font-size: 16px;
  }
  .panel .head {
    padding: 10px;
  }
  .dow div {
    font-size: 10px;
  }
  .legend {
    font-size: 11px;
  }
  .slot-btn {
    padding: 10px;
  }
  .available::after {
    width: 4px;
    height: 4px;
    top: 2px;
  }
}
.custom-logo-link img {
  width: 135px;
}

/* =========================
   Cennik
========================= */
.pricingSection {
  padding: 32px 0;
}
.pricingSection__title {
  text-align: center;
  margin-bottom: 16px;
}
.pricingSection__note {
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.pricingTableWrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.pricingTable {
  width: 100%;
  border-collapse: collapse;
}
.pricingTable thead {
  background: #f9fafb;
}
.pricingTable thead th {
  text-align: left;
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pricingTable tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.pricingTable tbody td strong {
  font-weight: 700;
}
.pricingTable tbody tr:nth-child(even) {
  background: #fcfdfc;
}

/* mobile cards dla tabeli */
@media (max-width: 640px) {
  .pricingTable thead {
    display: none;
  }
  .pricingTable tbody,
  .pricingTable tr,
  .pricingTable td {
    display: block;
    width: 100%;
  }
  .pricingTable tbody tr {
    border-bottom: 1px solid var(--border);
    padding: 10px 12px;
  }
  .pricingTable tbody td {
    border: none;
    padding: 6px 0;
  }
  .pricingTable tbody td[data-th]::before {
    content: attr(data-th) ": ";
    font-weight: 700;
    color: #111;
  }
}
/* =========================
   Kontakt (lewa/prawa)
========================= */
.contactSection {
  padding: 32px 0;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contactGrid__left,
.contactGrid__right {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.contactFigure {
  padding: 0;
  margin: 0;
}
.contactFigure img.contactSection__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contactHeader {
  padding: 16px 16px 0 16px;
}
.contactHeader h2 {
  margin-bottom: 6px;
}
.contactHeader .muted {
  color: var(--muted);
  font-size: 14px;
}

.contactFormWrap {
  padding: 12px 16px 0 16px;
  /* ujednolicenie styli dla CF7 / WPForms (prosto) */
}
.contactFormWrap form,
.contactFormWrap .wpcf7 form,
.contactFormWrap .wpforms-container form {
  display: grid;
  gap: 10px;
}
.contactFormWrap input,
.contactFormWrap textarea,
.contactFormWrap select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.contactFormWrap .actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.contactFormWrap .actions .primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

/* “socials” */
.socials {
  padding: 10px 16px 16px 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.socials span {
  display: inline-block;
  margin-bottom: 8px;
  color: #111;
  font-weight: 600;
}
.socials ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 0;
  margin: 0;
}
.socials ul li a {
  text-decoration: none;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.socials ul li a:hover {
  background: #f1f5f1;
  border-color: #cfe0d1;
}

/* responsywność */
@media (max-width: 992px) {
  .contactGrid {
    grid-template-columns: 1fr;
  }
}
/* ukryty caption dla dostępności */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.site-footer {
  padding: 24px 0;
  background: #0f0f10;
  color: #fff;
}

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

.footer-menu {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  opacity: 0.85;
}/*# sourceMappingURL=style.css.map */