*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    font-family: "Funnel Display";
    --color1: #f5f2f2;
    --color2: #8a2be2 ;
}
/* menu */

header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #f5f2f2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 999;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 30px;          /* MNIEJSZE LOGO */
}
.hamburger {
  transition: 0.3s ease;
}

.hamburger span {
  transition: 0.3s ease;
}

/* ANIMACJA PO AKTYWOWANIU */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease; /* płynna zmiana koloru */
}

/* ANIMOWANE PODKREŚLENIE */
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: #000;
  transition: width .3s ease, background .3s ease;
}

nav ul li a:hover {
  color: #8A2BE2; /* kolor linku po najechaniu */
}

nav ul li a:hover::after {
  width: 100%;
  background: #8A2BE2; /* kolor podkreślenia po najechaniu */
}

/* --- HAMBURGER --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #000;
}

/* --- MOBILE/TABLET MENU --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #f5f2f2;
  width: 100%;
  padding: 20px;
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
}

/* animowane underline także w mobile */
.mobile-menu a {
  position: relative;
  padding-bottom: 6px;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0%;
  background: #000;
  transition: .3s ease;
}

.mobile-menu a:hover::after {
  width: 100%;
}


/* HERO */
#czesc {
  background-color: #e5e5e5;
  background-image: repeating-linear-gradient(
    90deg,
    #c2c2c2 1px,
    #c2c2c2 2px,   /* szerokość paska */
    #e5e5e5 2px,
    #e5e5e5 200px   /* szerokie odstępy między paskami */
  );
  font-family: "Clash Display";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  color: black;
  position: relative;
}

/* górny tekst */
#czesc .czesc-content {
  padding-top: 10%;
  text-align: right;
  padding-right: 9rem;
  align-self: flex-end;
  line-height: 0.9;
}

#czesc .czesc-content h1 {
  font-size: clamp(80px, 12vw, 160px); /* 🔹 elastyczny rozmiar */
  display: inline-block;
}

#czesc .czesc-content p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  text-align: right;
}

#czesc .czesc-content h1 span {
  color: #8A2BE2;
}

/* kontener z obrazkiem */
#czesc .czesc-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5vw 0; /* 🔹 elastyczny padding */
}

#czesc .czesc-image img {
  width: 80%;
  height: auto;
  display: block;
  z-index: 1;
  position: relative;
}

/* nakładany tekst */
#czesc .czesc-overlay {
  position: absolute;
  right: 12%;
  width: 28%;
  font-family: "Funnel Display", sans-serif;
  font-size: clamp(12px, 1vw, 16px); /* 🔹 elastyczny tekst */
  line-height: 1.7;
  color: black;
  text-align: justify;
  z-index: 2;
}

/* grupa tytułu + pola */
#czesc .czesc-title-group {
  position: absolute;
  left: 12%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: black;
  font-family: "Funnel Display", sans-serif;
}

/* tytuł */
#czesc .czesc-title {
  font-size: clamp(36px, 4vw, 62px); /* 🔹 elastyczny rozmiar */
  text-align: left;
  margin: 0 0 3rem 0;
}
/* animacja tytułu w hero */
.czesc-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.czesc-title.show {
  opacity: 1;
  transform: translateY(0);
}

.link-item a {
  position: relative;
  font-size: clamp(18px, 2vw, 24px);
  text-decoration: none;
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 2vw;
}

.link-item a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" stroke="black" stroke-width="12" fill="none"><path d="M10 10 L90 90 M90 10 L90 90 L10 90"/></svg>') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.link-item a:hover::after {
  transform: translate(4px, 4px);
}

/* kontener pól */
#czesc .link-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

#czesc .link-box .link-item {
  width: 40vw;
  max-width: 600px;
  box-sizing: border-box;
  padding-bottom: 8px;
  border-bottom: 2px solid #000;
}

#czesc .link-box .link-item a {
  display: block;
  width: 100%;
  text-align: right;
  font-family: "Funnel Display", sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  color: #000;
  text-decoration: none;
  line-height: 1;
}

#czesc .link-box .link-item a:hover {
  opacity: 0.85;
}

/* efekt pisania */
#typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid black;
  padding-right: 5px;
  transition: border-color 0.3s;
}
@keyframes blinkCursor {
  0%, 100% { border-color: transparent; }
  50% { border-color: black; }
}
.typing {
  animation: blinkCursor 0.7s step-end infinite;
}
.napokaz-section {
  
  font-family: 'Funnel Display', sans-serif;
}

.napokaz-wrap {
  display: flex;
  gap: 0;
}


.napokaz-left {
  flex: 0 0 40%;
  padding: 100px 80px;
  background-image: url("l.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  
}

/* PRAWA STRONA – PARALLAX */
.napokaz-right {
  flex: 0 0 60%;
  padding: 100px 40px; /* góra/dół większy oddech */
  display: flex;
  flex-direction: column;
  gap: 80px;
  color: #fff;

  background-image: url("p.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  /* PARALLAX */
 
}

.napokaz-left h2 {
  position: sticky;
  top: 120px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.55;
  color: #fff;
}


.lead {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 620px;
  padding-left: 24px;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-left: 24px;
}

.btn {
  padding: 14px 32px;
  background: #8a2be2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.cta-text {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.8;
}

/* OPINIA */
blockquote {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
  border-left: 2px solid #8a2be2;
  padding-left: 24px;
  max-width: 700px;
}

/* PODPIS */
.signature {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.75;
  padding-left: 24px;
}

.signature strong {
  font-weight: 600;
}

.signature a {
  color: #8a2be2;;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.values {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 720px;
  padding-left: 24px;
  margin-top: 40px;
}

.values h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

/* ITEM */
.value-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35); /* cienka linia */
}

.value-title {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.value-item p {
  font-weight: 300;
  line-height: 1.7;
  color: #fff;
  opacity: 0.85;
}


/* WWW */

.parallax {
  background-image: url(par.jpg);
  height: 400px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* druga strona */
.custom-section {
  background: url('tlo4.jpg') no-repeat center center;
  background-size: cover;
  padding: 40px;
  color: #fff;
  font-family: 'Funnel Display', sans-serif;
  min-height: 80vh; /* wysokość sekcji */
}

.content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px; /* odstęp między obrazkiem a tekstem */
  height: 100%;
}

.corner-image {
  width: 25%; /* obrazek zajmuje 1/4 szerokości strony */
  aspect-ratio: 1 / 1; /* kwadrat */
  object-fit: cover; /* wypełnia kwadrat bez deformacji */
}

.text {
  width: 50%; /* tekst zaczyna się od połowy strony */
  text-align: justify;
}

.text h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}

.text p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}

.www-text h3 {
  opacity: 0;
  transform: translateX(100px); /* start z prawej */
  transition: all 0.8s ease-out;
}

/* Po pojawieniu się w widoku */
.www-text h3.show {
  opacity: 1;
  transform: translateX(0);
}

/* OFERTA */
#oferta {
  background-image: url("tlo4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 100vh; /* pełna wysokość */
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Tytuł */
#oferta .oferta-tytul {
  font-size: 42px;
  margin-bottom: 40px;
  text-align: left;
  transform: none;
  opacity: 1;
}

/* Klasa aktywna do animacji */
#oferta .oferta-tytul.animate {
  transform: translateX(0);
  opacity: 1;
}
.oferta-karta .btn-napisz {
  display: inline-block;
  margin: 1rem auto 0;   /* odstęp od góry i wyśrodkowanie */
  padding: 0.4rem 3.9rem;
  background-color: #fff;
  color: #6600CC;        /* fiolet */
  font-size: 0.9rem;     /* nie za duży */
  font-weight: 600;
  text-decoration: none;
 
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover efekt */
.oferta-karta .btn-napisz:hover {
  background-color: #8a2be2;
  color: #fff;
}

/* Układ kart */
.oferta-karty {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;       /* zawsze w jednym rzędzie */
}

/* Każda karta = 1/4 szerokości */
.oferta-karta {
  flex: 0 0 25%;           /* dokładnie 25% szerokości */
  max-width: 25%;
  border: 1px solid white;
  padding: 40px 20px;      /* mniejszy padding, żeby tekst się mieścił */
  min-height: 400px;       /* wysokość minimalna */
  box-sizing: border-box;  /* ważne: padding i border wliczają się do width */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* rozmieszczenie: nagłówek, treść, button */
  text-align: center;
  line-height: 1.6;
  background-color: transparent;
  border-radius: 0;
  overflow-wrap: break-word; /* dzielenie długich słów */
  word-wrap: break-word;
}
.oferta-karta:hover {
  backdrop-filter: blur(50px);
    transition-duration: 1s;}

/* Nagłówki w kartach */
.oferta-karta {
  flex: 0 0 25%;
  max-width: 25%;
  border: 1px solid white;
  padding: 40px 20px;
  min-height: 400px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;   /* wszystkie elementy wyśrodkowane w pionie */
  align-items: center;       /* dodatkowo wyrównanie w poziomie */
  gap: 20px;                 /* odstępy między tytułem, treścią, buttonem */

  text-align: center;
  line-height: 1.6;
  background-color: transparent;
  border-radius: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.oferta-karta h3 {
  margin: 0;
  font-size: 20px;
}

.oferta-karta .cena {
  font-weight: bold;
  font-size: 16px;
}

.oferta-karta .btn-napisz {
  margin-top: 0;          /* usuń duży margines */
  align-self: center;     /* przycisk zawsze w środku */
}

/* HERO2 */
.hero2 {
  background-image: url("tlo2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  font-family: 'Funnel Display', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  position: relative; /* potrzebne do absolutnego pozycjonowania nowego tekstu */
background-attachment: fixed;
}

.hero2__content {
  max-width: 900px;
  text-align: right;
  padding-right: 12rem; /* odstęp od prawej */
}

.hero2__title {
  font-size: 4rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid white;
  display: inline-block;
}

.hero2__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 1rem;
}

/* Button */
.hero2__button {
  display: inline-block;
  margin-top: 2.4rem;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #8a2be2;
  color: white;
  padding: 0.6rem 1.8rem; /* zwężony button */
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}

.hero2__button:hover {
  background-color: white;
  color: #8a2be2;
}

/* Nowy tekst w lewym dolnym rogu */
.hero2__bottom-text {
  position: absolute;
  bottom: 5.5rem;
  left: 5rem;
  max-width: 400px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: white;
}
.hero2__brand {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 600; /* semibold */
  letter-spacing: 0.5px;
    font-size: 20px;
}
#portfolio_www {
 background-color: #e5e5e5;
  background-image: repeating-linear-gradient(
    90deg,
    #c2c2c2 1px,
    #c2c2c2 2px,   /* szerokość paska */
    #e5e5e5 2px,
    #e5e5e5 200px   /* szerokie odstępy między paskami */
  );
padding: 60px 24px;
}


.portfolio-inner {
max-width: 1200px;
margin: 0 auto;
}


.portfolio-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
}


.portfolio-item {
flex: 0 1 calc(33.333% - 16px);
display: flex;
justify-content: center;
}


.portfolio-figure img {
width: 100%;
height: auto;
object-fit:cover; /* zmiana: obraz mieści się cały w polu */
background-color: #fff; /* tło, gdy proporcje się różnią */
border-radius: 10px;
filter: grayscale(100%);
transition: filter 0.4s ease, transform 0.4s ease;
}


.portfolio-figure:hover img {
filter: none;
transform: scale(1.03); 
}
/* Portfolio */
#portfolio1  {
 background-color: #e5e5e5;
  background-image: repeating-linear-gradient(
    90deg,
    #c2c2c2 1px,
    #c2c2c2 2px,   /* szerokość paska */
    #e5e5e5 2px,
    #e5e5e5 200px   /* szerokie odstępy między paskami */
  );
padding: 60px 24px;
}


.portfolio-inner {
max-width: 1200px;
margin: 0 auto;
}


.portfolio-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
}


.portfolio-item {
flex: 0 1 calc(33.333% - 16px);
display: flex;
justify-content: center;
}


.portfolio-figure img {
width: 100%;
height: auto;
object-fit:cover; /* zmiana: obraz mieści się cały w polu */
background-color: #fff; /* tło, gdy proporcje się różnią */
border-radius: 10px;
filter: grayscale(100%);
transition: filter 0.4s ease, transform 0.4s ease;
}


.portfolio-figure:hover img {
filter: none;
transform: scale(1.03);
}

/* HERO3 */
.hero3 {
  background-image: url("tlo2b.jpg"); /* możesz zmienić tło */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  font-family: 'Funnel Display', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  position: relative; /* potrzebne do absolutnego pozycjonowania dolnego tekstu */
background-attachment: fixed;
}

.hero3__content {
  max-width: 900px;
  text-align: right;
  padding-right: 12rem; /* odstęp od prawej */
}

.hero3__title {
  font-size: 4rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid white;
  display: inline-block;
}

.hero3__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 1rem;
}

/* Button */
.hero3__button {
  display: inline-block;
  margin-top: 2.4rem;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #8a2be2;
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}

.hero3__button:hover {
  background-color: white;
  color: #8a2be2;
}

/* Tekst w lewym dolnym rogu */
.hero3__bottom-text {
  position: absolute;
  bottom: 5.5rem;
  left: 5rem;
  max-width: 400px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: white;
}

.hero3__brand {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 600; /* semibold */
  letter-spacing: 0.5px;
  font-size: 20px;
}
#portfolio2 {
   background-color: #e5e5e5;
  background-image: repeating-linear-gradient(
    90deg,
    #c2c2c2 1px,
    #c2c2c2 2px,   /* szerokość paska */
    #e5e5e5 2px,
    #e5e5e5 200px   /* szerokie odstępy między paskami */
  );
  padding: 60px 24px;
}

.portfolio2-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio2-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.portfolio2-item {
  flex: 0 1 calc(33.333% - 16px);
  display: flex;
  justify-content: center;
}

.portfolio2-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #fff;
  border-radius: 10px;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.portfolio2-figure:hover img {
  filter: none;
  transform: scale(1.03);
}

/* Wartości */
.wartosci {
  background-image: url(tlo2c.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8.5rem 4.1rem;
  height: 100vh;
  display: flex;
  align-items: center;
}

.wartosci .container {
  max-width: 1100px;
  line-height: 1.1;
}

/* Zawartość */
.wartosci__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.wartosci__lead {
  font-family: var(--font-sans);
  font-weight: 400;
  margin: 0;
  font-size: 4rem;
  line-height: 1;

}

.wartosci__text {
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  font-size: 2rem;

}
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal-item.fade-up {
  opacity: 1;
  transform: translateY(0);
}
/* kontakt */
#kontakt {
    width: 100%;
    height: 90vh;
    display: flex;
    background-image: url(p5a.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    filter: saturate(0%);
}
#kontakt:hover {
    filter: saturate(100%);
    transition: 0.5s;
}

/* kolumny: 25% / 50% / 25% */

#kontakt-srodek {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}
#kontakt-prawa {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* napis "kontakt" po lewej (mniejszy) */
#kontakt-napis {
   font-size: 140px; font-weight: thin; transform: rotate(-90deg); white-space: nowrap; letter-spacing: 10px; font-family: Funnel Display; margin-top: 50px; }


/* formularz — zachowuje zawartość bez zmian (pola pozostają takie jak były) */
form.contact-form {
    width: 60%;           /* formularz zajmuje całą szerokość środkowej kolumny (czyli 50% strony) */
    max-width: 640px;      /* ograniczenie szerokości, można zmienić jeśli chcesz */
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    background: rgba(0,0,0,0.35); /* lekki półprzezroczysty panel dla czytelności na tle */
}

/* teksty nad formularzem */
#kontaaa {
    font-size: 24px;
    margin-bottom: 20px;
}
#kontaaa .title {
    font-size: 24px;
    font-weight: bold;
}

/* pola formularza */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
}

/* przycisk */
button {
    width: 50%;
    padding: 10px;
    background-color: #8a2be2;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
}

/* adres / prawa kolumna */
.kontakt-info {
    font-style: normal; /* reset domyślnego kursywy dla address */
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 1.6;

}
.kontakt-info a {
    color: inherit;
    text-decoration: none;
}
#form-success {
    display: none;
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
#ngo {
    background: url("99a.jpg") no-repeat center center / cover;
    height: 100vh;
    padding: 200px 200px 100px 100px;
    position: relative;
      background-attachment: fixed;
}

.ngo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

/* Lewa kolumna – tytuł */
.ngo-title-wrap {
    display: flex;
    align-items: flex-start;
}


/* Prawa kolumna – tekst */
.ngo-text {
    color: #333;
    max-width: 500px;
    text-align: right;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
  font-size: large;
}

/* Button */
.ngo-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 34px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s;
    align-self: flex-end;
}

.ngo-button:hover {
    background: #8a2be2;
}
/* SEKCJA FAQ */
.faq {
  background: url("98.jpg");
  color: #1A1A1A;
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container {
  width: 90%;
  max-width: 800px;
}

.faq h2 {
  font-family: "Funnel Display";
  font-size: 24px;
  text-align: center;
  margin-bottom: 5rem;
  color: #1A1A1A;
}

/* Pojedyncze pytanie */
.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

/* Nagłówek pytania */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: #1A1A1A;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  padding-right: 2rem;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

/* Odpowiedź */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  font-family: "Funnel Display";
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.8rem;
}
.faq-question:hover {
    color: #1A1A1A;
    background: none;
    opacity: 0.8;
}
footer{
    height: 40px;
    justify-content: center;
    text-align: center;
    padding: 10px;
   width: 100%;
    background-color: #EBEDEC;
    
}
footer a{
    text-decoration: none;
     color: black;
}
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f5f2f2;
    color: #000;
    font-family: "Clash Display", sans-serif;
    padding: 10px 20px;
    border-top: 1px solid #d0d0d0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
    display: none;
    animation: fadeIn 0.4s ease forwards;
    
  }

  .cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cookie-content p {
    font-size: 12px;
    line-height: 1.4;
    flex: 1;
      text-align: center;
  }

  .cookie-link {
    color: black;
    text-decoration: underline;
  }

  .cookie-btn {
    cursor: pointer;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
  }

  .cookie-btn:hover {
    background: #000;
    color: #fff;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
 /* telefon */
@media(max-width: 560px){
    nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }
    
    
   /* HERO tel */
    
#czesc { 
    
      background-image: repeating-linear-gradient(
      90deg,
      #c2c2c2 1px,
      #c2c2c2 2px,  /* szerokość paska */
      #e5e5e5 2px,
      #e5e5e5 80px  /* mniejsze odstępy – gęstsze paski */
    );
    background-size: cover;
    padding: 1.5rem;
    align-items: center;
    }
    
    
#czesc .czesc-content { 
    text-align: right; padding: 4rem 0.5rem 2rem 1rem; align-self: center; } 
    
#czesc .czesc-content h1 { 
    font-size: 90px; line-height: 0.9; } 
   .br-desktop {
    display: none;
  }
    
#czesc .czesc-content p { 
    font-size: 16px; text-align: center; line-height: 1.4; } /* obrazek + nakładka */ 
    
#czesc .czesc-image { 
    flex-direction: column; align-items: center; padding: 2rem 0; } 
    
#czesc .czesc-image img { 
    width: 100%; height: auto; } /* nakładany tekst */ 
    
#czesc .czesc-overlay { 
    position: absolute; width: 80%; font-size: 12px; line-height: 1.7; text-align:right; margin-top: -5rem; padding: 0; } /* grupa tytułu + pola */ 
    
#czesc .czesc-title-group { 
    position: static; transform: none; width: 100%; text-align: right; margin-top: 8rem; } 
    
#czesc .czesc-title { 
    font-size: 32px; margin-bottom: 2rem; text-align: center; } /* linki */ 
    
#czesc .link-box { 
    align-items: left; gap: 1.2rem; } 

#czesc .link-box .link-item { width: 80%; border-bottom: 1.5px solid #000; padding-bottom: 0.5rem; } 
    
#czesc .link-box .link-item a { 
    font-size: 22px; text-align: lef; } 
    
 /* =========================
     SEKCJA – JEDNO TŁO
  ========================= */
  .napokaz-section {
    padding: 0;
    background-image: url("p.jpg"); /* jedno tło */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll; /* parallax OFF */
    font-family: 'Funnel Display', sans-serif;
  }

  /* overlay dla czytelności */
  .napokaz-section::before {
    content: "";
    position: absolute;
    inset: 0;
background: none;
  /* usuwa ciemny overlay */
    z-index: 0;
  }

  /* =========================
     WRAP
  ========================= */
  .napokaz-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* =========================
     LEWA STRONA
  ========================= */
  .napokaz-left {
    width: 100%;
    min-height: auto;
    padding: 80px 44px 40px;
  }

  .napokaz-left h2 {
    position: relative;
    top: auto;
    font-size: clamp(2.6rem, 9vw, 3.4rem);
    line-height: 0.95;
    color: #fff;
  }

  /* =========================
     PRAWA STRONA
  ========================= */
  .napokaz-right {
    width: 100%;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    color: #fff;
    overflow: visible;
  }

  /* =========================
     TEKST GŁÓWNY
  ========================= */
  .lead p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }
.mobile-hide {
    display: none;
  }
  /* =========================
     SEKCJA VALUES
  ========================= */
  .values {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .value-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .value-item::before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin-bottom: 12px;
      display: none; /* usuwa drugą kreskę */
  }

  .value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .value-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.9;
  }

  /* =========================
     CTA
  ========================= */
  .cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cta a.button {
    display: inline-block;
    background: #8a2be2;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    width: fit-content;
  }

  /* =========================
     OPINIA
  ========================= */
  blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .signature {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.75;
  }

  .signature a {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 500;
  }
    
.www_opis {
    padding: 50px 20px 60px 20px;
    text-align: left;
    background-image: url(t1.jpg);
          background-size: cover;        /* rozciąga na całą wysokość i szerokość */
    background-position: center;   /* wycentrowanie */
    background-repeat: no-repeat;  /* bez powtarzania */
  }

  .www_opis h2 {
    font-size: 3.4em;
    margin-bottom: 60px;
    text-align: left;
    line-height: 1.2;
  }

  .pole {
    flex-direction: column; /* hasło nad opisem */
    align-items: flex-start;
    border-top: 1.5px solid white;
    padding: 15px 0;
    width: 100%;
  }

  .pole .haslo {
    font-size: 1.8em;
    margin-bottom: 0.6rem;
  }

  .pole .opis {
    font-size: 0.95rem;
    text-align: left;
    max-width: 100%;
    line-height: 1.5;
  }

  /* usunięcie <br> w opisach, by nie łamały tekstu sztucznie */
  .pole .opis br {
    display: none;
  }

.parallax {
  background-image: url(par.jpg);
  height: 300px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

 .hero_www {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
  background-image: url(t1.jpg);
    background-size: cover;
    /* rozciąga na całą wysokość i szerokość */
    background-position: center;
    /* wycentrowanie */
    background-repeat: no-repeat;
    /* bez powtarzania */
  }

  .hero_www__content {
    max-width: 100%;
    text-align: left; /* 🔹 tekst wyrównany do lewej */
    padding: 0 1rem;
  }

  

  .hero_www__button {
    display: block;
    margin: 2rem auto 0 auto; /* 🔹 przycisk wyśrodkowany */
    font-size: 18px;
    padding: 0.8rem 2rem;
    background-color: #8A2BE2;
    text-align: center;
  }

  .hero_www__title {
    font-size: 2.0rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid white;
    display: inline-block;
  }

  .hero_www__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 0;
  }
     .hero_www__text br {
    display: none;
  }

  

  /* Dół strony — przeniesiony niżej, żeby nie zasłaniał treści */
  .hero_www__bottom-text {
    position: static;
    margin-top: 3rem;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
      text-align: center;
  }

  .hero_www__brand {
    display: block;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
    
    /* OFERTA tel */
  #oferta {
    padding: 60px 20px;
    text-align: center;
    background-image: url(t2.jpg);
      background-size: cover;
      /* rozciąga na całą wysokość i szerokość */
      background-position: center;
      /* wycentrowanie */
      background-repeat: no-repeat;
      /* bez powtarzania */
  }

 #oferta .oferta-tytul {
  margin-bottom: 20px;
  text-align: center;
  /* NIE usuwaj transform, opacity, transition – zostają z wersji desktop */
}

  .oferta-karty {
    flex-direction: column;  /* karty jeden pod drugim */
    align-items: center;     /* wyśrodkowanie */
    gap: 20px;
  }

  .oferta-karta {
    flex: none;
    width: 80%;              /* każde pole = 80% szerokości ekranu */
    max-width: 80%;
    min-height: auto;        /* wysokość dopasowana do treści */
    padding: 30px 15px;      /* mniejsze odstępy */
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* cała treść wyśrodkowana pionowo */
    align-items: center;
    gap: 15px;

    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
  }

  .oferta-karta h3 {
    font-size: 18px;
  }

  .oferta-karta .cena {
    font-size: 15px;
  }

  .oferta-karta .btn-napisz {
    font-size: 0.85rem;
    padding: 0.4rem 1.4rem;
  }
/* hero2 tel */
  .hero2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    background-position: center;
    background-size: cover;
  }

  .hero2__content {
    max-width: 100%;
    text-align: left; /* 🔹 tekst wyrównany do lewej */
    padding: 0 1rem;
  }

  .hero2__title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    
    display: inline-block;
  }

  .hero2__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 0;
  }

  /* usuwa <br> z tekstu w wersji mobilnej */
  .hero2__text br {
    display: none;
  }

  .hero2__button {
    display: block;
    margin: 2rem auto 0 auto; /* 🔹 wyśrodkowany przycisk */
    font-size: 18px;
    padding: 0.8rem 2rem;
    background-color: #8A2BE2;
    text-align: center;
  }

  /* Dół strony — pod treścią, wyśrodkowany */
  .hero2__bottom-text {
    position: static;
    margin-top: 3rem;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    text-align: center;
  }

  .hero2__brand {
    display: block;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
      /* portfolio tel */
            #portfolio_www,
            #portfolio1,
            #portfolio2{
         background-image: repeating-linear-gradient(
      90deg,
      #c2c2c2 1px,
      #c2c2c2 2px,  /* szerokość paska */
      #e5e5e5 2px,
      #e5e5e5 80px  /* mniejsze odstępy – gęstsze paski */
    );
    background-size: cover;
    padding: 1.5rem;
    align-items: center;
    
      }
    .portfolio-item {
flex: 1 1 100%;
}
.portfolio-figure img {
height: 200px;
}
    .portfolio2-item {
flex: 1 1 100%;
}
.portfolio2-figure img {
height: 200px;
}
     .hero3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    background-position: center;
    background-size: cover;
  }

  .hero3__content {
    max-width: 100%;
    text-align: left; /* 🔹 wyrównanie tekstu do lewej */
    padding: 0 1rem;
  }

  .hero3__title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid white;
    display: inline-block;
  }

  .hero3__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 0;
  }

  /* usuwa <br> w wersji mobilnej */
  .hero3__text br {
    display: none;
  }

  .hero3__button {
    display: block;
    margin: 2rem auto 0 auto; /* 🔹 wyśrodkowany przycisk */
    font-size: 18px;
    padding: 0.8rem 2rem;
    background-color: #8A2BE2;
    text-align: center;
  }

  /* Cytat na dole sekcji */
  .hero3__bottom-text {
    position: static;
    margin-top: 3rem;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    text-align: center;
  }

  .hero3__brand {
    display: block;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }

  
 /* Tytuł wyśrodkowany */
  #oferta-grafika-tytul {
    font-size: 32px;
    line-height: 1.2;
    padding: 40px 0 20px 0;
    text-align: center;
  }

  /* Kontener pól: pionowo */
  #oferta-grafika-sekcje {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 0;
  }

  /* Każde pole pełna szerokość */
  #oferta-grafika-klienci,
  #oferta-grafika-logo,
  #oferta-grafika-prezentacje,
  #oferta-grafika-reklama {
    width: 90%;
    max-width: 400px;
  }

  /* Trochę większa czcionka na telefonie dla czytelności */
  #oferta-grafika-klienci p,
  #oferta-grafika-logo p,
  #oferta-grafika-prezentacje p,
  #oferta-grafika-reklama p {
    font-size: 15px;
    line-height: 22px;
  }
     .wartosci {
    background-image: url(tlo2c.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 1.8rem; /* mniejsze, ale proporcjonalne marginesy */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left; /* 🔹 zachowuje charakter desktopu */
        
  }

  .wartosci .container {
    
    line-height: 1.3;
  }

  .wartosci__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .wartosci__lead {
    font-size: 2rem; /* 🔹 proporcjonalne do ekranu */
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1rem;
  }

  /* usuwa <br> na telefonie */
  .wartosci__lead br {
    display: none;
  }

  .wartosci__text {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 400;
  }

  /* Efekt pojawiania się zostaje taki sam */
  
    #ngo {
       background: url("99tel.jpg") no-repeat center center/cover;
       height: 70vh;
       /* pełna wysokość ekranu */
       padding: 50px;
       position: relative;
   }
  /* ngo tel */
   .ngo-wrapper {
       flex-direction: column;
       justify-content: center;
       /* wyśrodkowanie pionowe */
       align-items: center;
       /* wyśrodkowanie poziome */
       text-align: center;
       padding: 20px;
       /* trochę odstępu zamiast 0 */
       height: 100%;
       /* wypełnij sekcję */
   }

   .ngo-image img {
       margin-bottom: 20px;
       width: 180px;
      ;
   }

   .ngo-text {
       margin-left: 0;
       height: auto;
       text-align: center;
       display: flex;
       flex-direction: column;
       align-items: center;
       /* wyśrodkowanie poziome tekstu i buttona */
       justify-content: center;
       /* wyśrodkowanie pionowe */
   }

   .ngo-button {
       align-self: center;
       /* button centralnie */
   }
    /* kontakt tel */
 /* --- RESPONSYWNOŚĆ KONTAKT NA TELEFON --- */

  #kontakt {
    flex-direction: column;   /* zamiast w wierszu, elementy układają się w kolumnę */
    height: auto;             /* dopasowanie wysokości */
    padding: 40px 0;
    background-image: url(tk.jpg);
  }

  /* napis "kontakt" jeśli go masz po lewej — chowamy albo zmniejszamy */
  #kontakt-napis {
    font-size: 48px;
    transform: rotate(0deg); /* wyprostowany na mobile */
    margin: 20px 0;
    text-align: center;
  }

  #kontakt-srodek,
  #kontakt-prawa {
    width: 100%;              /* pełna szerokość */
    height: auto;             /* automatyczna wysokość */
    margin-bottom: 30px;
    display: flex;
    justify-content: center;  /* wyśrodkowanie */
    align-items: center;
    text-align: center;
  }

  form.contact-form {
    width: 70%;               /* formularz dopasowany do ekranu */
    max-width: 400px;         /* ograniczenie, żeby nie był za szeroki */
  }

  .kontakt-info {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 20px;
  }
.cookie-content {
      flex-direction: column;
      text-align: center;
    }
  }
/* --- TABLETY --- */
@media (min-width: 560px) and (max-width: 1124px) {
 nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  /* HERO tablet */
#czesc { 
     background-image: repeating-linear-gradient(
      90deg,
      #c2c2c2 1px,
      #c2c2c2 2px,  /* szerokość paska */
      #e5e5e5 2px,
      #e5e5e5 80px  /* mniejsze odstępy – gęstsze paski */
    );
    background-size: cover;
    padding: 1.5rem;
    align-items: center;
    }
    
#czesc .czesc-content { 
    text-align: right; padding: 4rem 1rem 2rem 1rem; align-self: center; } 
    
#czesc .czesc-content h1 { 
    font-size: 130px; line-height: 1; } 
    
#czesc .czesc-content p { 
    font-size: 26px; text-align: center; line-height: 1.4; } /* obrazek + nakładka */ 
    
#czesc .czesc-image { 
    flex-direction: column; align-items: center; padding: 2rem 0; } 
    
#czesc .czesc-image img { 
    width: 100%; height: auto; } /* nakładany tekst */ 
    
#czesc .czesc-overlay { 
    position: absolute; width: 80%; font-size: 18px; line-height: 1.; text-align:right; margin-top: -20rem; padding: 0 2rem; } /* grupa tytułu + pola */ 
    
#czesc .czesc-title-group { 
    position: static; transform: none; width: 100%; text-align: right; margin-top: 8rem; } 
    
#czesc .czesc-title { 
    font-size: 32px; margin-bottom: 2rem; text-align: center; } /* linki */ 
    
#czesc .link-box { 
    align-items: left; gap: 1.2rem; } 

#czesc .link-box .link-item { width: 80%; border-bottom: 1.5px solid #000; padding-bottom: 0.5rem; } 
    
#czesc .link-box .link-item a { 
    font-size: 22px; text-align: right; } 
    

      #ngo {
       background: url("99tel.jpg") no-repeat center center/cover;
       height: 100vh;
       /* pełna wysokość ekranu */
       padding: 50px;
       position: relative;
   }
  /* ngo tel */
   .ngo-wrapper {
       flex-direction: column;
       justify-content: center;
       /* wyśrodkowanie pionowe */
       align-items: center;
       /* wyśrodkowanie poziome */
       text-align: center;
       padding: 20px;
       /* trochę odstępu zamiast 0 */
       height: 100%;
       /* wypełnij sekcję */
   }

   .ngo-image img {
       margin-bottom: 20px;
       width: 180px;
      ;
   }

   .ngo-text {
       margin-left: 0;
       height: auto;
       text-align: center;
       display: flex;
       flex-direction: column;
       align-items: center;
       /* wyśrodkowanie poziome tekstu i buttona */
       justify-content: center;
       /* wyśrodkowanie pionowe */
   }

   .ngo-button {
       align-self: center;
       /* button centralnie */
   }
    .hero_www {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    background-position: center;
    background-size: cover;
  }

  .hero_www__content {
    max-width: 100%;
    text-align: left; /* 🔹 tekst wyrównany do lewej */
    padding: 0 1rem;
  }
#portfolio_www,
#portfolio1,
#portfolio2 {
  background-image: repeating-linear-gradient(90deg,
      #c2c2c2 1px,
      #c2c2c2 2px,
      /* szerokość paska */
      #e5e5e5 2px,
      #e5e5e5 100px
      /* mniejsze odstępy – gęstsze paski */
    );
  background-size: cover;
  padding: 1.5rem;
  align-items: center;

}
  

  .hero_www__button {
    display: block;
    margin: 2rem auto 0 auto; /* 🔹 przycisk wyśrodkowany */
    font-size: 18px;
    padding: 0.8rem 2rem;
    background-color: #8A2BE2;
    text-align: center;
  }

  .hero_www__title {
    font-size: 2.0rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid white;
    display: inline-block;
  }

  .hero_www__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 10px;
      width: 100%;
      align-content: left;
  }


  

  /* Dół strony — przeniesiony niżej, żeby nie zasłaniał treści */
  .hero_www__bottom-text {
    position: static;
    margin-top: 3rem;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
      text-align: center;
  }

  .hero_www__brand {
    display: block;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
    .hero2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    background-position: center;
    background-size: cover;
}

.hero2__content {
    max-width: 100%;
    text-align: left; 
    padding: 0 1rem;
}

.hero2__button {
    display: block;
    margin: 2rem auto 0 auto;
    font-size: 18px;
    padding: 0.8rem 2rem;
    background-color: #8A2BE2;
    text-align: center;
}

.hero2__title {
    font-size: 2.0rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid white;
    display: inline-block;
}

.hero2__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 10px;
    width: 100%;
    align-content: left;
}



/* dół sekcji */
.hero2__bottom-text {
    position: static;
    margin-top: 3rem;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    text-align: center;
}

.hero2__brand {
    display: block;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.hero3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    background-position: center;
    background-size: cover;
}

.hero3__content {
    max-width: 100%;
    text-align: left;
    padding: 0 1rem;
}

.hero3__button {
    display: block;
    margin: 2rem auto 0 auto;
    font-size: 18px;
    padding: 0.8rem 2rem;
    background-color: #8A2BE2;
    text-align: center;
}

.hero3__title {
    font-size: 2.0rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid white;
    display: inline-block;
}

.hero3__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 10px;
    width: 100%;
    align-content: left;
}



/* dół sekcji */
.hero3__bottom-text {
    position: static;
    margin-top: 3rem;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    text-align: center;
}

.hero3__brand {
    display: block;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
 /* =========================
     SEKCJA – JEDNO TŁO
  ========================= */
  .napokaz-section {
    padding: 0;
    background-image: url("p.jpg"); /* jedno tło */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll; /* parallax OFF */
    font-family: 'Funnel Display', sans-serif;
  }

  /* overlay dla czytelności */
  .napokaz-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
      /* usuwa ciemny overlay */
    z-index: 0;
  }

  /* =========================
     WRAP
  ========================= */
  .napokaz-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* =========================
     LEWA STRONA
  ========================= */
  .napokaz-left {
    width: 100%;
    min-height: auto;
    padding: 80px 44px 40px;
  }

  .napokaz-left h2 {
    position: relative;
    top: auto;
    font-size: clamp(2.6rem, 9vw, 3.4rem);
    line-height: 0.95;
    color: #fff;
  }

  /* =========================
     PRAWA STRONA
  ========================= */
  .napokaz-right {
    width: 100%;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    color: #fff;
    overflow: visible;
  }

  /* =========================
     TEKST GŁÓWNY
  ========================= */
  .lead p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }
.mobile-hide {
    display: none;
  }
  /* =========================
     SEKCJA VALUES
  ========================= */
  .values {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .value-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .value-item::before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin-bottom: 12px;
      display: none; /* usuwa drugą kreskę */
  }

  .value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .value-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.9;
  }

  /* =========================
     CTA
  ========================= */
  .cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cta a.button {
    display: inline-block;
    background: #8a2be2;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    width: fit-content;
  }

  /* =========================
     OPINIA
  ========================= */
  blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .signature {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.75;
  }

  .signature a {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 500;
  }
     /* OFERTA tablet */
  #oferta {
    padding: 60px 80px;
    text-align: center;
      background-image: url(tlo4tel.jpg)
  }

 #oferta .oferta-tytul {
  margin-bottom: 20px;
  text-align: center;
  /* NIE usuwaj transform, opacity, transition – zostają z wersji desktop */
}

  .oferta-karty {
    flex-direction: column;  /* karty jeden pod drugim */
    align-items: center;     /* wyśrodkowanie */
    gap: 20px;
  }

  .oferta-karta {
    flex: none;
    width: 80%;              /* każde pole = 80% szerokości ekranu */
    max-width: 80%;
    min-height: auto;        /* wysokość dopasowana do treści */
    padding: 40px 20px;      /* mniejsze odstępy */
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* cała treść wyśrodkowana pionowo */
    align-items: center;
    gap: 15px;

    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: center;
  }

  .oferta-karta h3 {
    font-size: 18px;
  }

  .oferta-karta .cena {
    font-size: 15px;
  }

  .oferta-karta .btn-napisz {
    font-size: 0.85rem;
    padding: 0.4rem 1.4rem;
  }

    .www_opis {
    padding: 40px 40px 60px 40px;
    text-align: left;
  }

  .www_opis h2 {
    font-size: 3.4em;
    margin-bottom: 60px;
    text-align: left;
    line-height: 1.2;
  }

  .pole {
    flex-direction: column; /* hasło nad opisem */
    align-items: flex-start;
    border-top: 1.5px solid white;
    padding: 15px 0;
    width: 100%;
  }

  .pole .haslo {
    font-size: 1.8em;
    margin-bottom: 0.6rem;
  }

  .pole .opis {
    font-size: 0.95rem;
    text-align: left;
    max-width: 100%;
    line-height: 1.5;
  }

  /* usunięcie <br> w opisach, by nie łamały tekstu sztucznie */
  .pole .opis br {
    display: none;
  }
     .wartosci {
    background-image: url(tlo2c.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 1.8rem; /* mniejsze, ale proporcjonalne marginesy */
   
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left; /* 🔹 zachowuje charakter desktopu */
         height: 150vh;
  }

  .wartosci .container {
    line-height: 1.3;
  }

  .wartosci__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .wartosci__lead {
    font-size: 3.5rem; /* 🔹 proporcjonalne do ekranu */
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 1rem;
  }

  /* usuwa <br> na telefonie */
  .wartosci__lead br {
    display: none;
  }

  .wartosci__text {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 400;
  }

  /* Efekt pojawiania się zostaje taki sam */
  
 #kontakt {
    flex-direction: column;   /* zamiast w wierszu, elementy układają się w kolumnę */
    height: auto;             /* dopasowanie wysokości */
    padding: 40px 0;
  }

  /* napis "kontakt" jeśli go masz po lewej — chowamy albo zmniejszamy */
  #kontakt-napis {
    font-size: 48px;
    transform: rotate(0deg); /* wyprostowany na mobile */
    margin: 20px 0;
    text-align: center;
  }

  #kontakt-srodek,
  #kontakt-prawa {
    width: 100%;              /* pełna szerokość */
    height: auto;             /* automatyczna wysokość */
    margin-bottom: 30px;
    display: flex;
    justify-content: center;  /* wyśrodkowanie */
    align-items: center;
    text-align: center;
  }

  form.contact-form {
    width: 70%;               /* formularz dopasowany do ekranu */
    max-width: 400px;         /* ograniczenie, żeby nie był za szeroki */
  }

  .kontakt-info {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 20px;
  }
   .br-desktop {
    display: none;
  }
  
  }