@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

/* navbar napis po lewej */
@keyframes zoom-in {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* navbar opcje */
@keyframes navFadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

html {
  background-color: #223b00 !important;
  height: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

body {
  background: rgb(56, 98, 0);
  background: radial-gradient(circle, rgba(56, 98, 0, 1) 0%, rgba(34, 59, 0, 1) 100%);
  font-family: 'Teko', sans-serif;
  min-height: 100vh;
  overscroll-behavior-y: none; 
}

/* mapa, Flexbox centrowanie mapy */
#map-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 0px);
  padding: 75px 0 50px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  flex-direction: column;
  background: radial-gradient(circle, rgba(56, 98, 0, 1) 0%, rgba(34, 59, 0, 1) 100%);
}

#map {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 990px) {
  #map-section {
    padding: 75px 0 0 0;
  }
}

span {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

/* napis mapawedkarza.pl */
.logo-animated {
  font-family: 'Teko', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  transition: font-weight 0.3s ease-in-out, transform 0.3s ease-in-out;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  animation: zoom-in 0.6s ease-out;
}

.logo-animated span {
  color: rgb(85, 72, 0);
  font-weight: bold;
  text-shadow: 2px 0px 12px #000000e5;
}

.logo-animated:hover {
  font-weight: 600;
  transform: scale(0.95);
}

.logo-animated span {
  font-size: 2rem;
  color: gold;
  text-transform: uppercase;
}

/* navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgb(56, 98, 0);
  background: radial-gradient(circle, rgba(56, 98, 0, 1) 0%, rgba(34, 59, 0, 1) 100%);
}

.navbar-nav .nav-link {
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 2px 0px 4px #000000;
  transition: font-weight 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.4s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: navFadeIn 0.5s ease forwards;
  margin-left: 0px;
}

.navbar-nav .nav-link:hover {
  font-weight: 650;
  transform: scale(1.05);
  color: #ffd700;
}

/* opoznienie animacji dla kolejnych elementów navbara */
.navbar-nav .nav-item:nth-child(1) .nav-link {
  animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(2) .nav-link {
  animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(3) .nav-link {
  animation-delay: 0.3s;
}

.navbar-nav .nav-item:nth-child(4) .nav-link {
  animation-delay: 0.4s;
}

.navbar-nav .nav-item:nth-child(5) .nav-link {
  animation-delay: 0.5s;
}

.navbar-nav .nav-item:nth-child(6) .nav-link {
  animation-delay: 0.9s;
}

.nav-effect {
  opacity: 0;
  transform: scale(0.8);
  animation: navFadeIn 0.3s ease-out forwards;
  animation-delay: 0.1s;
}

/* opcje z listy typu lowisk */
.custom-select {
  text-shadow: 2px 0px 2px #000000;
  position: relative;
  width: 280px;
  font-family: 'Teko', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffd700;
  background-color: transparent;
  border-radius: 1px;
  cursor: pointer;
  user-select: none;
  overflow: visible;
  transition: background-color 0.3s ease;
  text-align: center;
}

.custom-select-trigger {
  padding: 0.5rem 0rem;
  background-color: transparent;
}

.custom-options {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  background-color: transparent;
  text-align: left;
}

.custom-select.open .custom-options {
  max-height: 300px;
  opacity: 1;
}

.custom-option {
  padding: 0.7rem 1rem;
  border-top: 1px solid #0e380b;
  transition: background-color 0.2s ease;
}

.custom-option:hover {
  background-color: #0e380b4d;
}

.option-icon {
  width: 46px;
  height: 46px;
  margin-right: 8px;
  vertical-align: middle;
}

/* animacja rozwiniecia listy tpu lowisk */
@keyframes fadeInOption {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-select.open .custom-option {
  opacity: 0;
  animation: fadeInOption 0.3s ease forwards;
}

.custom-select.open .custom-option:nth-child(1) {
  animation-delay: 0.05s;
}

.custom-select.open .custom-option:nth-child(2) {
  animation-delay: 0.1s;
}

.custom-select.open .custom-option:nth-child(3) {
  animation-delay: 0.15s;
}

.custom-select.open .custom-option:nth-child(4) {
  animation-delay: 0.2s;
}

.custom-select.open .custom-option:nth-child(5) {
  animation-delay: 0.25s;
}

.custom-select.open .custom-option:nth-child(6) {
  animation-delay: 0.35s;
}

/* wyswietlanie listy navbara w pionie dla widoku mobilnego */
@media (max-width: 990px) {
  .custom-option {
    text-align: right;
  }
}

@media (max-width: 990px) {
  .navbar-nav {
    text-align: right;
  }

  .navbar-nav .nav-item {
    display: block;
    text-align: right;
  }

  .navbar-nav .nav-link {
    text-align: right;
  }

  .custom-select {
    text-align: right;
  }

  .custom-select-trigger {
    text-align: right;
  }

  .custom-option {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
    padding-right: 64px;
  }

  .option-icon {
    position: absolute;
    right: 0;
    margin-left: 8px;
  }
}

@media (max-width: 990px) {
  .custom-select {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
  }

  #filter-title,
  .filter-label,
  .custom-select-label {
    text-align: right;
    display: block;
  }
}

/* wyswietlana wartosc w liscie z typem lowisk */
#selectedValue {
  display: inline-block;
  transition: font-weight 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  color: #ffd700;
  font-size: 2.0rem;
  text-shadow: 2px 0px 4px #000000;
}

#selectedValue:hover {
  font-weight: 630;
  transform: scale(1.0);
  color: #ffffff;
}

.custom-select.open #selectedValue {
  color: #ffeb7a;
  text-shadow: 0px 0px 10px #fbff00;
}

/* hamburger */
.navbar-toggler {
  border: 1px solid gold;
  background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='gold' viewBox='0 0 30 30'><path stroke='gold' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

/* licznik lowisk */
.marker-counter-fixed {
  align-self: flex-start;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 1.0rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  background-color: rgba(0, 0, 0, 0);
  padding: 0px 8px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.marker-count {
  text-shadow: 2px 0px 4px #000000;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-left: 4px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.marker-count.animate {
  transform: scale(1.3);
  color: gold;
}

/* przycisk przewiniecia strony w dol */
.scroll-down-btn {
  animation: pulse 2s infinite;
}

.scroll-down-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  transform: scale(1.2);
}

.scroll-down-btn {
  background-color: rgba(34, 59, 0, 1);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px #ffd9002f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-down-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.scroll-down-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffd700;
}

/* przyciski obslugi mapy leaflet */
.leaflet-control {
  background-color: rgba(255, 255, 255, 0) !important;
}

.leaflet-control-zoom {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font-family: sans-serif !important;
  background-color: #ffffff !important;
  text-shadow: none !important;
  border: 2px solid rgba(34, 59, 0, 1) !important;
  border-radius: 50% !important;
  color: #000 !important;
  font-size: 1.5rem !important;
  font-weight: bold;
  width: 40px !important;
  height: 40px !important;
  line-height: 36px !important;
  text-align: center;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.leaflet-control-locate {
  background-color: #ffffff !important;
  border: 2px solid rgba(34, 59, 0, 1) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover,
.leaflet-control-locate:hover,
.leaflet-control-locate:hover {
  background-color: #fff9e6 !important;
  color: #ffd700 !important;
  transform: scale(1.05);
  cursor: pointer;
}

.leaflet-control-geocoder {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.leaflet-control-geocoder-icon {
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 2px solid rgba(34, 59, 0, 1) !important;
  border-radius: 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: scale(1.3);
  margin-top: 6px;
}

/* pole do wpisywania tekstu wyszukiwania lokalizacji */
.leaflet-control-geocoder-form input {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid transparent !important;
  color: #000 !important;
  padding: 8px !important;
  border-radius: 4px !important;
  margin: 5px !important;
  width: 260px !important;
}

.leaflet-control-geocoder-form input:focus {
  outline: none !important;
  border-color: rgba(34, 59, 0, 1) !important;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.leaflet-control-geocoder .leaflet-control-geocoder-icon svg {
  fill: white !important;
}

.leaflet-control-geocoder .leaflet-control-geocoder-icon:hover {
  background-color: #fff9e6 !important;
  transform: scale(1.4);
  cursor: pointer;
}

/* lista wynikow pod polem wyszukiwania */

/* kontener listy */
.leaflet-control-geocoder-alternatives {
  background-color: rgba(244, 255, 227, 0.884) !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 1.3rem !important;
  border-radius: 4px !important;
  padding: 0 !important;
  margin-top: 0px !important;
  list-style: none !important;
  width: 300px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

/* pojedynczy wynik na liscie */
.leaflet-control-geocoder-alternatives li {
  padding: 8px 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  cursor: pointer;
}

/* ostatni element bez linii na dole */
.leaflet-control-geocoder-alternatives li:last-child {
  border-bottom: none !important;
}

.leaflet-control-geocoder-alternatives li:hover,
.leaflet-control-geocoder-selected {
  background-color: #ffd700 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* styl dla komunikatu bledu (gdy nie znajdzie adresu) */
.leaflet-control-geocoder-error {
  background-color: rgba(34, 59, 0, 0.95) !important;
  color: #ff5353 !important;
  padding: 10px !important;
  border-radius: 4px !important;
  margin-top: 5px !important;
}

/* rozwijanie tekstu w dol, gdy sie nie miesci*/

.leaflet-control-geocoder-alternatives li {
  padding: 14px 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px !important;
  cursor: pointer;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  transition: all 0.3s ease;
}

.leaflet-control-geocoder-alternatives li:hover {
  white-space: normal !important;
  background-color: #efffa8 !important;
  color: #0c1d00 !important;
  overflow: visible !important;
}

/* pokaz tylko pierwsze 3 wyniki */
.leaflet-control-geocoder-alternatives li:nth-child(n+9) {
  display: none !important;
}

/* karta video */
.video-card-container {
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin: 30px auto 0 auto;
  max-width: 1000px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-card-container .social-links {
  margin-top: 10px;
}

/* sekcja z socialmediami */
.zdjlicznik {
  opacity: 100%;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-bottom: 0px;
  margin-top: -15px;
}

#social-panel h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #ffd700;
  margin-top: 45px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 6px black;
}

.social-links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-links a {
  transition: transform 0.3s ease;
}

.social-links img {
  width: 55px;
  height: 55px;
  filter: drop-shadow(0 0 6px #ffd700);
}

.social-links a:hover {
  transform: scale(1.2);
}

/* === SEPARATOR Z ANIMOWANĄ FALĄ === */
.animated-wave-separator {
  height: 1px;
  border: none;
  background-image: linear-gradient(90deg,
      #ffd700,
      #ffffff,
      #ffd700);
  background-size: 200% auto;
  animation: wave-text-animation 4s linear infinite;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* youtube lazy load*/
.video-container-wrapper {
  text-align: center;
  margin: 5px auto 28px auto;
  width: 90%;
  max-width: 800px;
}

.video-container-wrapper h4 {
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  background-image: linear-gradient(90deg,
      #ffd700,
      #ffffff,
      #ffd700
    );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: wave-text-animation 4s linear infinite;
}

.youtube-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.youtube-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: scale(1.03);
}

.youtube-player:hover .youtube-thumbnail {
  transform: scale(1.1);
}

.youtube-play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.youtube-player:hover .youtube-play-button-overlay {
  background: rgba(0, 0, 0, 0);
}

.youtube-play-icon {
  width: 80px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.youtube-player:hover .youtube-play-icon {
  opacity: 1;
  transform: scale(1.1);
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* sekcja z transparentnymi licznikami lowisk */
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #ffd700;
  margin-top: 0px;
  margin-bottom: 0px;
  text-shadow: 2px 2px 6px black;
}

.counter-box1 {
  background: linear-gradient(to right, #086600a4, #6d706486);
  color: whitesmoke;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
  height: 100px;
}

.counter-box2 {
  background: linear-gradient(to right, #004966a4, #6d706486);
  color: whitesmoke;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
  height: 100px;
}

.counter-box3 {
  background: linear-gradient(to right, #576600a4, #6d706486);
  color: whitesmoke;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
  height: 100px;
}

.counter-box1:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.counter-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.counter-box3:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 6px #000;
}

.counter-label {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 0px;
  letter-spacing: 1px;
  color: #ffd700;
  padding-bottom: 5px;
  opacity: 80%;
}

/* --- ikony w licznikach lowisk --- */


/* 1. Ustawienia bazy dla kafelków (żeby ikona nie uciekła poza ramkę) */
.counter-box1,
.counter-box2,
.counter-box3 {
    position: relative;
    overflow: hidden;
}

/* 2. Zabezpieczenie tekstów (żeby były NAD ikoną) */
.counter-box1 h3, .counter-box1 p,
.counter-box2 h3, .counter-box2 p,
.counter-box3 h3, .counter-box3 p {
    position: relative;
    z-index: 2;
}

/* 3. Wspólne ustawienia ikon (Prawy Górny Róg) */
.counter-box1::before,
.counter-box2::before,
.counter-box3::before {
    content: '';
    position: absolute;
    
    /* Pozycja: Lewy Górny Róg */
    top: -2px;
    left: -5px;
    
    width: 80px;   /* Dopasowany rozmiar do wysokości paska */
    height: 80px;
    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    
    opacity: 0.15; /* Delikatna przezroczystość */
    z-index: 1;
    
    /* Punkt startowy animacji: lewy górny róg */
    transform-origin: top left;
    transform: scale(1);
    transition: transform 0.5s ease;
}

/* 4. Przypisanie konkretnych ikonek (ścieżka wychodzi z folderu css/assets) */

/* Komercyjne (Zielone) */
.counter-box1::before {
    background-image: url('../../icons/icon_list_green.png');
}

/* PZW (Niebieskie) */
.counter-box2::before {
    background-image: url('../../icons/icon_list_blue.png');
}

/* Wszystkie (Złote) */
.counter-box3::before {
    background-image: url('../../icons/icon_counter.png');
}

/* 5. Animacja po najechaniu (Powiększenie) */
.counter-box1:hover::before,
.counter-box2:hover::before,
.counter-box3:hover::before {
    transform: scale(1.3);
}

#social-panel {
  background: linear-gradient(to right, #1c2c00, #112000);
  color: white;
  padding: 40px 20px;
  text-align: center;
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.3);
  scroll-margin-top: 80px;
}

/* sekcja z informacjami */
.about-section1 {
  background: linear-gradient(to right, #1a3100, #1e3000);
  color: #f8f8f8;
  padding: 80px 20px;
  padding-bottom: 1px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  box-shadow: none;
}

.about-section1 h2 {
  font-weight: 600;
  font-size: 2.0rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px black;
}

.about-section1 p {
  font-family: 'Roboto Condensed', sans-serif;
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-section1 strong {
  color: #ffffff;
  font-weight: 600;
}

.about-section2 {
  background: linear-gradient(to left, #1c3a00, #243a00);
  color: #f8f8f8;
  padding: 25px 25px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  box-shadow: none;
  padding-bottom: 1px;
}

.about-section2 p {
  font-family: 'Roboto Condensed', sans-serif;
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-section3 {
  background: linear-gradient(to right, #1f3b00, #2e4b00);
  color: #f8f8f8;
  padding: 25px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  box-shadow: none;
}

.about-section3 p {
  font-family: 'Roboto Condensed', sans-serif;
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-section4 {
  background: linear-gradient(to left, #284200, #365700);
  color: #f8f8f8;
  padding: 35px 35px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  box-shadow: none;
}

.about-section4 h2 {
  font-weight: 600;
  font-size: 2.0rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px black;
}

.about-section4 p {
  font-family: 'Roboto Condensed', sans-serif;
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-section4 strong {
  color: #ffffff;
  font-weight: 600;
}

.about-section4 a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #ffd700;
}


.about-section5 {
  background: linear-gradient(to left, #3d6600, #304e00);
  color: #f8f8f8;
  padding: 35px 35px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  box-shadow: none;
}

.about-section5 h2 {
  font-weight: 600;
  font-size: 2.0rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px black;
}

.about-section5 p {
  font-family: 'Roboto Condensed', sans-serif;
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-section5 strong {
  color: #ffffff;
  font-weight: 600;
}

.about-section5 a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #ffd700;
}

/* animacja fade-in dla sekcji */
.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* przycisk dark mode */
.theme-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 12px;
  scale: 0.8;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffe9e9a4;
  border-radius: 34px;
  transition: background-color 0.3s;
}

.toggle-label:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: gold;
  border-radius: 50%;
  transition: transform 0.3s;
}

#darkModeToggle:checked+.toggle-label {
  background-color: #1a1a1a;
}

#darkModeToggle:checked+.toggle-label:before {
  transform: translateX(24px);
}

/* ikona ulubione i zaloguj w menu */
.nav-link.icon-link {
  font-size: 1.3rem;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 11px;
  line-height: 28px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link.icon-link:hover {
  color: #ffd700;
  transform: scale(1.1);
}

.nav-link.icon-link.active-filter {
  color: #ff4d4d;
  text-shadow: 0 0 10px #ff0000;
}

/* okienko pop-up na mapie dla ulubionych i ocen */
.popup-favorite-icon {
  position: absolute;
  bottom: 8px;
  right: 1px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
  text-shadow: 0px 0px 3px #ff000086;
}

.popup-favorite-icon:hover {
  transform: scale(1.2);
  color: #ff9f9f;
}

.popup-favorite-icon.favorited {
  color: #ff4d4d;
}

.popup-favorite-icon.unauthenticated:hover {
  color: #ffd700;
}

/* kontener na oceny */
.rating-widget-container {
  border-top: 1px solid #dadada;
  padding-top: 10px;
  margin-top: 10px;
  text-align: center;
}

.rating-widget-container .avg-rating {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}

.rating-widget-container .avg-rating strong {
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
}

.rating-stars {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  color: #ccc;
  cursor: pointer;
}

.rating-stars span.star {
  padding: 0 2px;
  transition: color 0.2s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.rating-stars:hover span.star {
  color: #ffd700;
}

.rating-stars span.star:hover~span.star {
  color: #ccc;
}

/* ocena juz wybrana */
.rating-stars[data-user-rating="1"] span.star:nth-child(-n+1),
.rating-stars[data-user-rating="2"] span.star:nth-child(-n+2),
.rating-stars[data-user-rating="3"] span.star:nth-child(-n+3),
.rating-stars[data-user-rating="4"] span.star:nth-child(-n+4),
.rating-stars[data-user-rating="5"] span.star:nth-child(-n+5) {
  color: #ffd700;
}

/* przycisk 'x' w okienku pop-up */
.leaflet-popup-close-button {
  text-shadow: none !important;
  font-size: 1.6rem !important;
  padding: 0px 24px 0 0 !important;
  transition: transform 0.2s ease, color 0.2s ease;
  opacity: 60%;
}

.leaflet-popup-close-button:hover {
  color: #000 !important;
  transform: scale(1.2);
}

/* podpowiedzi */
.tip-box {
  position: fixed;
  top: 64px;
  right: 5px;
  background: #ffffff88;
  border: 2px solid #0e380b79;
  padding: 8px 5px;
  border-radius: 8px;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 600;
  color: #215300;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: float 2.5s ease-in-out infinite;
}

/* powiadomienia toast */
#toast-notification {
  visibility: hidden;
  min-width: 250px;
  background-color: rgba(12, 29, 0, 0.95);
  color: #ffd700;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #ffd700;
  opacity: 0;
  transition: opacity 0.5s ease, top 0.5s ease, visibility 0s linear 0.5s;
}

#toast-notification.show {
  visibility: visible;
  opacity: 1;
  top: 100px;
  transition: opacity 0.5s ease, top 0.5s ease, visibility 0s linear 0s;
}

/* preloader */
#global-preloader {
  background: rgb(56, 98, 0);
  background: radial-gradient(circle, rgb(22, 39, 0) 0%, rgb(17, 29, 0) 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffd700;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

#global-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

#global-preloader .preloader-logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0px;
}

#global-preloader .preloader-logo {
  font-size: 0;
}

.preloader-icon {
  width: 230px;
  height: auto;
}

/* wskaznik ladowania preloadera */
.loading-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ffd700;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

/* banner cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: radial-gradient(circle, rgba(55, 98, 0, 0.918) 0%, rgba(34, 59, 0, 0.932) 100%);
  color: #fff;
  z-index: 10000;
  padding: 10px 20px;
  font-family: 'Roboto Condensed', sans-serif;
  transition: transform 0.5s ease-in-out;
  transform: translateY(100%);
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  color: #ffffff;
  text-align: left;
}

.btn-cookie-accept {
  background-color: rgb(28, 48, 0);
  color: #ffffff;
  text-shadow: 2px 2px 10px black;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  padding: 8px 15px;
  margin-left: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  min-width: 150px;
}

.btn-cookie-accept:hover {
  background-color: #dba400;
}

/* responsywnosc bannera cookies */
@media (max-width: 990px) {
  .cookie-content {
    flex-direction: column;
  }

  .cookie-content p {
    margin-bottom: 10px;
    text-align: center;
  }

  .btn-cookie-accept {
    width: 100%;
    margin-left: 0;
  }
}

/* skakanie kropek w preloaderze */
@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1.0);
  }
}

/* skakajaca animacja podpowiedzi tipbox */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ukryj na desktopie */
@media (min-width: 990px) {
  .tip-box {
    display: none !important;
  }
}

/* animacja fali tekstu i separatora */
@keyframes wave-text-animation {

  from {
    background-position: 200% center;
  }

  to {
    background-position: 0% center;
  }
}