@charset "UTF-8";
/* import fontu z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');


/* GLOBALNE SELEKTORY */
*{
	transition: 2s;
	box-sizing: border-box;/* padding nie zwiększa szer. boxu */
}

html{
	font-family: "Comfortaa", sans-serif;
	/*font-size: 16px; domyślna wartość */
	font-size: 10px;
	/*
	rem = root emphasis = wielokr. bazowego rozm. fontu
	1rem = 16px; 10px
	2rem = 32px; 20px
	1.7rem = ??; 17px
	*/
	scroll-behavior: smooth; /*płynne przewijanie*/
}
/* --- GLOBALNE --- */
body {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  background-image:
    url('../img/gwiazdy.webp'),
	
    linear-gradient(180deg, #171B35 4%, #28469B 32%, #D34E50 64%, #FFDA47 92%);

  /* kafelkowanie gwiazd, gradient jednorazowo */
  background-repeat: repeat, no-repeat;

  /* gwiazdy przewijane, gradient przyklejony */
  background-attachment: scroll, fixed;

  /* gwiazdy w oryginalnym rozmiarze, gradient cover */
  background-size: auto, cover;

  /* gwiazdy od lewego-górnego, gradient center */
  background-position: top left, center center;

  color: #fff;
  overflow-x: hidden; /* ukrywa poziome przewijanie */
}

section{
  scroll-margin-top: 8rem;
}

/* --- MENU --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;  /* wysokość paska */
  background-image: linear-gradient(0deg, #28469B 0%, #171B35 100%);
  z-index: 999;
  overflow: visible;
}

.menu-container {
  position: relative;    
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;   /* pionowe wyśrodkowanie linków */
  justify-content: flex-end; /* linki wypchnięte maksymalnie w prawo */
  padding: 0 2rem;
}

.menu-container .logo {
  position: absolute;
  left: 2rem;        /* 2 rem od lewej krawędzi paska */
  bottom: -50px;     /* wysunięcie 20 px poza dolną krawędź nav */
  transform: none;
  z-index: 1000;
}
.menu-container .logo img {
  max-height: 115px; /* dostosuj do swojego pliku */
  width: auto;
}
.menu-container .logo a:focus {
  outline: none;
}
.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.menu li a {
  font-size: 1.3rem;
  text-decoration: none;
  color: #ccc;
  font-family: "Comfortaa", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;       /* tu zwiększasz odstęp po lewej */
  padding-right: 2rem;      /* i po prawej */
  border: 1px solid transparent;
  border-radius: 1.8rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

/* na hover zmieniamy tylko kolor borderu */
.menu li a:hover {
  background: transparent !important;
  border-color: #fff;                 /* << pojawia się cienki, biały obrys */
  color: #fff;
}
.menu li a:focus,
#menu-toggle:focus,
.hamburger:focus {
  outline: none !important;
}
/* HAMBURGER */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
@media (min-width: 801px) {
  /* absolutnie ukryj checkboxa i label (hamburger) na desktopie */
  #menu-toggle,
  .hamburger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* wyłącz ewentualne focus‐ringi */
  #menu-toggle:focus,
  .hamburger:focus {
    outline: none !important;
  }
}
/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 800px) {
  .menu-container {
    justify-content: space-between; /* hamburger + logo + linki w rzędzie */
  }
  .hamburger {
    display: flex;
    margin-left: 1rem;
  }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(0deg, #28469B 0%, #171B35 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  #menu-toggle:checked ~ .menu {
    max-height: 500px;
  }
  .menu li a {
    width: 100%;
    padding: 1.5rem 0;
  }
}
/* === HERO: precyzyjne pozycjonowanie === */
.hero {
  position: relative;
  padding-top: 7rem;
  min-height: calc(100vh - 7rem);
  overflow: visible;
}

/* WARSTWY */
nav          { z-index: 1000; }
.hero .cloud { z-index:  900; }
.hero .moon  { z-index:  920; }
.hero .main-image { z-index: 910; }

/* === KSIĘŻYC: pulsowanie w pętli === */
.hero .moon {
  position: absolute;
  top: 15%;
  left: 75%;
  z-index: 920;
  transform-origin: center center;
  animation: pulse 4s ease-in-out infinite;
  max-width: 10rem; 
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
}
/* NAMIOT */
.hero .main-image {
  position: absolute;
  bottom: 10%;     
  left: 65%;       
  transform: translateX(-50%);
  max-width: 110rem; 
  z-index: 930;
  animation: float 3s ease-in-out infinite;
}
/* ANIMACJA LEWITACJI */
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-20px); }
}
.hero .cloud-1 {
  position: absolute;
  top: 20%;
  left: 30%;
  max-width: 22rem;
  z-index: 900;                     /* ponad namiotem (910) */
  animation: drift 12s ease-in-out infinite;
}

/* klatki animacji: płynny ruch w poziomie */
@keyframes drift {
  0%, 100%   { transform: translateX(0);   }
  50%        { transform: translateX(200px); }
}	

.hero .cloud-2 {
  position: absolute;
  top: 70%;
  left: 45%;
  max-width: 22rem;
  z-index: 950;                     /* ponad namiotem (910) */
  animation: drift 10s ease-in-out infinite;
}

/* klatki animacji: płynny ruch w poziomie */
@keyframes drift {
  0%, 100%  { transform: translateX(-100px);  }
  50%  { transform: translateX( 250px); }
}	
.hero .cloud-3 {
  position: absolute;
  top: 20%;
  left: 70%;
  max-width: 22rem;
  z-index: 930;                     /* ponad namiotem (910) */
  animation: drift 15s ease-in-out infinite;
}

/* klatki animacji: płynny ruch w poziomie */
@keyframes drift {
  0%, 100%  { transform: translateX(150px);  }
  50%  { transform: translateX( -350px); }
	}
/* --- ATRAKCJE --- */
.section.atrakcje {
  position: relative;  
  z-index: 2;          
  padding: 2rem 1rem;
  background: transparent;
  overflow: visible;
}

/* Nagłówek */
.section.atrakcje h2 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}

/* Kontener kart */
.attractions {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2; /* karty pod chmurkami */
}

/* Karta */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  flex: 0 1 30rem;
  max-width: 30rem;
  min-height: 40rem;

  padding: 2rem 1rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 4rem;
  background: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
  transition: backdrop-filter 0.3s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
}

.card:hover {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* --- Chmurki w tle --- */
.atrakcje-cloud {
  position: absolute;
  max-width: 23rem;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  /* wspólna animacja z yoyo */
  animation: driftX 8s ease-in-out infinite alternate;
  animation-fill-mode: backwards; 
}

/* lewa chmurka: start w fazie 0 */
.atrakcje-cloud.left {
  top: 0%;
  left: 70%;
  animation-delay: 0s;
  /* kierunek alternuje: go → back → go → back */
}

/* prawa chmurka: też yoyo, ale faza odwrotna */
.atrakcje-cloud.right {
  bottom: -5%;
  right: 60%;
  animation-delay: 1s;           /* pół okresu, żeby fazy się nie zgrywały */
  animation-direction: alternate-reverse;
  animation-fill-mode: backwards; 
}

/* klucze animacji: driftX */
@keyframes driftX {
  from { transform: translateX(-150px); }
  to   { transform: translateX( 250px); }
}
/* --- TRASA --- */
.wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section.trasa {
  position: relative;
  padding: 2rem 1rem;
  background: transparent;
  color: #fff;
  text-align: center;
  overflow: visible;
}

.section.trasa h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section.trasa .trasa-subtitle {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section.trasa .trasa-desc {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

/* Kontener kart */
.route {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

/* Pojedyncza karta */
.route-card {
  position: relative;     /* pozwala na z-index */
  z-index: 5;             /* ponad chmurkami */
  flex: 0 1 21rem;                  /* szerokość każdej karty */
  aspect-ratio: 1 / 1;              /* wymusza kwadrat */
  padding: 3rem 1rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 4rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: backdrop-filter 0.3s ease;
}

.route-card:hover {
  backdrop-filter: blur(5px);
}

.route-card h3 {
  margin: 0 0 2.5rem; 
  font-size: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
}

.route-card .city {
  margin-top: 0.5rem;
  text-align: center;
}

.route-card .city .name {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.route-card .city .date {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}

.route-card .separator {
  display: block;                          /* pewność, że to blok */
  width: 90%;                              /* szerokość kreski */
  margin: 1.2rem 0;                     /* 0.8rem od góry i dołu, auto po bokach */
  border-bottom: 2px solid rgba(255,255,255,0.8);
}
.route-card .city + .separator + .city {
  margin-top: 0;       
}

/* Chmurki w tle */
.trasa-cloud {
  position: absolute;
  z-index: 1; 
  pointer-events: none;
  opacity: 1;
  max-width: 23rem;            
}
.section.trasa h2,
.section.trasa .trasa-subtitle,
.section.trasa .trasa-desc {
  position: relative;
  z-index: 5; /* > z-index chmur (1) i kart (2) */
}
.trasa-cloud.left {
  top: 2%;
  left: 5%;
  animation: drift-right 12s linear infinite;
}

.trasa-cloud.right {
  bottom: -20%;
  right: 0%;
  animation: drift-left 15s linear infinite;
}

@keyframes drift-right {
  0%, 100%    { transform: translateX(0); }
  50%  { transform: translateX(300px); }
}

@keyframes drift-left {
  0%, 100%  { transform: translateX(0); }
  50%  { transform: translateX(-250px); }
  
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 800px) {
  .route {
    gap: 1rem;
  }
  .route-card {
    flex: 0 1 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .route-card h3 {
    font-size: 3rem;
  }
  .route-card .city .name {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
  .route-card .city .date {
    font-size: 1.2rem;
  }
  .route-card .separator {
    width: 60%;
  }
  .trasa-cloud {
    max-width: 25rem;
  }
  .route-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* --- GALERIA --- */
.section.galeria h2 {
  font-size: 3rem;    
  margin-bottom: 2rem;
}
.section.galeria {
  position: relative;
  padding: 2rem 1rem;
  color: #fff;
  text-align: center;
}
.wrapper {
  max-width: 1400px; margin:0 auto; padding:0 2rem; position:relative; z-index:2;
}

.gallery-slider {
  position: relative;  
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Window */
.gallery-window {
  flex: 0 0 auto;
  width: calc(4*20rem + 3*2rem);
  max-width: 100%;
  overflow: hidden;
  position: relative;
 
}

/* Track */
.gallery-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.gallery-track::-webkit-scrollbar { display: none; }

/* Items */
.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.gallery-item img {
  display: block;
  max-width: 20rem;
  border: .2rem solid #fff;
  border-radius: 4rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* --- STRZAŁKI --- */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 5;
}

.arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* delikatne podświetlenie obrysu */
.arrow:hover svg path {
  stroke: rgba(255, 255, 255, 0.6);
}

/* pozycjonowanie */
.arrow.left  { left: 22rem;  }
.arrow.right { right: 22rem; }
/* Clouds */
.galeria-cloud {
  position: absolute; max-width:20rem; opacity:.8;
  pointer-events:none; z-index:1;
  animation: floatCloud 12s ease-in-out infinite alternate;
}
.galeria-cloud.left  { bottom:-5%; left:10%; }


@keyframes floatCloud {
  from { transform: translateX(0) translateY(0); }
  to   { transform: translateX(200px) translateY(10px); }
}

/* Responsive */
@media (max-width:800px) {
  .gallery-window   { width: 100%; }
  .gallery-item img  { max-width:15rem; }
  .arrow             { font-size:2rem; width:3rem; height:3rem; }
}


/* --- DEKORACYJNE CHMURY --- */
.galeria-cloud {
  position: absolute;
  max-width: 22rem;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  animation: floatCloud 12s ease-in-out infinite alternate;
}
.galeria-cloud.left  { bottom: -5%; left: 10%; }


@keyframes floatCloud {
  from { transform: translateX(0) translateY(0); }
  to   { transform: translateX(500px) translateY(10px); }
}
/* --- O NAS --- */

.section.onas {
  position: relative;
  overflow: visible;
  margin: 0 auto;
  padding: 2rem 1rem 10rem;     
  background: transparent;
  color: #fff;
  text-align: center;
  
}

.section.onas h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.section.onas .onas-box {
  width: 100%;        /* zajmuje 100% przestrzeni rodzica, ale nie więcej niż… */
  max-width: 88rem;   /* <- tu zmień na dowolnie mniejszą wartość */
  margin: 0 auto;     /* centrowanie poziome */
}
.section.onas .onas-content {
  max-width: 800px;
  font-size: 1.5rem;
  width: 90%;           
  margin: 0 auto;
  padding: 2rem;  
  margin-bottom: 1.1rem;  /* wielkość przerwy – zmień wg uznania */
  line-height: 1.6;
}
/* centrowanie wrappera i ograniczenie szerokości */
.wrapper {
  margin: 0 auto;
  padding: 0 .1rem 5rem;       /* dolny padding na miejsce dla słońca */
  position: relative;
}

/* ramka wokół tekstu */
.onas-box {
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  /* gdybyś nie chciał nawet tego lekkiego tła, ustaw background: transparent; */
}

/* układ dwóch kolumn tekstu */
.onas-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.onas-column {
  flex: 1 1 40%;
  text-align: left;
  line-height: 1.6;
}

.stopka-full {
  position: absolute;
  bottom: -25%;      /* przy samej dolnej krawędzi sekcji "O NAS" */
  left: 0;        /* od lewej krawędzi viewportu */
  width: 100%;    /* zajmuje całą szerokość rodzica (czyli body) */
  height: auto;   /* zachowuje proporcje */
  max-width: none;/* nie ograniczamy więcej */
  display: block; /* koniec inline odstępów */
}
.section.onas .stopka-full {
  z-index: 5;
  pointer-events: none;
}
/* SŁOŃCE */
.section.onas .sun {
  position: absolute;
  bottom: -31rem;               /* nieco nad samą stopką */
  left: 50%;
  transform: translateX(-50%) translateY(0) scale(1);
  transform-origin: center top;
  width: 40rem;
  height: 40rem;
  background: #FFD700;
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: auto;
}
.section.onas .sun:hover {
  transform: translateX(-50%) translateY(2rem) scale(0.8);
}

/* ============================================================================
   RESPONSYWNOŚĆ
   ============================================================================ */
@media (max-width: 800px) {
  .section.onas {
    padding-bottom: 14rem;
  }
  .section.onas .wrapper {
    max-width: 90%;
  }
  .section.onas .onas-box {
    max-width: 100%;
  }
  .section.onas .onas-content {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .section.onas .sun {
    width: 10rem;
    height: 10rem;
  }
}

/* --- KONTAKT --- */
.section.kontakt {
  background-image: linear-gradient(180deg, #E0784D 0%, #E2C036FF 100%);
  background-size: 100% 100%;
  position: relative;
	z-index: 2;
  overflow: visible;
  padding: 2rem 1rem 6rem; /* więcej dół, by zmieścić elementy dekoracyjne */
  color: #fff;
  
}

/* wrapper do centrowania i ograniczenia szerokości */
.section.kontakt .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

/* każdy blok kontaktowy */
.section.kontakt .contact-block {
  flex: 1 1 20rem;
  text-align: center;
}

/* logo */
.contact-block.logo-block {
  flex: 1 1 100%;
}
.contact-logo {
  max-width: 10rem;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

/* nagłówki w blokach */
.contact-block h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* styl samych paragrafów i linków */
.contact-block p {
  margin: 0.5rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
  padding-left: 0rem;
}
.contact-block a {
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.contact-block a:hover {
  border-color: #FFDA47;
}

/* Copyright ma mniejszy font */
.contact-block .copyright {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* --- IKONY SOCIAL MEDIA --- */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  max-width: none;
  height: auto;
  display: block;
}
.section.kontakt .social-icons a {
  text-decoration: none;     /* usuwa ewentualne podkreślenie linków */
  border-bottom: none;       /* dla pewności usuwa każdą dolną ramkę */
}
.section.kontakt .social-icons img {
  width: 4rem !important;
  max-width: none !important;
  height: auto !important;
}


/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 800px) {
  .section.kontakt .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .contact-block {
    flex: 1 1 100%;
  }

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 800px) {
  .cloud { max-width: 80px; }
  .moon { max-width: 80px; }
  .main-image { max-width: 200px; }
  .card { width: 80%; }
  .about-image { max-width: 80%; }
  .social-icons { flex-direction: column; gap: 10px; align-items: center; }
}
/* --- POPRAWKA rozmiaru chmur --- */
.cloud {
  max-width: 180px;
  height: auto;
  transition: transform 0.5s ease;
}

@media (max-width: 800px) {
  .cloud {
    max-width: 90px;
  }
}

/* --- POPRAWKA księżyc --- */
.moon {
  max-width: 120px;
  height: auto;
  transition: transform 0.5s ease;
}

@media (max-width: 800px) {
  .moon {
    max-width: 80px;
  }
}

/* --- MAIN IMAGE (strona_glowna.png) --- */
.main-image {
  max-width: 300px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 800px) {
  .main-image {
    max-width: 200px;
  }
}

/* --- LOGO (MENU) --- */
.menu-container .logo img {
  max-width: 100px;
  height: auto;
}

@media (max-width: 800px) {
  .menu-container .logo img {
    max-width: 80px;
  }
}

/* --- LOGO w KONTAKCIE --- */
.contact-logo {
  max-width: 100px;
  height: auto;
}

@media (max-width: 800px) {
  .contact-logo {
    max-width: 80px;
  }
}

/* --- SOCIAL ICONS --- */
.social-icons img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

@media (max-width: 800px) {
  .social-icons img {
    width: 40px;
  }
/* schowaj checkbox, będzie sterował tylko stanem menu */
#menu-toggle {
  display: none;
}

/* ukryj hamburgera na desktopie */
.hamburger {
  display: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 1px;
  transition: background-color .3s ease;
}
	@media (max-width: 800px) {
  /* pokaż hamburgera */
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    z-index: 1100;
  }

  /* menu: od pozycji assolute będzie się rozwijać */
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #28469B 0%, #171B35 100%);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    z-index: 1000;
  }

  .menu li {
    width: 100%;
  }
  .menu li a {
    display: block;
    padding: 1.2rem 0;
    text-align: center;
  }

  /* kiedy checkbox jest checknięty — rozwijamy menu */
  #menu-toggle:checked ~ .menu {
    max-height: 500px; /* dostosuj do ilości punktów */
  }
	}
	 }
	