.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


:root {
  --accent:#C62828;
  --muted: linear-gradient(135deg, #FBEAEA, #FFF5F0); /* was #F8F9FA*/
  --shadow:0 6px 18px rgba(0,0,0,.08);
  --radius:14px;
}

* {
box-sizing:border-box;
margin:0;
padding:0;
  font-family: "Poppins", sans-serif;
}

body {
color:#222;
background: white;
}

a {
color:inherit;
text-decoration:none;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 14px 8%;
  gap: 32px;
}

nav .logo {
font-weight:700;
font-size:20px;
color: #D9412F;
}

.nav-cta {
  margin-left:auto;
  padding:10px 22px;
  display: inline-block;
  border-radius: var(--radius);
  background: #D9412F;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.nav-cta:hover {
  color: white;
  background: #B22F21;
}

.nav-link:hover {
  color:var(--accent);
}

.nav-link.active {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

/* BURGER */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 100;
  transition: 0.3s ease;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #000;
  display: block;
  transition: 0.3s ease;
}

/* ZMIANA PO AKTYWACJI (X) */
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nawigacja */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8%;
    gap: 20px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
  }
}

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero {
  padding:96px 8% 120px;
  background: url("background.png") no-repeat right bottom / contain,
    linear-gradient(135deg, #FBEAEA, #FFF5F0); /*linear-gradient(90deg,rgba(130, 12, 12, 1) 0%, rgba(209, 61, 61, 1) 100%);*/
  color: var(--accent);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero h1 {
  font-size:clamp(2.2rem,4vw,3rem);
  margin-bottom:16px;
  font-weight:700;
  color: var(--accent);
}

.hero p {
max-width:520px;
margin-bottom:32px;
font-size:18px
}

.okursie-section {
  padding: 80px 8%;
}

.okursie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .okursie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.okursie-block.card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
  border-left: 6px solid #D9412F;
}

.okursie-block.card h3 {
  color: #D9412F;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.okursie-block.card:hover {
  box-shadow: 0 8px 24px rgba(217, 65, 47, 0.15);
}

.okursie-scroll::-webkit-scrollbar {
  color:var(--accent);
  height: 10px;
}

.okursie-scroll::-webkit-scrollbar-thumb {
  background: #D9412F;
  border-radius: 4px;
}

.okursie-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.okursie-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 10%;
  gap: 32px;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.okursie-block {
  flex: 0 0 80%;
  max-width: 480px;
  scroll-snap-align: center;
  margin: 0 auto;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #D9412F;
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}


.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: #D9412F;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.btn:hover {
  background: #B22F21;
}

section {
padding:80px 8%
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #C62828;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #C62828;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: #C62828;
  margin-top: 40px;
}

h5 {
  font-size: 1.0rem;
  font-weight: 600;
  text-align: center;
  color: #C62828;
  margin-top: 20px;
}


.grid {
display:grid;
gap:28px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* zamiast 4 */
    gap: 24px;
    max-width: 1080px;  /* lub 960px */
    margin: 0 auto;
  }
}



.card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 15px;
  border-left: 6px solid #D9412F; /* spójność z .okursie-block.card */
}

.card:hover {
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.1);
}


.card span {
font-size:48px;
display:block;
margin-bottom:12px;
}

.card:hover img {
  animation: pulse 1s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}


.alt {
background:var(--muted)
}

.timeline {
display:flex;
flex-wrap:wrap;
gap:16px;
justify-content:center
}

.timeline-elt:hover {
  animation: pulse 1s ease;
}

.timeline div {
  background:#fff;
  padding:14px 20px;
  font-size:14px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  min-width:120px;
  text-align:center
}

.price {
  max-width:420px;
  margin:0 auto;
  text-align:center;
  border:3px solid var(--accent);
  padding:40px;
  border-radius:var(--radius)
}

.price h3 {
font-size:2.2rem;
margin-bottom:16px
}

.price p {
margin:4px 0
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.price.selected {
  box-shadow: 0 0 0 4px var(--accent), var(--shadow);
  transition: box-shadow 0.3s ease;
}

/* Cennik */
#cena {
  padding: 80px 8%;
}

#cena .price {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  border: 3px solid var(--accent);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}

#cena .price h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--accent);
}

#cena .price p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.6;
}

#cena .btn {
  margin-top: 24px;
}

/* FAQ */
#faq {
  padding: 80px 8%;
}

#faq h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #444;
}


.omnie-flex {
  display: flex;
  align-items: center; /* <-- kluczowa zmiana */
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.omnie-img img {
  width: 300px; /*240px*/
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.omnie-text {
  flex: 1;
  min-width: 280px;
}

.omnie-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

form {
max-width:420px;
margin:0 auto
}

input,textarea {
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:var(--radius);
margin-bottom:14px;
font-size:15px
}

button {
cursor:pointer
}

footer {
background: linear-gradient(135deg, #FBEAEA, #FFF5F0);
color:#222;
text-align:center;
padding:32px;
font-size:14px
}

html {
scroll-behavior:smooth;
}

[data-animate] {
  opacity:0;
  transform:translateY(40px);
  transition:.6s cubic-bezier(.25,.8,.25,1);
}

[data-animate].active {
  opacity:1;
  transform:none;
}