/* font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

/* ---- kolory --- */

:root {
  --base-clr: #f4f9ff;
  --alt-clr: #e6f2ff;
  --line-clr: #cfe4f7;
  --hover-clr: #d9ecff;
  --text-clr: #1f2d3d;
  --secondary-text-clr: #5c6f82;
  --btn-clr: #2f80ed;
  --accent-clr: #56ccf2;
  --accent-clr-hover: #2d9cdb;
  --x-hover: #a8e6ff;
  --red-hover: #ff7675;
  --main-color: #eaf6ff;
}

html {
  font-size: 16px !important;
}

/*  RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f4f9ff;
}

/* HEADER*/

.header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pasek {
  height: 1.1rem;
  background: linear-gradient(to right, #56ccf2, #2d9cdb, #2f80ed);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 8rem;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 240px;
  height: auto;
  transition: transform 0.3s ease;
}
.nav-logo img:hover {
  transform: scale(1.05);
}

#facebook {
  height: 30px;
  width: 30px;
  display: block;

  margin-left: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#facebook:hover {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 35px;
  list-style: none;
  font-size: 18px;
  transform: translateY(2px);
}

.nav-link {
  text-decoration: none;
  color: #1f2d3d;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}
.ikony-nav {
  display: flex;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2f80ed;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.nav-link:hover {
  color: #2f80ed;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.ikony {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}

.ikony svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  fill: #1f2d3d;
}

.ikony svg:hover {
  fill: #2f80ed;
  transform: scale(1.1);
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

/* glowna */

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zdjecie {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zdjecie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zdjecie::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.napis-na-zdjeciu {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 20px;
}

#napis-h1-zdjecie {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.1;
}

#tekst-p-zdjecie {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  background: #00b4ff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn-hero:hover {
  background: #008ec7;
  transform: scale(1.05);
}

/* USLUGI */

.Uslugi {
  background-color: var(--base-clr);
  padding: 100px 20px 20px 20px;
}

.czym-sie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.czym-sie-container > div {
  background: var(--alt-clr);
  border: 1px solid var(--line-clr);
  border-radius: 20px;
  padding: 32px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.czym-sie-container > div:hover {
  transform: translateY(-8px);
  border-color: var(--accent-clr);
  background-color: var(--hover-clr);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.czym-sie-container svg {
  width: 44px;
  height: 44px;
  fill: var(--text-clr, #222);
  transition:
    fill 0.3s ease,
    transform 0.3s ease;
}

.czym-sie-container > div:hover svg {
  fill: var(--accent-clr);
  transform: scale(1.1);
}

.czym-sie-container h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text-clr, #111);
}

.czym-sie-container p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-muted, #555);
}

/* O nas */

.O-nas {
  padding: 120px 20px 20px 20px;
  background: #f9fbfd;
}

.O-nas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.O-nas-tekst {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#O-nas-tytul {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00b4ff;
  position: relative;
  padding-left: 18px;
}

#O-nas-tytul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: #00b4ff;
  border-radius: 4px;
}

.O-nas-tekst h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.O-nas-tekst p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.O-nas-tekst h4:last-of-type {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00b4ff;
}

.O-nas-tekst button {
  width: fit-content;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  background: #00b4ff;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.O-nas-tekst button:hover {
  background: #008ec7;
}

.O-nas-tekst a {
  text-decoration: none;
  color: white;
}

.O-nas-zdjecie img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.O-nas-zdjecie img:hover {
  transform: scale(1.03);
}

/* Oferta */

.oferta {
  padding: 120px 20px 20px 20px;
  background: #f9fbfd;
}

.oferta-container {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.oferta-container.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.oferta-tekst {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#oferta-p {
  font-size: 17px;
}
#oferta-tytul {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00b4ff;
  position: relative;
  padding-left: 18px;
}

#oferta-tytul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: #00b4ff;
  border-radius: 4px;
}

.oferta-tekst h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.oferta-tekst p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.oferta-zdjecie img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.oferta-zdjecie img:hover {
  transform: scale(1.03);
}
/* klima */
.Klimatyzator {
  background: linear-gradient(180deg, var(--base-clr), #f4f8fb);
  padding: 40px 20px;
}

.klimatyzator-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.klimatyzator-container > div {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 36px 30px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
}

.klimatyzator-container > div:hover {
  transform: translateY(-10px);
  border-color: var(--accent-clr);
  box-shadow: 0 20px 50px rgba(0, 120, 255, 0.15);
}

.klimatyzator-container svg {
  width: 48px;
  height: 48px;
  fill: var(--accent-clr);
  background: rgba(0, 120, 255, 0.08);
  padding: 10px;
  border-radius: 14px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.klimatyzator-container > div:hover svg {
  transform: scale(1.1);
  background: rgba(0, 120, 255, 0.15);
}

.klimatyzator-container h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  color: var(--text-clr, #111);
}

.klimatyzator-container p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--text-muted, #555);
}

/* karuzela */
#infinit-loop {
  overflow: hidden;
  padding: 120px 20px 40px 20px;
}
#infinit-loop h1 {
  position: relative;
  font-size: 2rem;
  text-align: center;
  padding-top: 1rem;
}

#infinit-loop h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  top: -10px;
  height: 3px;
  background: var(--accent-clr);
}

#karuzela {
  margin: 0px auto;
  padding-bottom: 60px;
  width: 80%;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}
.grupa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  animation: spin 15s infinite linear;
  padding-right: 1em;
}

.karta {
  flex: 0 0 5em;
  height: 5em;
  padding: 1em;
  background: white;
  font-size: 3rem;
  border-radius: 0.2em;
  text-align: center;
  align-content: center;
  transition: transform 0.5s ease;
}

.karta:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#karuzela::-webkit-scrollbar {
  display: none;
}

@keyframes spin {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}

/* zdjecia */

.zdjecia-slider {
  width: 100%;
  margin: 40px 0px 150px 0px;
}

.slider-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#projekty-tytul {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00b4ff;
  position: relative;
  padding-left: 18px;
  margin-bottom: 30px;
}

#projekty-tytul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: #00b4ff;
  border-radius: 4px;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slajdy {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slajd {
  flex: 0 0 calc(33.33% - 27px);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.slajd img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.slajd img:hover {
  transform: scale(1.1);
}

.kolka {
  text-align: center;
  margin-top: 25px;
}

.kolko {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 6px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.kolko:hover {
  background-color: var(--accent-clr);
  transform: scale(1.2);
}

.aktywne {
  background: var(--accent-clr);
}

/* kontakt */
.kontakt-heading {
  grid-column: 1 / -1;
  font-size: 1.8rem;
  max-width: 700px;
}

#kontakt-tytul {
  grid-column: 1 / -1;
}

.kontakt-container {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
#kontakt-tytul {
   font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00b4ff;
  position: relative;
  padding-left: 18px;
}

#kontakt-tytul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: #00b4ff;
  border-radius: 4px;
}

.kontakt-tekst h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

#ContactForm input[type="text"],
#ContactForm input[type="email"],
#ContactForm input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid var(--line-clr);
  background-color: var(--base-clr);
  color: var(--text-clr);
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

#ContactForm input[type="text"]:hover,
#ContactForm input[type="email"]:hover,
#ContactForm input[type="tel"]:hover {
  background-color: var(--hover-clr);
}

#ContactForm input[type="text"]:focus,
#ContactForm input[type="email"]:focus,
#ContactForm input[type="tel"]:focus {
  border-color: var(--accent-clr);
  box-shadow: 0 0 0 3px rgba(86, 204, 242, 0.3);
  background-color: #ffffff;
}

#kontakt-btn {
  width: 100%;
  padding: 14px 26px;
  background-color: var(--btn-clr);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 128, 237, 0.18);
}

#kontakt-btn:hover {
  background-color: var(--accent-clr-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(47, 128, 237, 0.28);
}

#kontakt-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 8px rgba(47, 128, 237, 0.15);
}
.kontakt-right {
  transform: translateY(-5rem);
}
.form-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  color: black;
  cursor: pointer;
  font-size: 15px;
}

.form-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  transition: 0.3s;
  fill: black;
  cursor: pointer;
}

.form-contact-item:hover svg {
  transform: scale(1.1);
  fill: var(--accent-clr);
}
#inf-kontaktowe {
  font-size: 24px;
}
#p-kontaktowe {
  margin-bottom: 2.5rem;
}

/* DRUGA STRONA PODZIEKOWANIA */
.sekcja-podziekowanie {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
}

.okno-podziekowanie {
  background: var(--hover-clr);
  padding: 60px 40px;
  border-radius: 14px;
  text-align: center;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.okno-podziekowanie h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.okno-podziekowanie p {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.ikona-sukces {
  width: 70px;
  height: 70px;
  background: #2ecc71;
  color: white;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.przycisk-powrot {
  display: inline-block;
  padding: 12px 25px;
  background: var(--btn-clr);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.2s;
}

.przycisk-powrot:hover {
  background: #005ed6;
}

/* FOOTER */

.footer {
  background: #0b1220;
  color: white;
  padding: 70px 30px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-about {
  max-width: 520px;
}

#footer-logo {
  width: 190px;
  margin-bottom: 25px;
}

#footer-p-tekst {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 15px;
}

.footer-hours {
  margin-top: 15px;
  color: #94a3b8;
  font-size: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  cursor: pointer;
  color: #e2e8f0;
  font-size: 15px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-contact-item span,
.footer-contact-item p {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  line-height: 1.5;
}

.footer-contact-item:hover svg {
  transform: scale(1.1);
  fill: var(--accent-clr);
}

.panel-nawigacyjny h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-linia {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 50px 0 25px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}


/* cookies */

.sekcja-cookies {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: "Segoe UI", Arial, sans-serif;

  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.kolko-cookies {
  width: 70px;
  height: 70px;
  background: var(--accent-clr);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  transition: 0.3s ease;
}

.kolko-cookies:hover {
  transform: scale(1.05);
}

.panel-cookies {
  width: 500px;
  background: white;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.3s ease;
}

.panel-cookies.aktywny {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.zawartosc-cookies {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.panel-cookies p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #333;
  flex: 1;
}

.przyciski-cookies {
  display: flex;
  gap: 8px;
}

.przycisk-akceptuj,
.przycisk-odrzuc {
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease;
}

.przycisk-akceptuj {
  background: var(--accent-clr);
  color: white;
}

.przycisk-akceptuj:hover {
  opacity: 0.85;
}

.przycisk-odrzuc {
  background: #f1f1f1;
  color: #555;
}

.przycisk-odrzuc:hover {
  background: #e2e2e2;
}

@keyframes pojawienie {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes znikanieWDol {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}

.ukrywanie {
  animation: znikanieWDol 0.4s ease forwards;
}

/* POLITYKA PRYWATNOSC */

.privacy-policy {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f2937;
  line-height: 1.75;
  font-size: 16px;
}

.privacy-policy h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111827;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.privacy-policy .lead {
  font-size: 17px;
  color: #4b5563;
  margin-bottom: 32px;
}

.privacy-policy h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #111827;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-policy h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #1f2937;
  font-weight: 600;
}

.privacy-policy p {
  margin-bottom: 16px;
}

.privacy-policy ul,
.privacy-policy ol {
  margin: 12px 0 20px 22px;
  padding: 0;
}

.privacy-policy li {
  margin-bottom: 8px;
}

.privacy-policy strong {
  color: #111827;
  font-weight: 700;
}

.privacy-policy a {
  color: #2563eb;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.privacy-policy .info-box {
  background: #f9fafb;
  border-left: 4px solid #2563eb;
  padding: 16px 18px;
  border-radius: 10px;
  margin: 20px 0;
  color: #374151;
}

.privacy-policy hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}

@media (max-width: 768px) {
  .privacy-policy {
    margin: 20px 12px;
    padding: 24px 18px;
    border-radius: 12px;
    font-size: 15px;
  }

  .privacy-policy h1 {
    font-size: 28px;
  }

  .privacy-policy h2 {
    font-size: 21px;
  }

  .privacy-policy h3 {
    font-size: 17px;
  }
}

@media (max-width: 1000px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-items: center
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 18px;
    border-bottom: 1px solid #eee;
  }
  

  .nav-toggle {
    display: block;
  }

  .ikony-nav {
    display: flex;
    margin-top: 30px;
    margin-bottom: 20px;
    align-self: center;
    transform: translateX(-2rem);
    padding-left: 15px;
  }
  .nav-container {
    height: 80px;        
    padding: 10px 20px;
  }

  .nav-logo img {
    width: 200px;        
  }
  
}
@media (max-width: 992px) {
  .O-nas-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .O-nas-zdjecie img {
    width: 100%;
  }
  .O-nas-zdjecie {
    order: -1;
  }
  .oferta-container {
    grid-template-columns: 1fr;
  }

  .oferta-container.reverse {
    grid-template-columns: 1fr;
  }

  .oferta-tekst,
  .oferta-tekst2 {
    order: 1;
  }

  .oferta-zdjecie,
  .oferta-zdjecie2 {
    order: 2;
  }
}

@media (max-width: 600px) {
  .O-nas {
    padding: 80px 20px;
  }

  .O-nas-tekst h3 {
    font-size: 1.6rem;
  }

  .O-nas-tekst p {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .kontakt-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0px 30px;
  }

  .kontakt-heading {
    max-width: 100%;
  }

  .kontakt-right {
    transform: translateY(0);
  }

  #formularz {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .kontakt-container {
    padding: 0px 30px;
    gap: 30px;
  }

  #kontakt-tytul {
    font-size: 1rem;
  }

  .kontakt-heading h3 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  #inf-kontaktowe {
    font-size: 1.3rem;
  }

  #ContactForm input[type="text"],
  #ContactForm input[type="email"],
  #ContactForm input[type="tel"] {
    font-size: 14px;
    padding: 11px 14px;
  }

  #kontakt-btn {
    font-size: 14px;
    padding: 13px;
  }

  .form-contact-item {
    font-size: 14px;
    align-items: flex-start;
  }

  .form-contact-item svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  #napis-h1-zdjecie {
    font-size: 2rem;
  }

  #tekst-p-zdjecie {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .panel-cookies {
    width: 300px;
  }

  .zawartosc-cookies {
    flex-direction: column;
    align-items: flex-start;
  }

  .przyciski-cookies {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .sekcja-cookies {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .panel-cookies {
    width: 100%;
    border-radius: 12px;
  }

  .zawartosc-cookies {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .przyciski-cookies {
    width: 100%;
    flex-direction: column;
  }

  .przycisk-akceptuj,
  .przycisk-odrzuc {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .kolko-cookies {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .slajd {
    flex: 0 0 calc(50% - 20px);
  }

  .slajd img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .slajdy {
    gap: 20px;
  }

  .slajd {
    flex: 0 0 100%;
  }

  .slajd img {
    height: 260px;  
  }
}
@media (max-width: 768px) {

  .panel-nawigacyjny { 
    text-align: left;  
    width: 100%;   
    transform: translateY(-60px);      
  }
  .footer-linia {
    margin: 20px 0 15px; 
  }
}
