:root {
  --stawy-tlo-jasne: #f8f9fa;
  --stawy-tlo-ciemne: #0e1e16;
  --stawy-kontener-tlo: #ffffff;
  --stawy-akcent-zielony: #1b5e20;
  --stawy-akcent-jasny: #e8f5e9;
  --stawy-akcent-zloty: #c5a880;
  --stawy-tekst-glowny: #212529;
  --stawy-tekst-wyblakly: #5a6268;
  --stawy-tekst-jasny: #ffffff;
  --stawy-cien-stabilny: 0 10px 30px rgba(14, 30, 22, 0.08);
  --stawy-cien-mocny: 0 16px 40px rgba(14, 30, 22, 0.15);
  --stawy-promien-miekki: 16px;
  --stawy-czcionka-naglowek: 'Montserrat', sans-serif;
  --stawy-czcionka-tekst: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--stawy-czcionka-tekst);
  color: var(--stawy-tekst-glowny);
  background-color: var(--stawy-tlo-jasne);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--stawy-czcionka-naglowek);
  font-weight: 700;
  color: var(--stawy-tlo-ciemne);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.stawy-pasek-postepu-kontener {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 10000;
  background: transparent;
}

.stawy-pasek-postepu-linia {
  height: 100%;
  width: 0;
  background: var(--stawy-akcent-zielony);
  animation: stawy-progres-animacja linear;
  animation-timeline: scroll();
}

@keyframes stawy-progres-animacja {
  to { width: 100%; }
}

/* Header Area */
.stawy-glowna-nawigacja {
  position: sticky;
  top: 0;
  background: var(--stawy-kontener-tlo);
  box-shadow: var(--stawy-cien-stabilny);
  z-index: 999;
  padding: 1.2rem 2rem;
}

.stawy-nawigacja-blok {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stawy-logo-obszar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--stawy-czcionka-naglowek);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--stawy-akcent-zielony);
}

.stawy-logo-ikona {
  width: 36px;
  height: 36px;
  fill: var(--stawy-akcent-zielony);
}

.stawy-lista-odsylaczy {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.stawy-link-nawigacyjny {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--stawy-tlo-ciemne);
  position: relative;
  padding: 0.5rem 0;
}

.stawy-link-nawigacyjny::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--stawy-akcent-zielony);
  transition: width 0.3s ease;
}

.stawy-link-nawigacyjny:hover::after {
  width: 100%;
}

.stawy-przycisk-akcji {
  background: var(--stawy-akcent-zielony);
  color: var(--stawy-tekst-jasny);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.stawy-przycisk-akcji:hover {
  background: var(--stawy-tlo-ciemne);
  transform: translateY(-2px);
}

/* Mobile Menu Trigger Checkbox Only */
.stawy-mobilny-stan {
  display: none;
}

.stawy-mobilny-ikona {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.stawy-mobilny-ikona span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--stawy-tlo-ciemne);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .stawy-mobilny-ikona {
    display: flex;
  }

  .stawy-lista-odsylaczy {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--stawy-kontener-tlo);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .stawy-mobilny-stan:checked ~ .stawy-lista-odsylaczy {
    right: 0;
  }

  .stawy-mobilny-stan:checked ~ .stawy-mobilny-ikona span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .stawy-mobilny-stan:checked ~ .stawy-mobilny-ikona span:nth-child(2) {
    opacity: 0;
  }

  .stawy-mobilny-stan:checked ~ .stawy-mobilny-ikona span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* General Layout Structure */
.stawy-sekcja-glowna {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Scroll View Animations */
.stawy-ujawnij {
  animation: stawy-slajd-gora both linear;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
}

@keyframes stawy-slajd-gora {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner Hero Section */
.stawy-powitalny-obszar {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(14, 30, 22, 0.65), rgba(14, 30, 22, 0.65)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--stawy-tekst-jasny);
  padding: 4rem 2rem;
}

.stawy-powitalna-tresc {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stawy-powitalny-tytul {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--stawy-tekst-jasny);
  margin-bottom: 1.5rem;
}

.stawy-powitalny-podtytul {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Bento Grid */
.stawy-bento-siatka {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stawy-bento-karta {
  background: var(--stawy-kontener-tlo);
  border-radius: var(--stawy-promien-miekki);
  padding: 2.5rem;
  box-shadow: var(--stawy-cien-stabilny);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stawy-bento-karta:hover {
  transform: translateY(-5px);
  box-shadow: var(--stawy-cien-mocny);
}

.stawy-bento-karta-duza {
  grid-column: span 4;
  background: var(--stawy-akcent-jasny);
  border-left: 5px solid var(--stawy-akcent-zielony);
}

.stawy-bento-karta-mala {
  grid-column: span 2;
  background: var(--stawy-akcent-zielony);
  color: var(--stawy-tekst-jasny);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stawy-bento-karta-mala h3 {
  color: var(--stawy-tekst-jasny);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.stawy-bento-karta-mala p {
  color: var(--stawy-akcent-jasny);
  font-size: 1.1rem;
}

.stawy-bento-karta-srednia {
  grid-column: span 3;
}

.stawy-bento-karta-szeroka {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.stawy-bento-szeroka-ikonbox {
  background: var(--stawy-akcent-jasny);
  padding: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stawy-bento-ikonka {
  width: 40px;
  height: 40px;
  fill: var(--stawy-akcent-zielony);
}

.stawy-bento-tytul {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--stawy-tlo-ciemne);
}

.stawy-bento-tekst {
  color: var(--stawy-tekst-wyblakly);
  font-size: 1rem;
}

@media (max-width: 991px) {
  .stawy-bento-siatka {
    grid-template-columns: 1fr;
  }
  .stawy-bento-karta-duza, 
  .stawy-bento-karta-mala, 
  .stawy-bento-karta-srednia, 
  .stawy-bento-karta-szeroka {
    grid-column: span 6;
  }
  .stawy-bento-karta-szeroka {
    flex-direction: column;
    text-align: center;
  }
}

/* Image overlay banner section */
.stawy-nakladka-sekcja {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--stawy-tekst-jasny);
  padding: 10dvh 2rem;
  text-align: center;
}

.stawy-nakladka-kontener {
  max-width: 800px;
  margin: 0 auto;
}

.stawy-nakladka-tytul {
  color: var(--stawy-tekst-jasny);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Process Timeline (3 steps) */
.stawy-proces-sekcja {
  background: var(--stawy-kontener-tlo);
  padding: 10dvh 2rem;
}

.stawy-proces-tytul {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
}

.stawy-proces-kontener {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.stawy-proces-krok {
  flex: 1;
  text-align: center;
  position: relative;
}

.stawy-proces-numer {
  font-size: 6rem;
  font-weight: 900;
  color: var(--stawy-akcent-jasny);
  line-height: 1;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 1;
}

.stawy-proces-tekst-blok {
  position: relative;
  z-index: 2;
}

.stawy-proces-krok-tytul {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.stawy-proces-krok-opis {
  color: var(--stawy-tekst-wyblakly);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .stawy-proces-kontener {
    flex-direction: column;
    gap: 3rem;
  }
}

/* Call to Action Strip */
.stawy-wezwanie-pasek {
  background: var(--stawy-akcent-akcent-gradient, linear-gradient(135deg, #1b5e20 0%, #0e1e16 100%));
  color: var(--stawy-tekst-jasny);
  padding: 6rem 2rem;
  text-align: center;
}

.stawy-wezwanie-tytul {
  color: var(--stawy-tekst-jasny);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stawy-wezwanie-podtytul {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer structure */
.stawy-dolna-stopka {
  background: var(--stawy-tlo-ciemne);
  color: var(--stawy-tekst-jasny);
  padding: 4rem 2rem 2rem;
}

.stawy-stopka-kontener {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stawy-stopka-gora {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2rem;
}

.stawy-stopka-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--stawy-czcionka-naglowek);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--stawy-tekst-jasny);
}

.stawy-stopka-logo-svg {
  width: 36px;
  height: 36px;
  fill: var(--stawy-tekst-jasny);
}

.stawy-stopka-linki {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stawy-stopka-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.stawy-stopka-link:hover {
  color: var(--stawy-tekst-jasny);
}

.stawy-stopka-dol {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stawy-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.4);
}

/* Cookie Banner styling */
.stawy-cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--stawy-tlo-ciemne);
  color: var(--stawy-tekst-jasny);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
  display: none;
}

.stawy-cookie-ramka {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.stawy-cookie-tekst {
  font-size: 0.95rem;
}

.stawy-cookie-przyciski {
  display: flex;
  gap: 1rem;
}

.stawy-cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
}

.stawy-cookie-btn-akceptuj {
  background: var(--stawy-akcent-zielony);
  color: var(--stawy-tekst-jasny);
}

.stawy-cookie-btn-odrzuc {
  background: transparent;
  color: var(--stawy-tekst-jasny);
  border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .stawy-cookie-ramka {
    flex-direction: column;
    text-align: center;
  }
}

/* Expert Page split styling */
.stawy-expert-struktura {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.stawy-expert-foto-obszar {
  flex: 1;
}

.stawy-expert-foto {
  width: 100%;
  border-radius: var(--stawy-promien-miekki);
  box-shadow: var(--stawy-cien-mocny);
  object-fit: cover;
  max-height: 550px;
}

.stawy-expert-tekst-obszar {
  flex: 1;
}

.stawy-expert-naglowek {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.stawy-expert-akapit {
  margin-bottom: 1.2rem;
  color: var(--stawy-tekst-wyblakly);
}

@media (max-width: 991px) {
  .stawy-expert-struktura {
    flex-direction: column;
  }
}

/* Reservation Page Layout */
.stawy-rezerwacja-ramka {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.stawy-rezerwacja-lewy {
  flex: 1.2;
}

.stawy-rezerwacja-prawy {
  flex: 1;
  background: var(--stawy-kontener-tlo);
  padding: 3rem;
  border-radius: var(--stawy-promien-miekki);
  box-shadow: var(--stawy-cien-stabilny);
}

.stawy-input-grupa {
  margin-bottom: 1.5rem;
}

.stawy-etykieta {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.stawy-pole-tekstowe, .stawy-pole-wyboru {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--stawy-czcionka-tekst);
  font-size: 1rem;
}

.stawy-zaznacz-grupa {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.stawy-zaznacz-grupa input {
  margin-top: 0.3rem;
}

.stawy-zaznacz-tekst {
  font-size: 0.85rem;
  color: var(--stawy-tekst-wyblakly);
}

@media (max-width: 991px) {
  .stawy-rezerwacja-ramka {
    flex-direction: column;
  }
  .stawy-rezerwacja-prawy {
    width: 100%;
  }
}

/* FAQ Accordion Styling */
.stawy-faq-sekcja {
  margin-top: 6rem;
}

.stawy-faq-tytul {
  text-align: center;
  margin-bottom: 3rem;
}

.stawy-faq-pojemnik {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stawy-faq-element {
  background: var(--stawy-kontener-tlo);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--stawy-cien-stabilny);
}

.stawy-faq-pytanie-label {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  display: block;
  cursor: pointer;
  background: var(--stawy-kontener-tlo);
  transition: background 0.3s ease;
  user-select: none;
}

.stawy-faq-odpowiedz {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: var(--stawy-tekst-wyblakly);
  font-size: 0.95rem;
}

.stawy-faq-element input[type="checkbox"] {
  display: none;
}

.stawy-faq-element input[type="checkbox"]:checked ~ .stawy-faq-odpowiedz {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Informational Cards on Reserve Page */
.stawy-karta-informacyjna {
  background: var(--stawy-kontener-tlo);
  padding: 2rem;
  border-radius: var(--stawy-promien-miekki);
  margin-bottom: 1.5rem;
  box-shadow: var(--stawy-cien-stabilny);
}

.stawy-lista-punktowana {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stawy-lista-punktowana li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.stawy-lista-punkt {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stawy-akcent-zielony);
  flex-shrink: 0;
}

/* Thank you page styles */
.stawy-dziekujemy-pudelko {
  text-align: center;
  background: var(--stawy-kontener-tlo);
  padding: 4rem;
  border-radius: var(--stawy-promien-miekki);
  box-shadow: var(--stawy-cien-stabilny);
  max-width: 600px;
  margin: 4dvh auto;
}

.stawy-dziekujemy-foto {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Plain Doc container for Regulations and Policies */
.stawy-dokument-obszar {
  max-width: 800px;
  margin: 0 auto;
  background: var(--stawy-kontener-tlo);
  padding: 3rem;
  border-radius: var(--stawy-promien-miekki);
  box-shadow: var(--stawy-cien-stabilny);
}

.stawy-dokument-tytul {
  margin-bottom: 2rem;
}

.stawy-dokument-p {
  margin-bottom: 1.5rem;
  color: var(--stawy-tekst-wyblakly);
}