/* ======================
   FONT & ZMIENNE KOLORÓW
====================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
:root {
  --color-accent: #e2611e;
  --color-accent-dark: #b24914;
  --color-accent-hover: #b24914; 
  --color-bg: #faf9f6;
  --color-bg-hero: #fff;
  --color-bg-menu: rgba(255,255,252,0.93);
  --color-bg-overlay: rgba(34,30,28,0.22);
  --color-bg-glass: rgba(255,255,255,0.68);
  --color-text: #1b1a18;
  --color-text-light: #fff;
  --shadow-hero: 0 10px 40px #0002,0 2px 12px #e2611e10;
  --shadow-menu: 8px 0 36px #0002,0 8px 28px #e2611e18;
  --border-radius-xl: 32px;
  --border-radius-m: 14px;
  --font-family: 'Inter',Arial,sans-serif;
  --heading-align: center;
  --heading-color: #e2611e;
  --heading-size: 2.4em;
  --heading-weight: 800;
  --heading-margin-bottom: 30px;
  --heading-letter-spacing: -0.02em;
  --heading1-color-dark: var(--color-accent-dark);
  --heading1-color-complement: #1e66e2;
  --heading1-color-accent: var(--color-accent);    /* #e2611e */
  --heading1-color-neutral: var(--color-text);     /* #1b1a18 (czarny) */
}

/* ======================
   KONTENER DLA PODSTRON
====================== */
.container_site {
  width: clamp(var(--container-min), 90%, var(--container-max));
  margin-inline: auto;
  padding: var(--container-padding-block) var(--container-padding-inline);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--baseline-gap);
  min-width: 0; /* zapobiega wycinaniu flex/grid children */
}


/* ======================
   RESET & GLOBAL
====================== */
html,body {
  margin:0;
  padding:0;
  font-family:var(--font-family);
  font-size:17px;
  color:var(--color-text);
  background:var(--color-bg);
  scroll-behavior:smooth;
  overflow-x: hidden;
}
*,*:before,*:after { box-sizing:border-box; }
*:focus-visible {
  outline:2px solid var(--color-accent);
  outline-offset:1.5px;
}
img { max-width:100%; height:auto; display:block; }
a {
  color:var(--color-accent);
  text-decoration:none;
  transition:color .2s;
}
a:hover,a:focus { color:var(--color-accent-dark); text-decoration:underline; }
.text-center { text-align:center; }
.container,.container1,.full-width-container {
  width:94%;
  max-width:1200px;
  margin:0 auto;
}




/* ======================
   HEADER – LAYOUT
====================== */
body {
  padding-top: 120px;     
}

h2 {
  text-align: var(--heading-align);
  color: var(--heading-color);
  font-size: var(--heading-size);
  font-weight: var(--heading-weight);
  margin-bottom: var(--heading-margin-bottom);
  letter-spacing: var(--heading-letter-spacing);
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.8em; 
    margin-bottom: 20px; 
  }
}

.main-header {
	position: fixed !important;
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:transparent;
  padding:22px 0 10px 0;
  transition:background .3s ease,box-shadow .3s ease,backdrop-filter .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.42);
}
.main-header::after {
  content:"";
  position:absolute;
  inset-inline:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,#0002 50%,transparent);
  pointer-events:none;
}
.main-header.scrolled {
  background:rgba(33,33,33,.9);
  backdrop-filter:blur(10px);
  box-shadow:0 4px 16px rgba(0,0,0,.25);
}
.main-header.scrolled .main-nav a,
.main-header.scrolled .btn-primary.header-cta {
  color:#fff;
}
.main-header.scrolled .btn-primary.header-cta {
  background:var(--color-accent);
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
    flex-wrap:nowrap;        /* wymusza jeden wiersz */
  column-gap:56px;         /* odstęp między logo a następnym blokiem */
  max-width:1240px;
  margin:0 auto;
  padding:16px 24px;
}

/* === LOGO === */
.logo-header img {
  height:68px;
  width:auto;
  filter:drop-shadow(0 14px 34px rgba(226,97,30,.22));
  transition:filter .25s,transform .17s;
}
.logo-header:hover img,
.logo-header:focus img {
  filter:drop-shadow(0 15px 34px rgba(226,97,30,.26)) drop-shadow(0 2px 10px rgba(30,30,30,.14));
  transform:translateY(-2px) scale(1.04);
}
@media (max-width:600px) {
  .logo-header img { height:46px; }
}

/* ===== LOGO kolor & rozmiar po scrollu ===== */
.logo-header svg{
  height:58px;                       /* wysokość startowa */
}

.main-header.scrolled .logo-header svg{
  height:42px;                       /* mniejsze logo po scrollu */
}

/* ===== Header: mniejszy padding po przewinięciu ===== */
.main-header{ padding:18px 0 8px 0; transition:padding .25s; }
.main-header.scrolled{ padding:8px 0; }


/* === MOBILE WRAP & HAMBURGER === */
.header-mobile-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  position:relative;
}
.logo-header {
  flex:1 1 0;
  display:flex;
  justify-content:center;
}
.hamburger {
  display:none;
  background:none;
  border:none;
  font-size:2em;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  color:var(--color-accent);
  cursor:pointer;
  transition:color .19s;
  z-index:30;
}
.hamburger i { transition:transform .25s ease; }
.hamburger:active i,
.hamburger:focus i { transform:scale(1.15) rotate(90deg); }
.hamburger.active i,
.hamburger:hover i { color:var(--color-accent-dark); }
@media (max-width:950px) { .hamburger { display:block; } }

/* === CTA BUTTON (HEADER) === */
.btn-primary.header-cta{
  /* wygląd podstawowy */
  display:inline-block;
  background:var(--color-accent);
  color:var(--color-text-light);
  white-space:nowrap;
  padding:15px 36px;          /* wygodny „klik” */
  border-radius:36px;         /* pełniejsze zaokrąglenie */
  font-size:1.15em;
  font-weight:700;
  border:none;
  box-shadow:0 3px 18px rgba(226,97,30,.45);
  transition:
    background   .22s,
    transform    .18s,
    box-shadow   .22s;
}

.btn-primary.header-cta:hover,
.btn-primary.header-cta:focus{
  background:#fd7e3b;                          /* jaśniejszy accent */
  box-shadow:0 7px 26px rgba(226,97,30,.55);   /* mocniejszy cień */
  transform:translateY(-2px) scale(1.05);      /* lekki „podskok” */
}

/* — responsywnie: przycisk w jednej kolumnie pod hamburgerem — */
@media (max-width:950px){
  .btn-primary.header-cta{
    display:block;
    width:92%;
    margin:12px auto 14px;
    font-size:1.1em;
    padding:15px 0;
    text-align:center;
    box-shadow:0 4px 20px rgba(226,97,30,.5);
  }
}



/* === MAIN NAV (DESKTOP) === */
.main-nav ul {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:38px;
}
.main-nav a {
  display:flex;
  align-items:center;
  gap:7px;
  font-weight:600;
  font-size:1.14em;
  color:var(--color-accent);
  position:relative;
  transition:color .2s;
   white-space: nowrap;
}
.main-nav a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--color-accent);
  transition:width .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus::after { width:100%; }
.main-nav a:hover,
.main-nav a:focus { color:var(--color-accent-dark); }
@media (max-width:950px) { .main-nav { display:none; } }

/* ======================
   MOBILE NAV OVERLAY & PANEL
====================== */
#mobileOverlay,
.mobile-overlay {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background:var(--color-bg-overlay);
  opacity:0;
  transition:opacity .35s cubic-bezier(.25,.1,.25,1);
  z-index:998;
}
#mobileOverlay.active,
.mobile-overlay.active {
  display:block;
  opacity:1;
  pointer-events:all;
}
.mobile-nav {
  position:fixed;
  top:0;
  left:0;
  width:84vw;
  max-width:370px;
  height:100vh;
  background:var(--color-bg-menu);
  backdrop-filter:blur(18px) saturate(1.7);
  -webkit-backdrop-filter:blur(18px) saturate(1.7);
  box-shadow:var(--shadow-menu);
  padding:48px 30px 0 30px;
  display:flex;
  flex-direction:column;
  pointer-events:none;
  opacity:0;
  transform:translateX(-100px) scale(.97);
  transition:opacity .24s cubic-bezier(.36,1.07,.76,1.04),transform .31s cubic-bezier(.36,1.07,.76,1.04);
  z-index:1000;
}
.mobile-nav.active {
  opacity:1;
  transform:translateX(0) scale(1);
  pointer-events:all;
}
#mobileClose,
.mobile-close {
  background:none;
  border:none;
  font-size:2.2em;
  color:var(--color-accent);
  position:absolute;
  top:22px;
  right:26px;
  cursor:pointer;
  transition:color .16s;
}
#mobileClose:hover,
#mobileClose:focus,
.mobile-close:hover,
.mobile-close:focus { color:var(--color-accent-dark); }

/* --- Mobile nav list --- */
.mobile-nav ul {
  list-style:none;
  margin:58px 0 0 0;
  padding:0;
  width:100%;
  display:flex;
  flex-direction:column;
  animation:fadeInUp .48s cubic-bezier(.44,1.14,.82,.98) both;
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(38px); }
  to   { opacity:1; transform:none; }
}
.mobile-nav li { position:relative; border-bottom:1.5px solid #f3ece6; }
.mobile-nav li:last-child { border-bottom:none; }
.mobile-nav li a {
  display:block;
  color:var(--color-accent);
  font-size:1.22em;
  font-weight:700;
  padding:18px 0 18px 2px;
  transition:background .19s,color .16s,padding-left .17s,box-shadow .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background:#fff6ef;
  color:var(--color-accent-dark);
  padding-left:14px;
  box-shadow:0 2px 16px #e2611e13;
  text-decoration:none;
}
body.mobile-nav-open { overflow:hidden; }

/* small mobile tweaks */
@media (max-width:600px) {
  .mobile-nav {
    width:97vw;
    max-width:99vw;
    padding:38px 9px 0 9px;
  }
  .mobile-nav ul { margin-top:39px; }
  #mobileClose { top:13px; right:13px; font-size:2em; }
}


/* ======================
   HERO SECTION
====================== */

.hero-section {
  position: relative;
  min-height: 480px;
  background: var(--color-bg-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text-only {
  display: none;
}

.slideshow-bg {
	  background-image: url('/img/hero1.webp');
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: background-image 1s, opacity 1s;
  will-change: background-image, opacity;
  z-index: 0;
}


.slideshow-bg.fade-out {
  opacity: 0;
}

.slideshow-bg.fade-in {
  opacity: 1;
}

@media (max-width: 600px) {
  .slideshow-bg {
    background-image: url('/img/hero1_m.webp');
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* HERO BOX */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: clamp(280px, 60%, 90%);
  margin: 40px auto;
  padding: 50px 36px 36px 36px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
  border-radius: var(--border-radius-xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: scaleIn 0.7s cubic-bezier(.4, 0, .2, 1);
  transition: box-shadow 0.25s;
}

@keyframes scaleIn {
  from {
    transform: scale(.96);
    opacity: .7;
    border-radius: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
    border-radius: var(--border-radius-xl);
  }
}

.hero-content h1 {
  font-size: 2.7em;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -0.5px;
  color: var(--heading1-color-neutral);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.hero-content span {
  display: block;
  font-size: .63em;
  color: #252525;
  font-weight: 500;
  margin-bottom: 6px;
}

.hero-content p {
  color: #222;
  font-size: 1.17em;
  margin: 0 0 22px 0;
}

/* CTA – przycisk */
.btn-primary.hero-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-light);
  padding: 16px 38px;
  border-radius: 36px;
  font-size: 1.18em;
  font-weight: 700;
  box-shadow: 0 3px 18px rgba(226, 97, 30, .27);
  cursor: pointer;
  transition: background .2s, transform .16s, box-shadow .2s;
  animation: heroPulse 2.8s ease-in-out infinite;
  border: none;
}

@keyframes heroPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(226, 97, 30, .5);
  }
  70% {
    transform: scale(1.06);
    box-shadow: 0 0 0 18px rgba(226, 97, 30, 0);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary.hero-btn:hover,
.btn-primary.hero-btn:focus {
  background: #fd7e3b;
  transform: scale(1.065);
  box-shadow: 0 9px 28px rgba(226, 97, 30, .4);
}

/* HERO ICONS */
.hero-icons {
  margin-top: 13px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.hero-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 23px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  font-size: 1.14em;
  font-weight: 600;
  color: #2a2a2a;
  transition: box-shadow .18s, transform .18s;
}

.hero-icons span:hover {
  box-shadow: 0 6px 26px rgba(230, 97, 30, .14);
  transform: translateY(-4px) scale(1.08) rotate(-2deg);
  background: #fff8f4;
}

.hero-icons i {
  color: var(--color-accent);
  font-size: 1.19em;
  transition: color .17s, transform .22s;
}

.hero-icons span:hover i {
  color: var(--color-accent-dark);
  transform: scale(1.15) rotate(9deg);
}

/* Fade-in (Intersection Observer) */
.fade-in-element {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.fade-in-element.in-view {
  opacity: 1;
  transform: none;
}





/* ======================
   SEKCJA ATUTY / CECHY / NAGLOWKI
====================== */

/* --- Kontener i tytuł --- */
.why-dapal-section {
  padding: 55px 0 25px 0;
  background: #fff;
}
.why-dapal-title, {
  text-align: center;
  color: #e2611e;
  font-size: 2.4em;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  z-index: 2;
}

/* --- Grid z kafelkami --- */
.why-dapal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 32px 36px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 14px;
  justify-content: center;
  align-items: stretch;
}

/* --- Flip box (kontener) --- */
.why-dapal-flip {
  position: relative;
  perspective: 1200px;
  height: 260px; /* Wymuszona wysokość */
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

/* --- Wnętrze do obracania --- */
.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.6,-0.13,.46,1.09);
}

/* --- Obie strony --- */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  background: #fff;
  border: 2.5px solid #e6e6e6;
  box-shadow: 0 6px 38px #0001, 0 2.5px 16px #e2611e15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.19s;
  pointer-events: auto;
  overflow: hidden;
  padding: 24px 16px;
}

.flip-front {
  z-index: 2;
}
.flip-back {
  transform: rotateY(180deg);
  user-select: text;
}

/* --- Hover shadow --- */
.flip-front:hover,
.flip-back:hover {
  box-shadow: 0 10px 46px #e2611e28, 0 2.5px 16px #e2611e10;
}

/* --- Animacja obracania --- */
.why-dapal-flip.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

/* --- Teksty --- */
.why-dapal-label {
  margin-top: 14px;
  font-size: 1.14em;
  font-weight: 700;
  color: #191919;
  text-align: center;
  letter-spacing: -0.02em;
}
.why-dapal-desc {
  margin-top: 18px;
  margin-bottom: 20px;
  font-size: 1em;
  color: #232323;
  text-align: center;
  font-weight: 400;
}

/* --- Ostatni kafelek na środku --- */
.why-dapal-last {
  grid-column: 2 / 3;
}

/* ======================
   RESPONSYWNOŚĆ
====================== */

@media (max-width: 900px) {
  .why-dapal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-dapal-last {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .why-dapal-section {
    padding: 34px 0 10px 0;
  }
  .why-dapal-title {
    font-size: 1.28em;
    margin-bottom: 22px;
  }
  .why-dapal-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .why-dapal-flip {
    height: auto; /* Odblokuj elastyczną wysokość */
    min-height: 188px;
  }
  .flip-front,
  .flip-back {
    margin: 0 4px;
  }
}

/* --- iOS/mobile: zablokuj zaznaczenie tekstu na rewersie --- */
@media (hover: none) and (pointer: coarse) {
  .why-dapal-flip.is-flipped .flip-back {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
  }
}


/* ======================
   SEKJA ATUTY (ikony)
====================== */

.atuty-section {
  padding: 44px 0;
  background: #f6f6f6;
}

.atuty-section .container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.atuty-card {
  flex: 1;
  min-width: 220px;
  max-width: 310px;
  background: #fff;
  padding: 36px 24px;
  border-radius: 18px;
  margin: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
  transition: box-shadow 0.2s;
}

.atuty-card:hover {
  box-shadow: 0 6px 26px #e2611e20;
}

.atuty-card i {
  font-size: 2.2em;
  color: #e2611e;
  margin-bottom: 16px;
}

.atuty-card h3 {
  margin: 8px 0 7px 0;
  font-size: 1.18em;
  font-weight: 600;
}

.atuty-card p {
  color: #555;
  font-size: 1em;
}

/* --- Responsywność sekcji atutów --- */
@media (max-width: 800px) {
  .atuty-section .container {
    flex-direction: column;
    align-items: center;
  }
  .atuty-card {
    max-width: 96vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  /* na desktopie: flip na hover */
  .why-dapal-flip:hover .flip-inner {
    transform: rotateY(180deg);
  }
}

/* ========== GEOMETRYCZNE, ŚRODKOWE TŁO DLA SEKCJI ATUTÓW ========== */
.why-dapal-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  /* delikatna siatka koncentrycznych kropek z centrum */
  background-image: repeating-radial-gradient(
    circle at center,
    rgba(226, 97, 30, 0.015) 0,
    rgba(226, 97, 30, 0.015) 4px,
    transparent 2px,
    transparent 40px
  );
}

.why-dapal-section::before,
.why-dapal-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;  /* pod kafelkami */
}

/* duże, płynnie pulsujące rozmyte koło */
.why-dapal-section::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle at center,
    rgba(226, 97, 30, 0.05) 0,
    transparent 60%
  );
  filter: blur(80px);
  opacity: 0.08;
  animation: pulse 20s ease-in-out infinite;
}

/* obracający się pasowy wzór conic-gradient */
.why-dapal-section::after {
  width: 900px;
  height: 900px;
  background: conic-gradient(
    from 45deg,
    transparent 0deg 40deg,
    rgba(226, 97, 30, 0.03) 40deg 45deg,
    transparent 45deg 85deg,
    rgba(226, 97, 30, 0.03) 85deg 90deg,
    transparent 90deg 360deg
  );
  filter: blur(100px);
  opacity: 0.05;
  animation: rotate 60s linear infinite;
}

/* animacje */
@keyframes pulse {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  to   { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* kafelki zawsze nad tłem */
.why-dapal-grid,
.why-dapal-flip {
  position: relative;
  z-index: 1;
}


/* ======================
   SEKCJA GALERIA (GRID)
====================== */

.gallery-grid-section {
  padding: 30px 0;
  background: #fff;
}

.gallery-title {
  text-align: center;
  color: #000;
  margin-bottom: 15px;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Główna siatka zdjęć */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Pojedynczy kafelek galerii */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #faf9f6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  filter: brightness(1.05);
}

/* Miniatury zdjęć */
.gallery-item img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Fade‑in animacja przy ładowaniu */
.gallery-item.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ————————— 1. Ustawienia przycisku ————————— */
.load-more-btn {
  position: relative;        /* potrzebne do pseudo-animacji */
  overflow: hidden;
  display: block;
  margin: 32px auto 0;
  padding: 14px 30px;
  font-size: 1.1em;
  font-weight: 600;
  background: #89c789;
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(137, 199, 137, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* ————————— 2. Hover ————————— */
.load-more-btn:hover:not(:disabled) {
  background: #6fb56f;
  transform: scale(1.05);
}

/* ————————— 3. Pulsowanie ————————— */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.load-more-btn:not(:disabled) {
  animation: pulse 2s ease-in-out infinite;
}

/* ————————— 4. Shine (błysk) ————————— */
.load-more-btn:not(:disabled)::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-20deg);
  filter: blur(2px);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%   { left: -50%; }
  50%  { left: 150%; }
  100% { left: -50%; }
}

/* Loader */
.gallery-loader {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.gallery-loader.active {
  display: flex;
}

.loader-circle {
  width: 36px;
  height: 36px;
  border: 4px solid #89c789;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* GLightbox: poprawki caption */
.glightbox-clean .gslide-description.description-bottom {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  z-index: 99;
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.glightbox-caption {
  display: none !important;
}

.glightbox-clean .gslide-title {
    color: #fff;
    margin-bottom: 10px;
    line-height: 1em;
}

/* === OVERRIDE GLIGHTBOX CAPTION === */
.glightbox-clean .gslide-description.description-bottom {
  /* opcjonalnie zresetuj padding kontenera, jeśli chcesz mieć pełną kontrolę */
  padding: 0 !important;
}

.glightbox-clean .gslide-description.description-bottom .gdesc-inner {
  /* nowy padding: góra/dół 8px, lewa/prawa 16px */
  padding: 3px 11px !important;
  /* wymuś biały kolor tekstu */
  color: #fff !important;
}

/* Skeleton‑placeholdery */
.gallery-item.skeleton {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding-top: 75%;
  background-color: var(--color-bg);
}

.gallery-item.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(300%);
  }
}

/* ========================
   RESPONSYWNOŚĆ (mobile)
======================== */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }

  .gallery-item img {
    height: 150px;
  }

  .load-more-btn {
    width: 100%;
    max-width: 320px;
    font-size: 1em;
  }

  .glightbox-clean .gslide-description.description-bottom {
    font-size: 0.85rem;
    bottom: 10px;
    max-width: 95%;
  }
}

/* ================================
   DESKTOP: dodatkowy obrys + lift
================================ */
@media (min-width: 1024px) {
  .gallery-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* ======================
   SEKCJA OFERTA
===================== */
/* — Sekcja: Dla kogo tworzymy? — */
.dla-kogo {
  position: relative;
  width: 100%;
  margin: 0 calc(50% - 50vw);
  padding: 60px 0;
  overflow: hidden;
  background-image: url('/img/bg_oferta.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.dla-kogo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
}
.dla-kogo > .section-title,
.dla-kogo-grid,
.cta-button-wrap {
  position: relative;
  z-index: 1;
}

.dla-kogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  align-items: stretch;
  padding: 0 16px;
}
.dla-kogo-grid .kafelek {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dla-kogo-grid .kafelek:hover,
.dla-kogo-grid .kafelek:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.dla-kogo-grid .kafelek img {
  height: 64px;
  margin: 0 auto 18px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(465%) hue-rotate(346deg) brightness(95%) contrast(93%);
}
.dla-kogo-grid .kafelek h3 {
  font-size: 1.15em;
  margin-bottom: 12px;
  color: #222;
  line-height: 1.3;
}
.dla-kogo-grid .kafelek p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* — Sekcja: Nasza oferta obejmuje — */
.oferta-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: left;
  align-items: stretch;
}
.oferta-lista .oferta-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.oferta-lista .oferta-box + .oferta-box {
  margin-top: 0; /* grid handles gap */
}
.oferta-lista .oferta-box:hover,
.oferta-lista .oferta-box:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.oferta-lista .oferta-box h3 {
  font-size: 1.15em;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}
.oferta-lista .oferta-box p {
  font-size: 0.95em;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 0;
}

/* — CTA Button — */
.cta-button-wrap {
  margin-top: 40px;
  text-align: center;
}
.cta-button {
  background: #e2611e;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(226,97,30,0.3);
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: #c54f15;
  transform: translateY(-2px);
}




/* ======================
   SEKJA CTA (CALL TO ACTION)
====================== */
.cta-section {
    padding: 50px 0;
    background: #f6f6f6;
    text-align: center;
}
.cta-section h2 {
    color: #e2611e;
    font-size: 2em;
    margin-bottom: 12px;
    font-weight: 700;
}
.cta-section p {
    color: #333;
    font-size: 1.13em;
    margin-bottom: 18px;
}
.cta-section .btn-primary {
    margin-top: 14px;
    text-align: center;
}

/* ======================
   SEKJA ETAPY (PROCES)
====================== */
.etapy-section {
    background: #fff;
    padding: 48px 0;
}
.process-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 12px;
    margin: 8px;
    text-align: center;
    box-shadow: 0 2px 8px #0001;
    transition: box-shadow 0.2s;
}
.process-step:hover {
    box-shadow: 0 4px 18px #e2611e22;
}
.process-step span {
    font-size: 2em;
    color: #e2611e;
    font-weight: bold;
}
.process-step h4 {
    margin: 10px 0 8px;
    font-weight: 700;
}
.process-step p {
    font-size: 0.98em;
    color: #555;
}
@media (max-width: 850px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}


/* === MODAL PDF === */
/* ================================
   PDF Modal – większy, responsywny
================================= */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;                             /* top:0; right:0; bottom:0; left:0; */
  z-index: 2000;
  align-items: center;                  /* tylko jeśli ustawisz display:flex w JS */
  justify-content: center;
}

/* półprzezroczyste tło */
.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* okno z zawartością */
.pdf-modal__content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);

  /* elastyczny box */
  display: flex;
  flex-direction: column;

  /* zajmuje 90% szerokości i 90% wysokości viewportu, max 1200×90vh */
  width: 90vw;
  max-width: 1200px;
  height: 90vh;
  max-height: 90vh;
}

/* przycisk zamykania (X) */
.pdf-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

/* iframe na całą przestrzeń poza przyciskiem */
#pdf-frame {
  flex: 1;               /* wypełnia całe wnętrze .pdf-modal__content */
  width: 100%;
  border: none;
}


/* ------------------------------------------------------------------
   Miniaturka + przycisk PDF
------------------------------------------------------------------*/
.pdf-thumb-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
  margin: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.pdf-thumb-btn:hover .pdf-thumb-img,
.pdf-thumb-btn:focus .pdf-thumb-img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pdf-thumb-img {
  display: block;
  max-width: 120px;
  border: 1px solid #e9e2da;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pdf-thumb-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9em;
  color: #e2611e;
  font-weight: 600;
  text-align: center;
}


/* ==============================
   BEZPŁATNA WYCENA – sekcja
============================== */
.beplatna-wycena-section {
  position: relative;
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 0;
  background: #faf9f6;
  text-align: center;
}

.beplatna-wycena-section .container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.beplatna-wycena-title {
  font-size: 2.4em;
  color: var(--color-accent);
  margin-bottom: 24px;
}

/* kontener, do którego wklei się formularz */
.beplatna-wycena-content {
  margin-top: 32px;
  text-align: left; /* jeśli formularz ma pola pełnej szerokości */
}

/* przycisk w stylu CTA */
#load-wycena-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-light);
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(226, 97, 30, .25);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

#load-wycena-btn:hover,
#load-wycena-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(226, 97, 30, .35);
}




/* ======================
   SEKJA STOPKA (FOOTER)
====================== */
.footer-wrapper {
    background: #212121;
    color: #eee;
    padding: 38px 0 20px 0;
    margin-top: 44px;
}
.footer-container {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1 1 200px;
    max-width: 340px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column li {
    margin-bottom: 9px;
    color: #fff;
    font-size: 1.04em;
}
.footer-column a {
    color: #ff8833;
    font-weight: 500;
}
.footer-column a:hover {
    color: #fff;
}


/* Fade-in bazowe */
.fade-in-element{
  opacity:0;
  transition:opacity .55s ease-out, transform .55s ease-out;
}

/* ► klasy kierunkowe / efektowe ••••••••••••••••• */

/* domyślne (z dołu) — nic nie zmieniamy, bo używa translateY z JS */
.fade-up      { transform:translateY(40px); }

.fade-left    { transform:translateX(-40px); }
.fade-right   { transform:translateX(40px);  }

.fade-zoom    { transform:scale(.85);        }

/* ► stan po wejściu */
.fade-in-element.in-view{
  opacity:1;            /* wspólne */
  transform:none;       /* zeruje translate / scale */
}


/* ===== UNIWERSALNE SEKCJE ===== */
section{
  padding: 30px 0;               
}
section + section{               
  margin-top: 20px;
}

/* Jasne tło naprzemiennie (dodaj klasę .section-alt) */
.section-alt {
  background: #fffaf7;
}

.section-title {
  color: #e2611e;
  text-align: center;
}

/* Delikatny separator (użyj <div class="section-separator"></div>) */
.section-separator{
  height:1px;
  width:92%;
  max-width:1240px;
  margin:0 auto;
  background:linear-gradient(90deg,transparent,#e6e6e6 15%,#e6e6e6 85%,transparent);
}


/* Bloki czysto-tekstowe – zawęź kolumnę i zwiększ leading */
.info-section,
.audience-section,
.offer-section{
  max-width: 960px;
  margin: 0 auto;        /* wyśrodkowanie */
  line-height: 1.65;
  font-size: 1.05em;
}
.info-section h2,
.audience-section h2,
.offer-section h2{
  text-align:center;
  color:var(--color-accent);
  margin-bottom:34px;
  font-size:2.1em;
  font-weight:800;
}
.info-section ul{ padding-left: 1.3em; }
.info-section li{ margin-bottom: 6px; }


/* Układ: grid (≥740 px  --> 2 kolumny) */
.form-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:48px;
}

/* Karta formularza */
.contact-card{
  padding:40px 32px;
  border-radius:20px;
  box-shadow:0 6px 26px rgba(0,0,0,.05);
  background:#fff;
  max-width:100%;
}
.contact-card h3{ font-size:1.4em; margin-bottom:22px; color:var(--color-accent); }

/* Grupa pola */
.form-group{ margin-bottom:20px; }
.form-group label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
select{
  width:100%;
  font-size:1em;
  padding:12px 14px;
  border:1.5px solid #ddd;
  border-radius:10px;
  transition:border-color .22s, box-shadow .22s;
  appearance:none;
}
input:focus,
textarea:focus,
select:focus{
  border-color:var(--color-accent);
  box-shadow:0 0 0 3px rgba(226,97,30,.18);
  outline:none;
}

/* Przycisk Wyślij */
.submit-btn{
  display:inline-block;
  width:100%;
  padding:16px 28px;
  font-size:1.1em;
  font-weight:700;
  border:none;
  border-radius:36px;
  background:var(--color-accent);
  color:#fff;
  box-shadow:0 4px 18px rgba(226,97,30,.45);
  cursor:pointer;
  transition:background .22s, box-shadow .22s, transform .18s;
}
.submit-btn:hover,
.submit-btn:focus{
  background:#fd7e3b;
  box-shadow:0 7px 28px rgba(226,97,30,.55);
  transform:translateY(-2px);
}







/* ======================
   scroll-to-top
====================== */

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #e2611e;
    border-radius: 50%;
    box-shadow: 0 2px 15px #e2611e1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1em;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 1999;
    transition: opacity 0.2s, background 0.18s;
    border: 2px solid #ffe6db;
}
.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
.scroll-to-top:hover {
    background: #ffe6db;
}
@media (max-width: 600px) {
    .scroll-to-top { width: 38px; height: 38px; font-size: 1.4em; bottom: 18px; right: 12px; }
}



/* ======================
   STOPKA: CIEMNA WERSJA
====================== */

.footer-wrapper {
  background: #222;         /* bardzo ciemne tło */
  color: #eee;              /* jasny tekst */
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 40px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pionowa kreska między kolumnami */
.footer-column + .footer-column {
  border-left: 1px solid #444;
  padding-left: 2rem;
}

/* Nagłówki sekcji */
.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e2611e;           /* akcentowy pomarańcz */
}

/* Kontakt */
.contact-info p {
  margin: 0 0 0.5rem;
}
.contact-info .nip {
  margin-top: 1rem;
  color: #ccc;
  font-weight: 400;
}

/* Linki */
.contact-info a,
.footer-nav a {
  color: #e2611e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info a:hover,
.footer-nav a:hover {
  color: #ff8a4c;
}

/* Nawigacja */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 0.5rem;
}

/* Dolna stopka */
.footer-bottom {
  text-align: center;
  padding: 1rem 2rem;
  background: #111;
  font-size: 0.85rem;
  color: #888;
}

.footer-bottom p {
  margin: 0;
}

/* Responsywność */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-column + .footer-column {
    border-left: none;
    padding-left: 0;
    margin-top: 2rem;
  }
}

/* Pozwól Lightboxowi przechwytywać swipe i pinch-zoom */
.glightbox-container,
.glightbox-container .gslider,
.glightbox-slide {
  touch-action: pan-y pinch-zoom;
}


/* ======================
   RESPONSYWNOŚĆ – WSPÓLNA
====================== */


/* Tylko na touch‐device’ach */
@media (hover: none) and (pointer: coarse) {
  .why-dapal-flip {
    position: relative;
    cursor: pointer;
  }

  .why-dapal-flip::after {
    content: '↻';                     
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 1.3em;
    color: rgba(0,0,0,0.35);
    animation: pulseFlipHint 1.5s ease-in-out infinite;
    pointer-events: none;
  }

  /* Ukrywamy hint podczas obrotu */
  .why-dapal-flip.is-flipped::after {
    display: none;
  }

  @keyframes pulseFlipHint {
    0%, 100%   { transform: scale(1); opacity: 0.4; }
    50%        { transform: scale(1.2); opacity: 0.7; }
  }
}




/* 1) Tablety / małe desktopy */
@media (max-width: 950px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 6px;
    column-gap: 0;
  }

  .header-mobile-wrap {
    margin-bottom: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero-content {
    display: block; /* zamiast flex na mobile */
    margin: 16px auto;
    padding: 28px 8px 20px;
    border-radius: var(--border-radius-xl);
    max-width: 95vw;
    box-sizing: border-box;
    text-align: center;
    background: var(--color-bg-glass);
    box-shadow: var(--shadow-hero);
    backdrop-filter: blur(4px);
  }

  .hero-content h1 {
    font-size: 1.1em;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1em;
  }

  .hero-icons {
    flex-direction: column;
    gap: 8px;
  }
}

/* 2) Kompaktowy footer (≤700px) */
@media (max-width: 700px) {
  .footer-wrapper {
    padding: 18px 0 8px;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* 3) Pełna przebudowa hero na telefonie (≤600px) */
@media (max-width: 600px) {
  /* podbijamy body, by header nie nachodził na treść */
  body {
    padding-top: 170px; /* równe wysokości headera na telefonie */
  }

  /* hero-section jako statyczne tło */
  .hero-section {
    min-height: 340px;
    display: block;
    overflow: hidden;
    position: relative;
    background-attachment: scroll; /* wyłącz parallax */
  }

  /* ukrywamy ciemny overlay */
  .hero-overlay {
    display: none !important;
  }

  /* hero-content jako statyczny kontener pod zdjęciem */
  .hero-content {
    position: static !important;
    width: 96vw !important;
    max-width: none !important;
    margin: 12px auto 24px !important;
    padding: 24px 16px !important;
    background: rgba(255, 255, 255, 0.50) !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1) !important;
    backdrop-filter: blur(4px) !important;
  }

  .hero-content h1 { font-size: 1.2em; }
  .hero-content p  { font-size: 1em; }

  /* przycisk “Bezpłatna wycena” w headerze */
  .btn-primary.header-cta {
    padding: 10px 28px !important; /* 10px pionowo, 28px w poziomie */
    font-size: 1em !important;
  }

  /* logotyp i ikony w hero */
  .logo-header img {
    height: 46px;
  }
  .hero-icons span {
    font-size: 0.96em;
    padding: 8px 13px;
    border-radius: 13px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  /* doprecyzuj szerokość i centrowanie kafelków */
  .dla-kogo-grid,
  .oferta-lista {
    /* kontener niech ma padding po bokach */
    padding: 0 12px;
    /* ogranicz maksymalną szerokość do 360px i wyśrodkuj */
    max-width: 360px;
    margin: 0 auto;
    /* jedna kolumna */
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Przycisk CTA (opcja) */
.cta-btn {
  display: inline-block;
  background: #ea711b;
  color: #fff;
  font-weight: bold;
  border-radius: 2em;
  padding: 0.9em 2em;
  box-shadow: 0 2px 12px rgba(234,113,27,0.12);
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: #d35e08;
  box-shadow: 0 4px 24px rgba(234,113,27,0.15);
}




/* ===== HERO MOBILE ===== */
@media (max-width: 600px) {
  /* Hero sekcja – mobile: pionowo, pełna szerokość */
  .hero-section.hero-slideshow {
    width: 100vw !important;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 0;
    height: auto;
    background: transparent;
    overflow: visible;
  }
  /* Pokazuj tylko tło/slideshow, bez nakładek i contentu */
  .hero-section.hero-slideshow .hero-overlay,
  .hero-section.hero-slideshow .hero-gradient,
  .hero-section.hero-slideshow .hero-content,
  .hero-section.hero-slideshow .hero-video {
    display: none !important;
  }
  .hero-section.hero-slideshow .slideshow-bg {
    display: block !important;
    position: relative !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 95vh !important;          /* Główna wysokość hero – 95% ekranu */
    min-height: 620px !important;     /* Minimum, jeśli ekran niski */
    max-height: 100vw !important;     /* opcjonalnie: nie rośnij za bardzo na bardzo wysokich ekranach */
    padding: 0 !important;
    margin: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  /* Ukryj sekcję tekstową na overlayu (desktop hero-content) */
  .hero-section.hero-slideshow .hero-content {
    display: none !important;
  }
  /* Wyświetl sekcję z tekstem pod spodem */
  .hero-section.hero-text-only {
    display: block !important;
    width: 100vw;
     margin: 20px auto 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .hero-section.hero-text-only .hero-content {
    display: block !important;
    margin: 0 auto 32px auto !important;
    width: 95vw !important;
    padding: 24px 12px !important;
    background: rgba(255,255,255,0.93) !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(6px) !important;
    text-align: center;
    color: #232323;
  }
}



