@charset "UTF-8";
/* Główne style strony */
@import url("colors.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
html {
  font-size: 18px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1919px) {
  html {
    font-size: 16px;
  }
}

body {
  background: var(--background-main);
  color: var(--font-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  overflow-y: scroll;
}

#season-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#glasslights-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24vh;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
#glasslights-effect svg {
  width: 100vw;
  height: 100%;
  overflow: visible;
  transform: translateY(-80px);
  display: block;
}

.glasslights-wire {
  fill: none;
  stroke: #05140a;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 12 3;
}

@keyframes glasslights-bulb-brighten {
  0% {
    opacity: 0.95;
    filter: brightness(1.25);
  }
  12% {
    opacity: 1;
    filter: brightness(1.5);
  }
  24% {
    opacity: 0.96;
    filter: brightness(1.3);
  }
  38% {
    opacity: 1;
    filter: brightness(1.55);
  }
  52% {
    opacity: 0.95;
    filter: brightness(1.28);
  }
  66% {
    opacity: 1;
    filter: brightness(1.5);
  }
  82% {
    opacity: 0.97;
    filter: brightness(1.32);
  }
  100% {
    opacity: 1;
    filter: brightness(1.55);
  }
}
@keyframes glasslights-filament-pulse {
  0% {
    opacity: 0.92;
    filter: brightness(2.45);
  }
  16% {
    opacity: 1;
    filter: brightness(2.9);
  }
  32% {
    opacity: 0.95;
    filter: brightness(2.55);
  }
  48% {
    opacity: 1;
    filter: brightness(3.05);
  }
  64% {
    opacity: 0.95;
    filter: brightness(2.6);
  }
  80% {
    opacity: 1;
    filter: brightness(3.15);
  }
  100% {
    opacity: 0.97;
    filter: brightness(2.75);
  }
}
@keyframes glasslights-emission-flicker {
  0% {
    opacity: 0.62;
    filter: brightness(1.15);
  }
  16% {
    opacity: 0.74;
    filter: brightness(1.35);
  }
  32% {
    opacity: 0.6;
    filter: brightness(1.18);
  }
  48% {
    opacity: 0.76;
    filter: brightness(1.4);
  }
  64% {
    opacity: 0.63;
    filter: brightness(1.2);
  }
  80% {
    opacity: 0.74;
    filter: brightness(1.38);
  }
  100% {
    opacity: 0.67;
    filter: brightness(1.25);
  }
}
.glasslights-bulb {
  animation: glasslights-bulb-brighten var(--dur) infinite ease-in-out;
  will-change: filter, opacity;
  filter: brightness(1.4) drop-shadow(0 0 4px rgba(255, 255, 255, 0.12)) drop-shadow(0 0 9px rgba(255, 255, 255, 0.1));
  animation-fill-mode: both;
}

.glasslights-emission {
  opacity: 0.7;
  filter: brightness(1.25) saturate(1.2) drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
  animation: glasslights-emission-flicker var(--dur) infinite ease-in-out both;
  mix-blend-mode: screen;
}

.glasslights-filament-dot,
.glasslights-filament-core {
  animation: glasslights-filament-pulse var(--dur) infinite ease-in-out;
  will-change: opacity, filter;
  animation-fill-mode: both;
}

.glasslights-filament-core {
  mix-blend-mode: screen;
  opacity: 0.95;
  filter: brightness(1.6) drop-shadow(0 0 3px rgba(255, 255, 255, 0.18)) drop-shadow(0 0 7px rgba(255, 255, 255, 0.12));
}

.glasslights-socket {
  fill: #081a0e;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--font-title);
}

h2 {
  text-transform: uppercase;
  color: var(--font-title);
}

@media (max-width: 768px) {
  h1 {
    margin: 0 !important;
  }
  h2 {
    margin: 0 !important;
  }
}
header {
  text-align: center;
  z-index: 1;
}

nav {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 900;
  margin-bottom: 2rem;
  background-color: var(--background-main);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 5px 15px;
  transition: box-shadow 0.2s ease;
  /* Pełny language switcher – wyświetlany w desktopowej wersji, domyślnie */
  /* Dropdown z ikoną globu – dla desktopowych ekranów poniżej 1880px */
}
nav #sticky-trigger {
  position: absolute;
  top: -1px; /* Umieszczamy go minimalnie powyżej top: 0 */
  width: 100%;
  height: 1px;
}
nav .news-badge {
  position: relative;
  display: inline-block;
}
nav .badge-number {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--error-border);
  color: var(--error);
  border-radius: 50%;
  width: 21px; /* stała szerokość */
  height: 21px; /* stała wysokość */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.58rem;
  text-shadow: 1px 1px 1px var(--black);
}
@media (max-width: 1280px) {
  nav .badge-number {
    top: -5px;
    right: -5px;
  }
}
nav ul {
  list-style-type: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}
nav ul li {
  padding: 0;
  border-radius: 0.5rem;
  transition: all ease-in-out 0.2s;
  position: relative;
}
nav ul li a {
  color: var(--font-text);
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.8rem 2.2rem;
  text-align: center;
  border-radius: 0.5rem;
  transition: all ease-in-out 0.2s;
}
nav ul li a:hover {
  color: var(--font-title);
  background-color: var(--background-hover);
}
nav ul li a.active {
  color: var(--font-title);
  background-color: var(--background-hover);
  box-shadow: inset 0 -2px 0 var(--button-bg);
  font-weight: 600;
}
@media (max-width: 1920px) {
  nav ul {
    gap: 1rem;
  }
}
nav .theme-div label {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .theme-div input {
  position: absolute;
  opacity: 0;
}
nav .theme-div input:checked ~ .toggle {
  background: var(--background-main);
}
nav .theme-div input:checked ~ .moon {
  color: var(--font-text);
  transform: rotate(360deg) scale(0);
  transition-delay: 0;
}
nav .theme-div input:checked ~ .sun {
  transition-delay: 0.2s;
  transform: scale(1) rotate(360deg);
}
nav .theme-div .sun {
  position: absolute;
  font-size: 1.5rem;
  color: var(--font-text);
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  transform: scale(0);
  transition: 0.3s ease;
}
nav .theme-div .moon {
  font-size: 1.5rem;
  color: var(--font-text);
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  transition: 0.3s ease;
  transition-delay: 0.2s;
}
nav .theme-div .toggle {
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--background-main);
  border-radius: 50%;
  box-shadow: inset 0 8px 1px rgba(0, 0, 0, 0.1), inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: 0.3s;
}
nav .language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .language-switcher.desktop {
  display: flex;
}
nav .lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--font-text);
  background: var(--light-bg);
  padding: 5px 10px;
  border-radius: 0.5rem;
  transition: 0.3s ease-in-out;
}
nav .lang-option img {
  width: 20px;
  height: 14px;
  margin-right: 5px;
  border-radius: 0.2rem;
}
nav .lang-option:hover {
  background: var(--background-hover);
}
nav .language-dropdown.desktop {
  display: none;
  position: relative;
}
nav .language-dropdown.desktop .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--font-text);
  display: flex;
  align-items: center;
}
nav .language-dropdown.desktop .dropdown-toggle ion-icon {
  font-size: 1.5rem;
}
nav .language-dropdown.desktop .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 120%;
  background: var(--background-main);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  z-index: 999;
}
nav .language-dropdown.desktop .dropdown-menu a {
  display: flex;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--font-text);
  transition: background 0.2s ease;
}
nav .language-dropdown.desktop .dropdown-menu a:hover {
  background: var(--background-hover);
}

/* ---------------------------- */
/* Media Queries dla language options */
/* ---------------------------- */
/* Domyślnie (powyżej 1880px): pełny switcher desktop widoczny, dropdown ukryty, mobilny ukryty */
.language-switcher.desktop {
  display: flex;
}

.language-dropdown.desktop {
  display: none;
}

.language-switcher.mobile {
  display: none;
}

/* Dla ekranów poniżej 1880px (do 1480px): ukrywamy pełny switcher desktop i pokazujemy dropdown (globe) */
@media (max-width: 1880px) {
  nav .language-switcher.desktop {
    display: none;
  }
  nav .language-dropdown.desktop {
    display: flex;
  }
}
/* Dla ekranów poniżej 1480px: dropdown ukrywamy, pokazujemy pełny switcher mobilny */
@media (max-width: 1280px) {
  nav .language-dropdown.desktop {
    display: none;
  }
  nav .language-switcher.mobile {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  nav {
    margin-bottom: 1rem;
  }
}
/* ---------------------------- */
/* Nowe style – Mobile Navigation */
/* ---------------------------- */
/* Mobilny nagłówek z przyciskiem hamburgera */
.nav-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background-main);
  position: sticky;
  top: 0;
  z-index: 900;
}

/* Panel mobilnego menu – wysuwany z prawej strony */
.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--background-main);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 800;
  padding: 1rem;
  overflow-y: auto;
}
.mobile-menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu-panel ul li a {
  text-decoration: none;
  color: var(--font-text);
  font-size: 1rem;
  display: block;
  padding: 0.7rem 1.2rem;
  transition: background 0.2s ease;
}
.mobile-menu-panel ul li a:hover {
  background: var(--background-hover);
}
.mobile-menu-panel ul li a.active {
  background: var(--background-hover);
  color: var(--font-title);
  box-shadow: inset 0 0 0 1px var(--button-bg);
  font-weight: 600;
}

/* Przycisk hamburgera w mobilnym nagłówku */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--font-text);
  cursor: pointer;
}

/* Przycisk zamknięcia panelu mobilnego */
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--font-text);
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Pełny language switcher dla mobilnych – wyświetlany w panelu mobilnym */
.language-switcher.mobile {
  display: none;
  align-items: center;
  gap: 10px;
}

/* ---------------------------- */
/* Media query dla Mobile Navigation */
/* ---------------------------- */
@media (max-width: 1280px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }
  .mobile-menu-panel {
    display: flex;
    align-items: center;
    z-index: 999;
  }
}
.container {
  min-height: 100vh;
  position: relative;
  width: 100%;
}

.flag {
  height: 20px;
  background: #d4213d;
  background: linear-gradient(0deg, rgb(212, 33, 61) 50%, rgb(233, 232, 231) 50%);
  box-shadow: 0px 3px 8px var(--dark);
  border-radius: 0.4rem;
  margin: 0 auto;
  width: 80%;
  max-width: 2500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .flag {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .flag {
    width: 95%;
    max-width: 2500px;
    margin: 0 auto;
    padding: 10px;
  }
}

main {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 400px;
}
main .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
main .swap-button {
  background: var(--background-hover);
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 3px 8px var(--dark);
  font-size: 20px;
  color: var(--font-title);
}
main .swap-button:hover {
  background: var(--background-sub);
  box-shadow: 0px 3px 12px var(--dark);
  transform: scale(1.1);
}
main .swap-button.pressed {
  animation: pressAnimation 0.2s ease-in-out;
}
main .swap-button ion-icon {
  font-size: 26px;
  color: var(--font-title);
  transition: transform 0.3s ease-in-out;
}
main .swap-button:hover ion-icon {
  transform: rotate(180deg);
}
main #live-cams {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  width: 80%;
  max-width: 2500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  main #live-cams {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  main #live-cams {
    width: 95%;
    max-width: 2500px;
    margin: 0 auto;
    padding: 10px;
  }
}
main #live-cams .grid-container {
  display: grid;
  grid-template-columns: calc(70% - 5px) calc(30% - 5px);
  grid-template-rows: auto 1fr;
  gap: 10px;
  width: 100%;
  height: 100%;
  /* Wspólny styl */
  /* Główna kamera */
  /* Kamera 2 */
  /* Iframe dopasowujący się do kontenera */
  /* Responsywność */
}
main #live-cams .grid-container .chat, main #live-cams .grid-container .camera-secondary, main #live-cams .grid-container .camera-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
main #live-cams .grid-container .camera-primary {
  grid-row: span 2;
  padding-top: 56.25%;
  border-radius: 1rem;
  box-shadow: 0px 3px 8px var(--dark);
}
main #live-cams .grid-container .camera-secondary {
  aspect-ratio: 16/9;
  grid-column: 2;
  grid-row: 1;
  border-radius: 1rem;
  box-shadow: 0px 3px 8px var(--dark);
}
main #live-cams .grid-container .chat {
  background-color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  color: var(--font-text);
  height: 100%;
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  border-radius: 1rem;
  box-shadow: 0px 3px 8px var(--dark);
  min-height: 380px;
}
@media (max-width: 1280px) {
  main #live-cams .grid-container .chat {
    height: 600px;
  }
}
main #live-cams .grid-container .camera-primary iframe,
main #live-cams .grid-container .camera-secondary iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
main #live-cams .grid-container .camera-primary iframe,
main #live-cams .grid-container .camera-secondary iframe {
  border-radius: 1rem;
}
@media (max-width: 768px) {
  main #live-cams .grid-container .camera-primary,
  main #live-cams .grid-container .camera-secondary {
    padding-top: 56.25%;
  }
}
@media (max-width: 1280px) {
  main #live-cams .grid-container {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  main #live-cams {
    width: 95%;
  }
}

#addons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 80%;
  max-width: 2500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  /* 🔹 Dostosowanie dla różnych rozdzielczości */
}
@media (min-width: 3840px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  #addons {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  #addons {
    width: 95%;
    max-width: 2500px;
    margin: 0 auto;
    padding: 10px;
  }
}
#addons #latest-news {
  width: calc(30% - 5px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 350px;
}
#addons #latest-news .newest-article {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  box-shadow: 0px 3px 8px var(--dark);
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  max-height: 200px;
  margin: 10px 0;
}
#addons #latest-news .newest-article:hover {
  transform: scale(1.02);
  box-shadow: 0px 3px 8px var(--dark);
}
#addons #latest-news .newest-article .article-content {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}
#addons #latest-news .newest-article .article-content .newest-article-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.8rem;
}
#addons #latest-news .newest-article .article-content .newest-article-date {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}
#addons #latest-news .newest-article .article-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
#addons #latest-news .newest-article .article-content h3 a {
  color: var(--white);
  text-decoration: none;
}
#addons #latest-news .newest-article .article-content h3 a:hover {
  text-decoration: underline;
}
#addons #latest-news .newest-article .article-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 1px 1px 3px var(--dark);
}
@media (max-width: 1440px) {
  #addons .newest-article {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  #addons .newest-article {
    width: 70%;
  }
}
@media (max-width: 768px) {
  #addons .newest-article {
    width: 90%;
  }
}
#addons #weather-container {
  background: var(--background-sub);
  color: var(--font-text);
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  text-align: center;
  margin: 10px auto;
  box-shadow: 0px 3px 8px var(--dark);
}
#addons #weather-forecast {
  display: flex;
  justify-content: center;
}
#addons .weather-item {
  padding: 0.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--dark);
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-template-areas: "date date" "img temp";
}
@media (max-width: 1024px) {
  #addons .weather-item {
    padding: 0.5rem 0.5rem;
  }
}
#addons .weather-item:last-child {
  border: 0 !important;
}
#addons .weather-item .weather-date {
  grid-area: date;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 0.8rem;
}
#addons .weather-item img {
  grid-area: img;
  width: 2.5rem;
}
#addons .weather-item .weather-temp {
  grid-area: temp;
  font-weight: bold;
  color: var(--font-text);
  font-size: 1.6rem;
  margin-left: 3px;
  display: flex;
  align-items: center;
}
#addons .countdown-div .message {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
#addons .countdown-div .flip-clock-wrapper ul li a div div.inn {
  background-color: var(--background-sub) !important;
  color: var(--font-title) !important;
  text-shadow: none !important;
}
#addons .countdown-div .flip-clock-divider .flip-clock-label {
  color: var(--font-addnotation) !important;
  font-size: 1rem;
}
#addons .countdown-div .flip-clock-wrapper {
  zoom: 0.6;
}
@media (max-width: 1280px) {
  #addons {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem auto !important;
  }
  #addons .countdown-div .flip-clock-wrapper {
    zoom: 0.5;
  }
  #addons .mobile-center {
    text-align: center !important;
  }
}
#addons .donation-wrapper {
  width: 100%;
  text-align: center;
}
#addons .donation-wrapper .subtitle {
  padding-top: 0;
  padding-bottom: 1rem;
}
#addons .progress-container {
  background-color: var(--dark);
  border-radius: 1rem;
  height: 2rem;
  overflow: hidden;
  position: relative;
}
#addons .progress-container .progress-text {
  text-align: center;
  line-height: 2rem;
  color: var(--white);
  font-weight: bold;
  text-shadow: 0px 1px 2px var(--dark);
  z-index: 120;
  position: inherit;
}
#addons .progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgb(176, 19, 44) 0%, rgb(212, 33, 61) 33%, rgb(240, 50, 79) 100%);
  transition: width 1s ease;
  overflow: hidden;
  position: relative;
  margin-top: -2rem;
  z-index: 110;
}
#addons .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}
#addons .info-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--font-text);
  font-size: 0.9rem;
  font-weight: 700;
}
#addons .info-row .start-amount,
#addons .info-row .goal-amount {
  width: 80px;
  text-align: center;
}
@keyframes shine {
  from {
    left: -50%;
  }
  to {
    left: 100%;
  }
}

#sponsors {
  text-align: center;
  position: relative;
  background: transparent;
  width: 100%;
  background-color: var(--background-sub);
  box-shadow: inset 0px 0px 27px -14px var(--dark);
  /* Stylizacja kontenera przycisku */
}
#sponsors .swiper {
  width: 100%;
  padding: 20px 0;
}
#sponsors p {
  color: var(--font-addnotation);
  font-size: 0.9rem;
  padding-bottom: 2rem;
  padding-top: 0.5rem;
}
#sponsors .swiper-wrapper {
  display: flex;
  align-items: center;
}
#sponsors .sponsor-slider {
  margin: 0 auto;
  width: 80%;
  max-width: 2500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  #sponsors .sponsor-slider {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  #sponsors .sponsor-slider {
    width: 95%;
    max-width: 2500px;
    margin: 0 auto;
    padding: 10px;
  }
}
#sponsors .swiper-slide {
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sponsors .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
#sponsors .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s;
  filter: grayscale(30%) drop-shadow(0px 0px 1px var(--dark));
}
#sponsors .swiper-slide img:hover {
  filter: grayscale(0%) drop-shadow(1px 1px 1px var(--dark));
}
#sponsors .sponsor-button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  #sponsors .sponsor-button-container {
    margin-top: 0;
  }
}
#sponsors .sponsor-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  margin-top: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--button-bg);
  border-radius: 1rem;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 3px 8px var(--dark);
  text-shadow: 2px 2px 2px var(--dark);
}
#sponsors .sponsor-button:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
}
#sponsors .sponsor-button:active {
  transform: scale(0.95);
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
}
footer .footer-inner {
  width: 90%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
footer .footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
footer .footer-meta p {
  margin: 0;
}
footer .footer-visits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
footer .footer-visits__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-visits__label ion-icon {
  font-size: 1rem;
  color: var(--button-bg);
}
footer .footer-visits__count {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
@media (min-width: 900px) {
  footer .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  footer .footer-meta {
    align-items: flex-start;
  }
  footer .footer-visits {
    align-items: flex-end;
  }
}

.news-wrapper {
  margin: 0 auto;
  width: 80%;
  max-width: 1800px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  margin: 0 auto;
}
@media (min-width: 3840px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .news-wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .news-wrapper {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 10px;
  }
}
.news-wrapper .new-indicator {
  width: 8px;
  height: 8px;
  background: var(--error-border);
  border-radius: 50%;
  margin-left: 0.4rem;
  display: inline-block;
  position: relative;
  top: -2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(221, 57, 57, 0.15);
}
.news-wrapper .subtitle {
  text-align: center;
  margin-bottom: 0;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.news-wrapper h3 {
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
}
.news-wrapper .summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  text-align: center;
  margin: 1rem auto 2rem auto;
  background-color: var(--background-sub);
  border-radius: 1rem;
  box-shadow: 0px 3px 8px var(--dark);
  gap: 1rem;
  padding: 1rem;
  max-width: 400px;
  min-width: 250px;
}
.news-wrapper .summary .upper {
  text-transform: uppercase;
  font-weight: 600;
}
.news-wrapper .summary .young-count-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-wrapper .summary .young-count-wrapper .young-count {
  font-size: 4rem;
  font-weight: 700;
  color: var(--font-title);
  margin: -0.5rem 0;
}
.news-wrapper .season-filter {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.4rem;
  border-radius: 999px;
  background: var(--background-sub);
  border: 1px solid var(--background-hover);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .news-wrapper .season-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
}
.news-wrapper .season-filter .season-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--font-text);
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.news-wrapper .season-filter .season-btn:hover {
  background: var(--background-main);
  border-color: var(--button-bg);
  color: var(--font-hover);
}
.news-wrapper .season-filter .season-btn.active {
  background: var(--button-bg);
  color: var(--white);
  border-color: var(--button-bg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.news-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* 🔹 Responsywność */
}
.news-wrapper ul .news-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-wrapper ul .news-link:hover li {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.news-wrapper ul .news-link:hover li .article-content h2 {
  color: var(--font-title);
}
.news-wrapper ul .news-link:hover .image-container {
  filter: brightness(1);
}
.news-wrapper ul .news-link li {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  background: var(--background-sub);
  border: 1px solid var(--background-hover);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-height: 300px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  position: relative;
}
.news-wrapper ul .news-link li .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-main);
  width: 40%;
  max-width: 460px;
  transition: 0.2s color ease;
  transition: 0.2s filter ease;
  filter: brightness(0.9);
}
.news-wrapper ul .news-link li .article-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.news-wrapper ul .news-link li .article-content {
  padding: 2rem;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-wrapper ul .news-link li .article-content a {
  color: var(--link);
}
.news-wrapper ul .news-link li .article-content a:hover {
  color: var(--link-hover);
}
@media (max-width: 768px) {
  .news-wrapper ul .news-link li .article-content {
    width: 100%;
  }
}
.news-wrapper ul .news-link li .article-content .article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.news-wrapper ul .news-link li .article-content .article-header h2 {
  margin: 0;
  color: var(--font-text);
  transition: 0.2s color ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.2;
}
.news-wrapper ul .news-link li .article-content .article-header .views-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--font-addnotation);
  transition: 0.2s color ease;
}
.news-wrapper ul .news-link li .article-content .article-header .views-counter:hover {
  color: var(--font-text);
}
.news-wrapper ul .news-link li .article-content .article-header .views-counter ion-icon {
  font-size: 1.2rem;
}
.news-wrapper ul .news-link li .article-content p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-wrapper ul .news-link li .article-content small {
  display: block;
  font-size: 0.8rem;
  color: var(--font-addnotation);
}
.news-wrapper ul .news-link li .article-content small .edit-link {
  color: var(--font-text);
  text-decoration: none;
}
.news-wrapper ul .news-link li .article-content small .edit-link:hover {
  text-decoration: underline;
  color: var(--font-hover);
}
.news-wrapper ul .news-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: 0.2rem;
}
.news-wrapper ul .news-badge--draft {
  background: var(--background-draft);
  border: 1px solid var(--background-draft-hover);
  color: var(--font-title);
}
.news-wrapper ul .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--background-main);
  border: 1px solid var(--background-hover);
  color: var(--font-addnotation);
}
@media (max-width: 1024px) {
  .news-wrapper ul .news-link li {
    flex-direction: column;
    max-height: unset;
    min-width: 300px;
  }
  .news-wrapper ul .news-link li .article-content {
    width: 100%;
  }
  .news-wrapper ul .news-link li .image-container {
    width: 100%;
    max-width: unset;
    height: 200px;
    max-width: 100%;
  }
  .news-wrapper ul .news-link li .article-image {
    height: 100%;
  }
  .news-wrapper ul .news-link li .article-content {
    width: 100%;
  }
}

/* Drugi breakpoint */
@media (max-width: 768px) {
  .news-wrapper ul .news-link li {
    flex-direction: column;
  }
  .news-wrapper ul .news-link li .image-container {
    width: 100%;
    flex: none;
    max-height: 200px;
    overflow: hidden;
  }
}
.back-btn {
  margin: 1.2rem auto 0.6rem;
  width: 80%;
  max-width: 1300px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
@media (min-width: 3840px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .back-btn {
    width: 80%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
  }
}
@media (max-width: 478px) {
  .back-btn {
    width: 95%;
    max-width: 1300px;
    margin: 1.2rem auto 0.6rem;
    padding: 10px;
  }
}
.back-btn .left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.back-btn .left ion-icon,
.back-btn .left a {
  text-decoration: none;
  color: var(--link);
  font-weight: 600;
  transition: color 0.2s ease;
}
.back-btn .left:hover ion-icon, .back-btn .left:hover a {
  color: var(--link-hover);
}

.share {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.share-btn {
  background: var(--button-bg);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.share-btn:hover {
  background: var(--button-hover);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.share-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  display: none;
  padding: 0.5rem;
  border-radius: 0.8rem;
  background: var(--background-sub);
  border: 1px solid var(--background-hover);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  z-index: 20;
}
.share-menu a,
.share-menu button {
  background: none;
  border: 0;
  margin: 0 4px;
  font-size: 1.4rem;
  color: var(--link);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.share-menu a:hover,
.share-menu button:hover {
  color: var(--link-hover);
}

.share-menu.open {
  display: flex;
}

.share-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--font-addnotation);
  background: var(--background-main);
  border: 1px solid var(--background-hover);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* toast “Skopiowano do schowka” */
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 0.6rem 1.2rem;
  background: var(--background-hover);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  color: var(--font-text);
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  animation: fadeinout 2s forwards;
}

@keyframes fadeinout {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.single-news-hero {
  margin: 0 auto;
  width: 80%;
  max-width: 1300px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  position: relative;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--background-hover);
  background: var(--background-sub);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
@media (min-width: 3840px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .single-news-hero {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .single-news-hero {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px;
  }
}
.single-news-hero small {
  display: block;
  font-size: 0.8rem;
  color: var(--font-addnotation);
}
.single-news-hero small .edit-link {
  color: var(--font-text);
  text-decoration: none;
}
.single-news-hero small .edit-link:hover {
  text-decoration: underline;
  color: var(--font-hover);
}
.single-news-hero .image-wrap {
  background: var(--background-main);
  position: relative;
}
.single-news-hero .image-wrap img {
  display: block;
  border-radius: 1rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 800px;
}
.single-news-hero .image-wrap .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}
.single-news-hero .hero-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.85rem 1.2rem;
  border-radius: 0.9rem;
  max-width: calc(100% - 4rem);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.single-news-hero .hero-content h1 {
  font-size: 2rem;
  color: var(--white);
}
.single-news-hero .hero-content small {
  font-size: 0.9rem;
  color: var(--white);
}

.single-news-content {
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  margin: 0 auto;
  width: 80%;
  max-width: 1300px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 3840px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .single-news-content {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .single-news-content {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px;
  }
}
.single-news-content a {
  color: var(--link);
}
.single-news-content a:hover {
  color: var(--link-hover);
}
.single-news-content .single-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--background-sub);
  border: 1px solid var(--background-hover);
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.single-news-content .meta-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.single-news-content .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.9rem;
  color: var(--font-addnotation);
  background: var(--background-main);
  border: 1px solid var(--background-hover);
  border-radius: 999px;
}
.single-news-content .meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
}
.single-news-content .meta-badge--draft {
  background: var(--background-draft);
  border: 1px solid var(--background-draft-hover);
  color: var(--font-title);
}
.single-news-content .meta-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.single-news-content .edit-link--meta {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--background-main);
  border: 1px solid var(--background-hover);
  color: var(--font-text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.single-news-content .edit-link--meta:hover {
  color: var(--font-hover);
  border-color: var(--button-bg);
  background: var(--background-hover);
}
.single-news-content .single-news-card {
  background: var(--background-sub);
  border: 1px solid var(--background-hover);
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}
.single-news-content .single-news-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  color: var(--font-text);
}
.single-news-content .single-news-text p:first-of-type {
  font-size: 1.15rem;
  color: var(--font-title);
}
.single-news-content .subtitle {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}
.single-news-content .news-iframe {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--background-hover);
  background: var(--background-main);
}
.single-news-content .news-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.single-news-content .news-gallery {
  position: relative;
  margin: 0 auto;
  padding: 0.6rem;
  border-radius: 1rem;
}
.single-news-content .news-gallery .gallery-item {
  width: calc(33.333% - 1rem);
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
}
.single-news-content .news-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.single-news-content .news-gallery .gallery-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .single-news-content .news-gallery .gallery-item {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 480px) {
  .single-news-content .news-gallery .gallery-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .single-news-content .single-news-meta {
    align-items: flex-start;
  }
  .single-news-content .meta-actions {
    width: 100%;
  }
  .single-news-content .share {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .news-iframe {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .news-iframe iframe {
    border-radius: 0.5rem;
  }
}
.history-wrapper {
  color: var(--font-text);
  line-height: 1.6;
  margin: 0 auto;
  width: 80%;
  max-width: 1500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .history-wrapper {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .history-wrapper {
    width: 95%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px;
  }
}
.history-wrapper .intro-section {
  text-align: center;
  margin-bottom: 60px;
}
.history-wrapper .intro-section h1 {
  font-size: 2.8rem;
  color: var(--font-title);
  margin-bottom: 15px;
}
.history-wrapper .intro-section p {
  font-size: 1.2rem;
  color: var(--font-text);
  max-width: 700px;
  margin: 0 auto;
}
.history-wrapper .timeline-section {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.history-wrapper .timeline-section h2 {
  font-size: 2rem;
  color: var(--font-title);
  margin-bottom: 2rem !important;
  position: relative;
  text-align: center;
}
.history-wrapper .timeline-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--dark);
  margin-top: 10px;
}
.history-wrapper .timeline-section .timeline {
  position: relative;
  padding-left: 40px;
  border-left: 3px solid var(--background-hover);
  width: 40%;
}
@media (max-width: 1024px) {
  .history-wrapper .timeline-section .timeline {
    width: 80%;
  }
}
.history-wrapper .timeline-section .timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
}
.history-wrapper .timeline-section .timeline .timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: -90px;
  top: 5px;
  background: var(--dark);
  color: var(--font-title);
  padding: 5px 10px;
  border-radius: 0.5rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.history-wrapper .timeline-section .timeline .timeline-item .timeline-content {
  background: var(--background-sub);
  padding: 20px;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.history-wrapper .timeline-section .timeline .timeline-item .timeline-content:hover {
  transform: translateY(-5px);
}
.history-wrapper .timeline-section .timeline .timeline-item .timeline-content h3 {
  margin-bottom: 10px;
  color: var(--font-title);
  font-size: 1.4rem;
}
.history-wrapper .timeline-section .timeline .timeline-item .timeline-content p {
  margin-bottom: 15px;
}
.history-wrapper .timeline-section .timeline .timeline-item .timeline-content img {
  width: 100%;
  border-radius: 1rem;
  margin-top: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.history-wrapper .timeline-section .timeline .timeline-item .timeline-content img:hover {
  opacity: 0.9;
}
.history-wrapper .timeline-section .history-text-block {
  margin-top: 40px;
  font-size: 1.1rem;
  background: var(--background-sub);
  padding: 2rem;
  border-left: 5px solid var(--dark);
  border-radius: 1rem;
  text-align: justify;
}
.history-wrapper .timeline-section .history-text-block .inline-photo {
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.history-wrapper .timeline-section .history-text-block .inline-photo:hover {
  transform: scale(1.02);
}
.history-wrapper .testimonials-section {
  padding: 2rem 1rem;
  background: var(--background-sub);
  border-radius: 1rem;
  margin-bottom: 60px;
  text-align: center;
}
.history-wrapper .testimonials-section h2 {
  font-size: 2rem;
  color: var(--font-title);
  margin-bottom: 30px;
}
.history-wrapper .testimonials-section h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--dark);
  display: block;
  margin: 10px auto 0;
}
.history-wrapper .testimonials-section .testimonial {
  font-style: italic;
  color: var(--font-title);
  padding: 1rem;
  margin: 0 auto;
}
.history-wrapper .testimonials-section .testimonial p {
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 1rem;
  padding: 1rem;
}
.history-wrapper .testimonials-section .testimonial .author {
  display: block;
  font-weight: bold;
  color: var(--font-text);
  margin-bottom: 5px;
  font-style: normal;
  text-align: center;
}
.history-wrapper .testimonials-section .testimonial .duration {
  display: block;
  color: var(--font-addnotation);
  font-size: 0.9rem;
  font-style: normal;
  text-align: center;
}
.history-wrapper .testimonials-section .owl-nav button.owl-prev,
.history-wrapper .testimonials-section .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--button-bg) !important;
  color: var(--white);
  padding: 5px 15px !important;
  border-radius: 50%;
  transition: background 0.3s;
}
.history-wrapper .testimonials-section .owl-nav button.owl-prev:hover,
.history-wrapper .testimonials-section .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--button-hover) !important;
}
.history-wrapper .testimonials-section .owl-nav button.owl-prev {
  left: -30px;
}
.history-wrapper .testimonials-section .owl-nav button.owl-next {
  right: -30px;
}
.history-wrapper .testimonials-section .owl-dots {
  margin-top: 20px;
}
.history-wrapper .testimonials-section .owl-dots .owl-dot span {
  background: var(--background-sub) !important;
  transition: background 0.3s ease;
}
.history-wrapper .testimonials-section .owl-dots .owl-dot span:hover, .history-wrapper .testimonials-section .owl-dots .owl-dot span.active {
  background: var(--background-hover) !important;
}
@media (max-width: 768px) {
  .history-wrapper .timeline-section .timeline {
    padding-left: 25px;
  }
  .history-wrapper .timeline-section .timeline .timeline-item::before {
    left: -80px;
    top: -10px;
  }
  .history-wrapper .intro-section h1 {
    font-size: 2.2rem;
  }
  .history-wrapper .testimonials-section .testimonial p {
    font-size: 1rem;
  }
}

.contact-section {
  margin: 2rem auto;
  width: 80%;
  max-width: 1400px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  /* Responsywność: węższe ekrany - kolumny pionowo */
}
@media (min-width: 3840px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .contact-section {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (max-width: 478px) {
  .contact-section {
    width: 95%;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 10px;
  }
}
.contact-section .contact-header {
  margin-bottom: 2rem;
}
.contact-section .contact-header p {
  color: var(--font-addnotation);
  font-size: 1rem;
  padding: 0.5rem 0 0 0;
  text-align: center;
}
.contact-section .contact-header h2 {
  padding-top: 2rem;
  text-align: center;
}
.contact-section .contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-start;
  min-height: 600px;
  margin: 3rem 0;
  box-shadow: 0 2px 5px var(--dark);
  border-radius: 1rem;
}
.contact-section .contact-content .form-column {
  flex: 3;
  background: var(--background-sub);
  padding: 3rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
@media (max-width: 768px) {
  .contact-section .contact-content .form-column {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.contact-section .contact-content .form-column h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--font-text);
}
.contact-section .contact-content .form-column form {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-content .form-column form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-section .contact-content .form-column form .row .field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-section .contact-content .form-column form .field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.contact-section .contact-content .form-column form .field label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-section .contact-content .form-column form .field input,
.contact-section .contact-content .form-column form .field textarea {
  padding: 0.8rem;
  box-shadow: 0 1px 3px var(--dark);
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  background-color: var(--background-main);
  color: var(--font-text);
  outline: none;
}
.contact-section .contact-content .form-column form .field input:active, .contact-section .contact-content .form-column form .field input:focus,
.contact-section .contact-content .form-column form .field textarea:active,
.contact-section .contact-content .form-column form .field textarea:focus {
  outline: 1px solid var(--button-bg);
}
.contact-section .contact-content .form-column form .field textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-section .contact-content .form-column form button {
  align-self: flex-start;
  padding: 0.8rem 1.5rem;
  background: var(--button-bg);
  border: none;
  border-radius: 1rem;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 700;
  text-shadow: 2px 2px 2px var(--dark);
}
.contact-section .contact-content .form-column form button:hover {
  background: var(--button-hover);
}
.contact-section .contact-content .map-column {
  flex: 2;
  background: var(--background-main);
  min-height: 400px;
}
.contact-section .contact-content .map-column iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media (max-width: 768px) {
  .contact-section .contact-content .map-column iframe {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-content {
    flex-direction: column;
  }
  .contact-section .contact-content .form-column,
  .contact-section .contact-content .map-column {
    width: 100%;
  }
  .contact-section .contact-content .map-column,
  .contact-section .contact-content .map-column iframe {
    height: 400px;
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-content {
    flex-direction: column;
  }
  .contact-section .contact-content .form-column,
  .contact-section .contact-content .map-column {
    max-width: 100%;
  }
}

.donate-section {
  margin: 0 auto;
  width: 80%;
  max-width: 2500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .donate-section {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .donate-section {
    width: 95%;
    max-width: 2500px;
    margin: 0 auto;
    padding: 10px;
  }
}

.donate-header {
  text-align: center;
  margin-bottom: 2rem;
}
.donate-header p {
  font-size: 1rem;
  color: var(--font-addnotation);
}

/* Wrapper na kolumny */
.donate-content {
  margin: 0 auto;
  width: 80%;
  max-width: 1500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1rem;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 3rem;
}
@media (min-width: 3840px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .donate-content {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
  }
}
@media (max-width: 478px) {
  .donate-content {
    width: 95%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px;
  }
}
.donate-content .section-title {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--font-title);
}
.donate-content .payment-box {
  background: var(--background-sub);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px var(--dark);
}
.donate-content .payment-box h3 {
  color: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.donate-content .payment-box p {
  font-size: 1rem;
  color: var(--font-text);
  text-align: left;
}
.donate-content .payment-box strong {
  font-size: 1.2rem;
  color: var(--font-title);
}
.donate-content .sponsor-info {
  background: var(--background-sub);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 5px var(--dark);
  grid-column: 1/-1;
  text-align: left;
}
.donate-content .sponsor-info h2 {
  padding-bottom: 1rem;
  text-align: center;
  color: var(--font-title);
}
.donate-content .sponsor-info h3 {
  padding: 1rem 0;
  color: var(--font-title);
}
.donate-content .sponsor-info ul,
.donate-content .sponsor-info ol {
  margin-left: 2rem;
  font-size: 1rem;
  color: var(--font-text);
}
.donate-content .sponsor-info ul {
  list-style-type: disc;
}
.donate-content .sponsor-info ol {
  list-style-type: decimal;
}
@media (max-width: 768px) {
  .donate-content {
    grid-template-columns: 1fr;
  }
  .donate-content .section-title {
    grid-column: auto;
  }
  .donate-content .sponsor-info {
    margin: 0 auto;
  }
}

.contact-extra {
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem auto;
  width: 80%;
  max-width: 1400px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .contact-extra {
    width: 80%;
    max-width: 1400px;
    margin: 2rem auto;
  }
}
@media (max-width: 478px) {
  .contact-extra {
    width: 95%;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 10px;
  }
}
.contact-extra h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--font-title);
}
.contact-extra .icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.contact-extra .icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}
.contact-extra .icon-col ion-icon {
  font-size: 2rem;
  transition: color 0.3s ease-in-out;
}
.contact-extra .icon-col span {
  font-size: 1rem;
  text-align: center;
  color: var(--font-text);
  margin-bottom: 2rem;
}
.contact-extra .icon-col:hover {
  transform: translateY(-3px);
}
.contact-extra .icon-col:nth-child(1) ion-icon {
  color: #198d36;
}
.contact-extra .icon-col:nth-child(2) ion-icon {
  color: #e49e3d;
}
.contact-extra .icon-col:nth-child(3) ion-icon {
  color: #0e5bad;
}
.contact-extra .icon-col:nth-child(4) ion-icon {
  color: #c20b14;
}
.contact-extra .icon-col:hover ion-icon {
  color: var(--font-hover);
}
@media (max-width: 1280px) {
  .contact-extra .icon-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-extra .icon-row {
    grid-template-columns: 1fr;
  }
}

.subtitle {
  text-align: center;
  margin: 0;
}

.error-alert {
  background-color: var(--error-bg);
  color: var(--error);
  border: 1px solid var(--error-border);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 1rem;
  font-size: 1rem;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.success-alert {
  background-color: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 1rem;
  font-size: 1rem;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.wrapper {
  margin: 0 auto 400px auto;
  width: 80%;
  max-width: 2500px;
  /* 🔹 4K (3840x2160) */
  /* 🔹 Ultrawide 3440px */
  /* 🔹 1440p (2560x1440) */
  /* 🔹 Full HD 1080p (1920x1080) */
  /* 🔹 720p (1366x768) */
  /* 🔹 Tablety (1024px - 1365px) */
  /* 🔹 Małe tablety (768px - 1023px) */
  /* 🔹 Telefony (480px - 767px) */
  /* 🔹 Małe telefony (320px - 479px) */
}
@media (min-width: 3840px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 1366px) and (max-width: 1919px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .wrapper {
    width: 80%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
  }
}
@media (max-width: 478px) {
  .wrapper {
    width: 95%;
    max-width: 2500px;
    margin: 0 auto 400px auto;
    padding: 10px;
  }
}

.center {
  text-align: center;
}

.padding-mid, .subtitle {
  padding: 2rem 0;
}

.padding-large {
  padding: 3rem 0;
}

.padding-extra {
  padding: 5rem 0;
}

nav.sticky-shadow {
  box-shadow: 0 1px 5px var(--dark);
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--button-bg);
  color: var(--white);
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
  font-size: 1rem;
  border: none;
}
.btn:hover {
  background: var(--button-hover);
}

@keyframes pressAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
    background: var(--dark);
    box-shadow: 0px 2px 6px var(--black);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */