/* Podstawowy styl i czcionka z Google Fonts */
body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif !important;
  background-color: #FFEBD4;
  color: #333;
  font-size: 1.2em;
}




/* Reguła dla powiększonej czcionki */
.large-font {
  font-size: 1.4em;
}

/* GŁÓWNA SEKCJA */
.main-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  align-items: flex-start;  /* ← z powrotem na flex-start */
}

/* Każdy przycisk w menu */
.menu-btn {
  background: #fff;
  font-family: 'Quicksand', sans-serif !important;
  color: #02bd21;
  border: none;
  border-radius: 22px;
  padding: 12px 20px;
  font-size: 1rem;
  text-align: center !important;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  font-weight: bold !important;
}

.menu-btn:hover {
  background: #ffd9a5;       /* delikatny jaśniejszy odcień */
  transform: scale(1.03);
}

.menu-btn:hover {
  background: #81d4fa;
  transform: scale(1.03);
}


/* Sekcja content – przejrzysta i nowoczesna */
.content {
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
  background: #fffdf1 !important;
  border: 6px solid #FF8B53 !important;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: -65px;
  margin-right: 0;
  margin-bottom: 0;
  position: relative;
  overflow-y: visible;
  max-height: none;
}

/* Pozostałe style (Navbar, hero, stopka itd.) */

.navbar {
  position: fixed;
  font-family: 'Quicksand', sans-serif !important;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffffdf; /* Pełne, nieprzeźroczyste tło - możesz zmienić na inny kolor */
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffcc00;
  transform: scale(1.05);
}

.nav-link.active {
  background: white;
  color: black;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar .options {
  display: flex;
  gap: 10px;
  margin-right: 40px;
}

.navbar .options button {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.navbar .options button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  /* Przykład dla proporcji 16:9 – 56.25% to (9/16)*100% */
  padding-top: 43.25%;  
}

.hero-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('room11.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* DOLNY OBRAZ */
.full-width-image {
  width: 100%;
  height: 700px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Zmiana z fixed na scroll */
}

/* Stopka */
.footer {
  width: 100%;
  padding: 20px;
  background: #fff;
  text-align: center;
  border-top: 2px solid #ddd;
  font-style: italic;
}

/* Responsywność */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }
  .sidebar, .content {
    width: 100%;
  }
}

.footer-nav-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 520px;
}

.footer-nav-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list,
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social-list img {
  flex-shrink: 0;
  vertical-align: middle;
}

/* Responsywnie: na małych ekranach jedna pod drugą */
@media (max-width: 600px) {
  .footer-nav-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-social-list a {
    justify-content: center;
  }
}




/* Focus styles dla dostępności */
button:focus, a:focus, select:focus {
  outline: 2px dashed #ffcc00;
  outline-offset: 2px;
}

/* Dark Theme Styles */
.dark-theme {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-theme .navbar {
  background-color: #1e1e1e;
}

.dark-theme .nav-link {
  color: #e0e0e0;
}

.dark-theme .nav-link:hover {
  color: #ffcc00;
}

.dark-theme .sidebar {
  background: #1e1e1e;
}

.dark-theme .menu-btn {
  background: #333;
  color: #e0e0e0;
}

.dark-theme .menu-btn:hover {
  background: #444;
}

.dark-theme .content {
  background: #1e1e1e;
  color: #e0e0e0;
}

.dark-theme .footer {
  background: #1e1e1e;
  color: #e0e0e0;
}

/* MODAL - okienko na wirtualny spacer */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80%;
  max-width: 800px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.modal.show .modal-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.close-btn {
  display: block;
  background: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #ff0000;
}

/* PRZYCISK "Otwórz Wirtualny Spacer" */
.open-tour-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: transform 0.2s, background 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.open-tour-btn:hover {
  background: #45a049;
  transform: scale(1.05);
}

/* ============================
   NOWY WYGLĄD MENU – KAŻDY PRZYCISK W RAMCE
============================ */
.sidebar {
  box-sizing: border-box;
  width: 500px;
  flex: 0 0 500px;
  background: #4A90E2;
  border: 6px solid #4A90E2;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: -65px;
  margin-left: 0;
  margin-bottom: 0;
  align-self: flex-start;
  flex-shrink: 0;
}

.menu-btn {
  display: block;
  width: 100%;
  white-space: normal;       /* Pozwala na zawijanie tekstu */
  /* Usuń overflow i text-overflow, żeby cały tekst był widoczny */

  background: #FFFFFF !important;
  border: 5px solid #FF8B53;
  border-radius: 10px;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Efekt hover – przycisk delikatnie się powiększa i zmienia tło */
.menu-btn:hover {
  background: #ffd9a5;
  transform: scale(1.03);
}

/* Dodanie ikony ołówka do każdego przycisku menu */
.menu-btn::after {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none; /* Ikona nie wpływa na interakcję */
}

/* Upewnij się, że przyciski w menu mają białe tło */
.menu-btn {
  background: #FFFFFF !important;
  border: 5px solid #FF8B53 !important;
  color: #333;
  border-radius: 22px;
  padding: 12px 20px;
  font-size: 1rem;
  text-align: center !important;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  font-weight: bold !important;
}
}



/* Styl bazowy dla linków w navbarze */
.nav-link {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ccc; /* domyślny kolor – będzie nadpisany przez data-color */
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
  background: #fff; /* białe tło */
  color: #333;      /* domyślny kolor – będzie nadpisany */
}

/* Kolory bazowe – możesz je dostosować według potrzeb */
.nav-link[data-color="blue"] {
  border-color: #4A90E2;
  color: #4A90E2;
}
.nav-link[data-color="yellow"] {
  border-color: #F5A623;
  color: #F5A623;
}
.nav-link[data-color="red"] {
  border-color: #D0021B;
  color: #D0021B;
}
.nav-link[data-color="green"] {
  border-color: #27ae60;
  color: #27ae60;
}

/* Efekt hover – wypełnienie w kolorze ramki i biały tekst */
.nav-link[data-color="blue"]:hover {
  background: #4A90E2;
  color: #fff;
}
.nav-link[data-color="yellow"]:hover {
  background: #F5A623;
  color: #fff;
}
.nav-link[data-color="red"]:hover {
  background: #D0021B;
  color: #fff;
}
.nav-link[data-color="green"]:hover {
  background: #27ae60;
  color: #fff;
}

/* Stylizacja ikon społecznościowych w navbarze */
.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

/* Stylizacja podpisu – pozycjonowany na samym dole po prawej stronie */
.signature,
.signature1 {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-top: 30px;
  font-style: italic;
  font-size: 0.95em;
}

.options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.options .social-icons {
  margin-right: 10px;
}

.about-text {
  max-width: 1520px;
  margin: 0 auto;
}

.about-text h1 {
  text-align: center;
  margin-bottom: 20px;
}

.about-text p {
  text-align: justify;
  line-height: 1.6;
}
.about-text p {
  line-height: 1.6;
}
.content h1 {
  width: 100%;
  color: #ff5361;
  margin: 0 auto 20px auto;
}


.regulamin-link:hover {
  text-decoration: underline;
}

/* Styl przycisku głośniczka */
.speaker-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 10; /* Upewnia się, że przycisk jest na wierzchu */
}

.speaker-btn img {
  width: 64px;
  height: 64px;
  display: block;
}

/* ============================
   DARK THEME OVERRIDES – WYMUSZONE !IMPORTANT
============================ */
body.dark-theme {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}

.dark-theme .navbar {
  background-color: #1e1e1e !important;
}

.dark-theme .nav-link {
  color: #000000 !important;
  border-color: #444 !important;
}

.dark-theme .nav-link:hover {
  color: #ffcc00 !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.dark-theme .sidebar {
  background: #1e1e1e !important;
  border-color: #444 !important;
}

.dark-theme .menu-btn {
  background: #333 !important;
  color: #e0e0e0 !important;
  border-color: #444 !important;
}

.dark-theme .menu-btn:hover {
  background: #444 !important;
}

.dark-theme .content {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
  border-color: #444 !important;
}

.dark-theme .footer {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
}

/* Domyślny styl przycisków */
.theme-control {
  border: 2px solid black;
  background: transparent;
  color: black;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Ciemny motyw: białe ramki i tekst */
.dark-theme .theme-control {
  border: 2px solid white !important;
  color: white !important;
  background: transparent !important;
}

.about-text p {
  text-indent: 2em;
  margin-left: 20px;
}
.welcome-title {
  position: relative;  /* Konieczne do absolutnego pozycjonowania pseudo-elementu */
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px; /* Zapewnij trochę miejsca na pseudo-element */
}

.download-page {
  background-color: #FFFDF1;
}

.download-page .content {
  background: #FFFDF1 !important;
}

.download-page .download-table-container {
  background: #FFFDF1;
}

.download-page .download-table tbody tr {
  background: #ffffff;
}



.download::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px; /* Odstęp od dolnej krawędzi tekstu – dostosuj według potrzeb */
  transform: translateX(-50%);
  width: 20%;      /* Długość podkreślenia – możesz dostosować */
  height: 3px;     /* Grubość linii podkreślenia */
  background-color: #ff5361;  /* Kolor linii */
  border-radius: 2px;         /* Opcjonalnie – zaokrąglenie linii */
}

.highlight-btn {
  background-color: #ffe082 !important;
  border: 4px solid #ffb300 !important;
  color: #4e342e !important;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-size: 1rem;
  padding: 16px 20px;
  animation: glow 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
}



.team-section {
  margin-top: -50px;
}


.team {
  position: relative;  /* Konieczne do absolutnego pozycjonowania pseudo-elementu */
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px; /* Zapewnij trochę miejsca na pseudo-element */
  margin-top: -5px !important
}

.team::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px; /* Odstęp od dolnej krawędzi tekstu – dostosuj według potrzeb */
  transform: translateX(-50%);
  width: 18%;      /* Długość podkreślenia – możesz dostosować */
  height: 3px;     /* Grubość linii podkreślenia */
  background-color: #ff5361;  /* Kolor linii */
  border-radius: 2px;         /* Opcjonalnie – zaokrąglenie linii */
}



.highlight-btn .btn-text {
  position: relative;
  z-index: 2;
}



.glow-btn21 {
  background: linear-gradient(145deg, #ffffff, #ffffff) !important;
  border: 3px solid #ffb300 !important;
  color: #4e342e !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 22px;
  cursor: pointer;
  overflow: hidden;

  /* efekt 3D + glow */
  box-shadow: 
    0 5px 0 #ff8f00,
    0 0 12px rgba(255, 193, 7, 0.5);
}







/* Przycisk ze świecącym efektem */
.glow-btn {
  background: linear-gradient(145deg, #ffe082, #ffca28) !important;
  border: 3px solid #ffb300 !important;
  color: #4e342e !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 22px;
  cursor: pointer;
  overflow: hidden;

  /* efekt 3D + glow */
  box-shadow: 
    0 5px 0 #ff8f00,
    0 0 12px rgba(255, 193, 7, 0.5);

  /* delikatna animacja */
  animation: softGlow 3s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* hover */
.glow-btn:hover {
  transform: scale(1.06);
  box-shadow: 
    0 7px 0 #ff8f00,
    0 0 20px rgba(255, 193, 7, 0.9);
}

/* klik */
.glow-btn:active {
  transform: scale(0.97);
  box-shadow: 0 3px 0 #ff8f00;
}

/* subtelne pulsowanie */
@keyframes softGlow {
  0%, 100% {
    box-shadow: 
      0 5px 0 #ff8f00,
      0 0 8px rgba(255, 193, 7, 0.4);
  }
  50% {
    box-shadow: 
      0 6px 0 #ff8f00,
      0 0 18px rgba(255, 193, 7, 0.7);
  }
}

/* ✨ błysk przejeżdżający */
.glow-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

.glow-btn2 {
  background: #ecb7d2 !important;
  border: 5px solid #e0306b !important;
  color: #880e4f !important;
  font-weight: 800 !important;
  font-size: 1.03rem;
  letter-spacing: 0.2px;
  padding: 16px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 22px;
  cursor: pointer;
  line-height: 1.25;

  box-shadow:
    0 0 0 2px rgba(224, 48, 107, 0.15),
    0 0 8px rgba(224, 48, 107, 0.35),
    0 0 16px rgba(224, 48, 107, 0.22);
}

.glow-btn2 span {
  font-weight: 800 !important;
}

.glow-btn2:hover {
  transform: scale(1.03);
  box-shadow:
    0 5px 0 #c2185b,
    0 0 10px rgba(224, 48, 107, 0.35),
    0 0 18px rgba(224, 48, 107, 0.28),
    0 0 24px rgba(224, 48, 107, 0.18);
}

.glow-btn2:active {
  transform: scale(0.97);
}

@keyframes borderGlowPink {
  0%, 100% {
    border-color: #e91e63;
    box-shadow:
      0 0 0 2px rgba(233, 30, 99, 0.20),
      0 0 8px rgba(233, 30, 99, 0.30),
      0 0 16px rgba(233, 30, 99, 0.18);
  }
  50% {
    border-color: #ff4f93;
    box-shadow:
      0 0 0 4px rgba(255, 79, 147, 0.28),
      0 0 14px rgba(255, 79, 147, 0.45),
      0 0 26px rgba(255, 79, 147, 0.28);
  }
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow:
      0 3px 0 #c2185b,
      0 0 6px rgba(224, 48, 107, 0.22),
      0 0 12px rgba(224, 48, 107, 0.16);
  }
  50% {
    box-shadow:
      0 3px 0 #c2185b,
      0 0 10px rgba(224, 48, 107, 0.38),
      0 0 18px rgba(224, 48, 107, 0.28),
      0 0 26px rgba(224, 48, 107, 0.18);
  }
}


.toggle-btn {
  border: 2px solid black !important;
  color: black !important;
  background: transparent !important;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* Styl przycisków w ciemnym motywie */
.dark-theme .toggle-btn {
  border: 2px solid white !important;
  color: white !important;
}

.word1 {
  color: #79a9d5; /* np. czerwony */
}

.word2 {
  color: #f7c85b; /* np. niebieski */
}

.word3 {
  color: #ef5656; /* np. zielony */
}

.psych-section {
  /* czcionka, rozmiar, odstępy między wierszami i akapitami */
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  white-space: pre-line;     /* zachowuje puste linie z JS */
  padding: 2rem;
  max-width: 800px;
  background: #ffffff;
   max-height: none;
  overflow-y: visible;
  padding-right: 1rem;    /* żeby tekst nie przyklejał się do scrollbara */
}

/* główny tytuł (pierwsza linia) */
.psych-section > div:first-child,
.psych-section > p:first-of-type {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* kolejne paragrafy */
.psych-section p {
  margin: 1rem 0;
}

/* nagłówki etapów */
.psych-section h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.25rem;
}

/* listy numerowane i punktowane */
.psych-section ol,
.psych-section ul {
  margin: 1rem 0 1rem 1.5rem;
}
.psych-section li {
  margin-bottom: 0.5rem;
}

/* wyróżnione fragmenty */
.psych-section strong {
  color: #c0392b;
}

/* stopka z bibliografią */
.psych-section .psych-footer {
  margin-top: 2rem;
  font-style: italic;
  text-align: right;
}

.psych-highlight {
  border: 5px solid #f39c12;
  background: #fff8f0;
  padding: 1rem;
  margin: 1.5rem 0;
  color: #c0392b;
  font-style: italic;
  line-height: 1.6;
  border-radius: 6px;
}

.psych-section .psych-title {
  text-align: center;
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
  color: #2980b9;
  font-weight: bold;
}

.psych-section {
  max-width: none;       /* znosimy limit 800px */
  margin: 0;             /* usuwamy zewnętrzne marginesy */
  background: #fff;      /* jeśli chcesz białe tło */
  box-sizing: border-box;
  margin-bottom: 1rem;
  border-radius: 10px;
}

/* === Stylowanie sekcji "Znajdź pokój przesłuchań" === */
#find-room-content {
  padding: 0;
  border-radius: 10px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Nagłówek */
#find-room-content h2 {
  color: #ff3377;               /* różowy */
  text-decoration: underline;
  text-align: center;
  margin-bottom: 1em;
}

/* Wyjustowany tekst */
#find-room-content p,
#find-room-content ol {
  text-align: justify;
  margin-bottom: 1em;
}

/* Specjalne podkreślenie pierwszej frazy */
.intro-highlight {
  color: #ff7f50;               /* coral */
  text-decoration: underline;
  font-weight: bold;
}

/* Specjalne podkreślenie warunkowej frazy */
.conditional-highlight {
  color: #3399ff;               /* niebieski */
  text-decoration: underline;
  font-weight: bold;
}

/* Odstęp przed listą numerowaną */
#find-room-content ol {
  padding-left: 1.5em;
}

/* Przyciski i select wyrównane pod tekstem */
#find-room-content .controls {
  margin-top: 1.5em;
}

.infobutton {
  max-width: 100%;
  background: #ffffff;
  max-height: 900px;       /* albo np. 500px — ustaw wg potrzeby */
  max-height: none;
  overflow-y: visible;
}

 /* ——————— Stopka ——————— */
    .site-footer {
      font-family: sans-serif;
      color: #333;
      background: #f8f8f8;
    }
    .full-width-image {
      width: 100%;
      height: auto;
      display: block;
    }

    


/* ===== STOPKA: patronat + patroni honorowi ===== */

.footer-experience {
  background: #ffffff;
  padding: 24px 24px 28px;
  border-bottom: 1px solid #e5e5e5;
  font-family: 'Quicksand', sans-serif;
}

.footer-experience-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(360px, 0.9fr);
  gap: 36px;
  align-items: start;
}

/* Lewa kolumna */

.partners-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partners-group h3,
.honorary-patrons-group h3 {
  margin: 0 0 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2f46;
}

.honorary-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Równa siatka logotypów */
.partners-logos {
  width: 100%;
  max-width: 820px;

  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 24px 28px;

  align-items: center;
  justify-items: center;
}

/* Wspólny rozmiar dla wszystkich patronów */
.partners-logos img {
  display: block;
  max-width: 150px;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

/* Delikatne korekty tylko dla trudniejszych logo */
.partners-logos .logo-lub {
  max-width: 180px;
  max-height: 82px;
}

.partners-logos .mkou-logo {
  max-width: 120px;
  max-height: 82px;
}

.partners-logos .stowrodzin-logo,
.partners-logos .boda-logo,
.partners-logos .f5-logo,
.partners-logos .ppfk-logo {
  max-width: 100px;
  max-height: 82px;
}

/* Prawa kolumna */

.honorary-patrons-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: #ffffff;
  border: 1px solid #d9dee5;
  border-radius: 14px;

  padding: 18px 26px;
  margin: 0;

  box-shadow: 0 6px 18px rgba(31, 47, 70, 0.07);
}

.honorary-patrons-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: nowrap;
}

.pkdp-logo {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin: 0 !important;
}

.kir-logo {
    width: 250px !important;
    height: auto !important;
    max-width: none !important;
  object-fit: contain;
  display: block;
  margin: 0 !important;
}

.prokurator-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
  text-align: left;
  white-space: nowrap;
}

/* Responsywność */
@media (max-width: 1050px) {
  .footer-top-row {
    grid-template-columns: 1fr;
  }

  .honorary-patrons-group {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .footer-experience {
    padding: 22px 14px 26px;
  }

  .partners-logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px 18px;
  }

  .partners-logos img {
    max-width: 135px;
    max-height: 68px;
  }

  .honorary-patrons-logos {
    flex-direction: column;
    gap: 16px;
  }

  .prokurator-text {
    text-align: center;
    white-space: normal;
  }
}

    /* — Sekcja: Patroni medialni — */
    .footer-media-patrons {
      font-family:'Quicksand';
    }
    .footer-media-patrons h3 {
      text-align: center;
      margin: 0 0 .5em;
      font-weight: normal;
    }
    .media-patrons-logos {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    .media-patrons-logos img {
      max-height: 50px;
    }




    /* === FIX: RÓWNE UŁOŻENIE LOGO PATRONÓW (GÓRNY RZĄD) === */
.partners-logos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;      /* klucz: wyrównanie w pionie */
  gap: 16px;                /* równy odstęp */
}

/* bazowy, równy rozmiar – bez ręcznych przesunięć */
.partners-logos img{
  display: block;
  height: 80px;             /* jeden wspólny “rząd” */
  width: auto;
  max-width: 220px;         /* żeby szerokie logo nie rozwalało układu */
  object-fit: contain;
  margin: 0 !important;     /* kasuje margin-top z klas */
  padding: 0;
}


/* jeśli CHCESZ wyjątki rozmiaru – tylko wysokość, bez margin-top */
.partners-logos img.logo-lub{ height: 110px; }   /* Lublin większe (opcjonalnie) */
.partners-logos img.mkou-logo{ height: 95px; }   /* opcjonalnie */





    /* — Sekcja główna stopki — */
 .footer-main {
  border-top: 1px solid #ffffff;
  /* było: padding: 30px 20px; */
  padding: 12px 16px;         /* mniejszy odstęp wewnętrzny */
  font-family: 'Quicksand';
  background-color: #FFEBD4;  /* beż */
}
    .footer-main-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-evenly;
      align-items: center;
    }

    .footer-logos {
  display: flex;
  flex-direction: column; /* układ wertykalny */
  gap: 30px;              /* odstęp między kolejnymi logo */
}

.footer-logos img {
  height: 90px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: contain;
}

/* Docelowy rozmiar logo Towarzystwa */
.footer-logos img.footer-tow-logo {
  height: 120px !important; /* zwiększaj wg potrzeby: 160, 180… */
  width: auto !important;
}



.partners-logos .stowrodzin-logo {
  max-height: 90px !important; /* usuwa poprzednie ograniczenie */
  width: 90px;                /* ustaw dowolną szerokość */
  height: auto !important;     /* zachowuje proporcje */
}

.partners-logos .lexsuper-logo {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 80px;                /* ustaw dowolną szerokość */
  height: 80px !important;     /* zachowuje proporcje */
   margin-top: 05px;           /* dodaj to, by usunąć odstęp nad logo */
  
}


.partners-logos .mkou-logo {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 120px;                /* ustaw dowolną szerokość */
  height: 120px !important;     /* zachowuje proporcje */
   margin-top: -15px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.partners-logos .prok-kraj {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 130px;                /* ustaw dowolną szerokość */
  height: 120px !important;     /* zachowuje proporcje */
   margin-top: -10px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.partners-logos .logo-lub {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 210px;                /* ustaw dowolną szerokość */
  height: 130px !important;     /* zachowuje proporcje */
   margin-top: -50px;           /* dodaj to, by usunąć odstęp nad logo */
  
}


.partners-logos .fdds_logo {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 120px;                /* ustaw dowolną szerokość */
  height: 120px !important;     /* zachowuje proporcje */
   margin-top: -50px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.partners-logos .f5-logo {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 90px;                /* ustaw dowolną szerokość */
  height: 90px !important;     /* zachowuje proporcje */
   margin-top: -24px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.partners-logos .ppfk-logo {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 80px;                /* ustaw dowolną szerokość */
  height: 80px !important;     /* zachowuje proporcje */
   margin-top: -20px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.partners-logos .boda-logo {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 90px;                /* ustaw dowolną szerokość */
  height: 90px !important;     /* zachowuje proporcje */
   margin-top: -30px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.media-patrons-logos .radio-cen {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 190px;                /* ustaw dowolną szerokość */
  height: 100px; !important;     /* zachowuje proporcje */
   margin-top: -0px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.media-patrons-logos .psycho {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 120px;                /* ustaw dowolną szerokość */
  height: 100px; !important;     /* zachowuje proporcje */
   margin-top: -0px;           /* dodaj to, by usunąć odstęp nad logo */
  
}

.partners-logos .ilupat {
  max-height: none !important; /* usuwa poprzednie ograniczenie */
  width: 160px;                /* ustaw dowolną szerokość */
  height: 60px; !important;     /* zachowuje proporcje */
   margin-top: 10px;           /* dodaj to, by usunąć odstęp nad logo */
  
}


.footer-main { padding-bottom: 12px !important; }

.site-footer { 
  padding: 0 !important; 
  margin: 0 !important; 
}

.footer-bottom {
  background: #fff;
  color: #000;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 !important;     /* zero marginesu */
}

    .footer-logos img {
      max-height: 80px;
      margin-right: 15px;
      display: flex;
      align-items: flex-start; /* lub center, jeśli chcesz centrować */
    }
    .footer-info p {
      line-height: 1.4;
      margin: 0 0 10px;
    }
    .footer-info address {
      font-style: normal;
      line-height: 1.4;
      margin: 0;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-nav li {
      margin-bottom: 8px;
    }
    .footer-nav a {
      text-decoration: none;
      color: inherit;
      display: inline-flex;
      align-items: center;
       display: inline-block;
  border: 1px solid transparent;
  padding: 1px 8px;
  border-radius: 3px;
  transition: color .3s, border-color .3s;
    }

/* 2) Efekt ramki + zmiana koloru tekstu na hover */
.footer-nav a:hover {
  border-color: currentColor;
}

/* 3) Specyficzne kolory dla każdego linku */
.footer-nav a[href="about.html"]:hover {
  color: orange;
}
.footer-nav a[href="team.html"]:hover {
  color: green;
}
.footer-nav a[href="kontakt.html"]:hover {
  color: red;
}
.footer-nav a[href="kontakt.html"]:hover {
  color: blue;
}

/* Wszystkie nagłówki w stopce bez pogrubienia */
.site-footer h2,
.site-footer h3 {
  font-weight: bold !important;
}

/* Większe nagłówki w stopce */
.site-footer h2 {
  font-size: 1.3rem !important;  /* podnieś do 1.3rem/1.4rem jeśli potrzeba */
}

.site-footer h3 {
  font-size: 1.3rem !important;    /* podnieś do 1.1rem/1.2rem jeśli potrzeba */
}


    .footer-nav a i {
      margin-right: 6px;
      font-size: 1.1em;
    }

    /* — Responsywność — */
    @media (max-width: 600px) {
      .footer-experience-inner,
      .footer-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .partners-group,
      .footer-logos,
      .footer-nav {
        margin-top: 15px;
        align-items: center;
      }
    }

    /* 1) Nadpisanie inline‐background dla wszystkich wczytywanych sekcji */
.dark-theme #content-area > div[style*="background:#fff"] {
  background-color: #1e1e1e !important;
  color:            #e0e0e0 !important;
}

/* 2) Jeśli masz w środku kolejne <div> z inline paddingiem: */
.dark-theme #content-area > div[style*="padding"] {
  background-color: transparent !important;
}

/* 1) Logo w jednym rzędzie, środek w pionie, mały odstęp */
.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: 0;
}

/* 2) Bazowe wymiary (logiczne) obu logotypów */
.footer-logos img {
  height: 80px;        /* stała wysokość układu */
  width: auto;
  display: block;
  margin: 0;
  flex: 0 0 auto;
}


/* reset luzów od stopki (masz wiele reguł footer – nadpisujemy) */
footer { margin: 0 !important; padding-bottom: 0 !important; }


/* Główny kontener listy plików */
.download-table-container {
  width: calc(100% - 40px);
  max-width: none;
  margin: 25px 20px 30px;
  padding: 20px;
  box-sizing: border-box;

  background: #fffdf7;
  border: 3px solid #ffb078;
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(255, 139, 83, 0.16);
}

/* Tabela zajmuje całą szerokość */
.download-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

/* Nagłówek tabeli */
.download-table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
  background: #ffe6bd;
  border-radius: 14px;
}

.download-table thead tr {
  display: table-row;
}

.download-table thead {
  display: none;
}

.download-table thead th {
  padding: 16px 18px;
  font-weight: 700;
  color: #4e342e;
}

.download-table thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.download-table thead th:last-child {
  border-radius: 0 14px 14px 0;
  text-align: right;
}

/* Dwie kolumny z plikami */
.download-table tbody {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

/* Każdy plik jako osobna karta */
.download-table tbody tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;

  background: #ffffff;
  border: 2px solid #dce9f7;
  border-radius: 16px;
  padding: 14px 16px;
  box-sizing: border-box;

  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efekt po najechaniu */
.download-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(74, 144, 226, 0.16);
}

/* Komórki */
.download-table tbody td {
  padding: 0;
  border: 0;
  background: transparent;
}

/* Nazwa pliku */
.download-table tbody td:first-child {
  font-weight: 600;
  line-height: 1.35;
  color: #333;
}

/* Kolumna przycisku */
.download-table tbody td:last-child {
  text-align: right;
}

/* Przycisk Pobierz */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 125px;
  height: 50px;
  padding: 0 16px;
  box-sizing: border-box;

  background: #4a90e2;
  color: #ffffff;
  border: none;
  border-radius: 10px;

  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;

  box-shadow: 0 4px 0 #2f6fb8;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.download-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #245f9f;
}

.download-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #245f9f;
}

.download-intro {
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 20px;
  background: #FFFDF1;
  border-radius: 15px;
  line-height: 1.6;
}

.download-intro .highlight {
  color: #0277bd;
  font-weight: bold;
}


.download-btn.is-disabled {
  pointer-events: none;
  cursor: default;
  background: #9bbde6;
  color: #ffffff;
  opacity: 1;
  filter: none;
  box-shadow: 0 4px 0 #789fcf;
}




/* --- Hard override na dół strony --- */
body { padding-bottom: 0 !important; }
.content { padding-bottom: 0 !important; }
footer, .site-footer { margin: 0 !important; padding-bottom: 0 !important; }

/* Reset potencjalnych „buforów” na dole */
html, body { margin: 0; height: auto; }
body { padding-bottom: 0 !important; }

/* Jeśli masz gdzieś duże paddingi na dole treści, przytnij je: */
.content { padding-bottom: 0 !important; }

/* Sama stopka nie dokładamy dolnych luzów */
footer, .site-footer { margin-bottom: 0 !important; padding-bottom: 0 !important; }

/* Nowa sekcja – czysty, pełnej szerokości pasek */
.copyright-bar {
  display: block;
  width: 100%;
  margin: 0;
  box-sizing: border-box;

  background: #6495ED;       /* białe tło */
  color: #000;            /* czarny tekst */
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;

  padding: 12px 16px;     /* wysokość paska */
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Gdyby rodzic miał max-width i centrował dzieci, ten blok i tak jest poza nim,
   ale na wszelki wypadek pilnujemy pełnej szerokości okna bez poziomego scrolla */
.copyright-bar { max-width: 100vw; overflow-x: hidden; }

/* Stan odtwarzania (opcjonalnie) */
.control-btn.is-playing{
  background: rgba(74,144,226,.12);
  border-color: #4A90E2;
}


/* Stopka i paski informacyjne */
body.dark-theme .footer,
body.dark-theme .site-footer,
body.dark-theme .footer-main,
body.dark-theme .footer-bottom,
body.dark-theme .copyright-bar {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* Bloki treści, które mają „na sztywno” białe tła */
body.dark-theme .content,
body.dark-theme .download-intro,
body.dark-theme .download-table-container {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
  border-color: #444 !important;
}

/* Linki/ramki w tabelach pobrań – lżejszy ciemny */
body.dark-theme .download-table thead {
  background-color: #2a2a2a !important;
}
body.dark-theme .download-table tr:nth-child(even) {
  background-color: #1a1a1a !important;
}

body.dark-theme .footer-experience,
body.dark-theme .footer-media-patrons {
  background: #ffffff !important;  /* białe tło */
  color: #222 !important;          /* ciemny tekst */
  border-color: #e5e5e5 !important;
}


/* Pozwól używać wyglądu #find-room-content także jako klasy */
.find-room-block { /* jak #find-room-content */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.find-room-block h2 { color:#ff3377; text-decoration:underline; text-align:center; margin-bottom:1em; }
.find-room-block p,
.find-room-block ol { text-align:justify; margin-bottom:1em; }
.find-room-block ol { padding-left: 1.5em; }




/* =========================
   🧸 DYMek pomocy dla dzieci
========================= */

.help-bubble {
  position: fixed;   /* 🔥 kluczowe */
  right: 10px;       /* od prawej krawędzi */
  top: 220px;        /* od góry (dopasuj pod navbar) */
  z-index: 9999;     /* żeby był zawsze na wierzchu */
  cursor: pointer;
}

.bubble-hint {
  position: absolute;
  right: 60px;
  top: -10px;

  background: #fff6f9;
  color: #ff6f91;

  padding: 8px 12px;
  border-radius: 15px;

  font-size: 0.85rem;
  font-weight: 600;

  box-shadow: 0 5px 15px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(10px);

  animation: hintShow 4s ease forwards;
}

/* strzałka */
.bubble-hint::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 12px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #fff6f9;
}

/* animacja pojawiania */
@keyframes hintShow {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* po kliknięciu */
.help-bubble.active .bubble-content {
  display: block;
}

.bubble-icon {
  animation: pulse 2s infinite;
}

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

/* Ikona */
/* Ikona */
.bubble-icon {
  width: 60px;
  height: 60px;
  background-image: url("images/tele.svg"); /* tutaj wpisz ścieżkę do swojego pliku */
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);

  animation: float 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.bubble-icon:hover {
  transform: scale(1.1);
}

/* Animacja "unoszenia się" */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}



/* Okienko */
.bubble-content {
  display: none;
  position: absolute;

  background: #fff8dc;
  border-radius: 15px;
  padding: 15px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 3px solid #FFD166;

  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;

  transition: all 0.3s ease;
  font-size: 0.9rem;
    right: 60px;   /* 🔥 przesuwa okienko w lewo od ikonki */
  top: 0;

  width: 250px;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Po kliknięciu */
.help-bubble.active .bubble-content {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Tekst */
.bubble-content h3 {
  margin-top: 0;
  color: #ff8b53;
  text-align: center;
}

.bubble-content ul {
  padding-left: 15px;
}

.bubble-small {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
}

/* mis pomocy */

.teddy-bubble {
  position: fixed;
  right: 10px;
  top: 37%;                 /* środek ekranu */
  transform: translateY(-50%); /* idealne wycentrowanie */
  z-index: 9999;
}







/* MIŚ */
.teddy-icon {
  width: 60px;
  height: 60px;

  background: url("/images/pomoc.svg") center center / contain no-repeat;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border-radius: 50%;

  animation: teddyFloat 3s ease-in-out infinite;
  transition: transform 0.2s;
}

.teddy-icon:hover {
  transform: scale(1.1);
}

@keyframes teddyFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* OKIENKO */
.teddy-content {
  display: none;
  position: absolute;
  right: 60px;
  bottom: 0;

  width: 280px;
  background: #fff6f9;
  border-radius: 15px;
  padding: 15px;

  border: 3px solid #ffb3c6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* aktywne */
.teddy-bubble.active .teddy-content {
  display: block;
}

/* nagłówek */
.teddy-header {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #ff6f91;
}

/* chat */
.teddy-chat {
  min-height: 60px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* przyciski */
.teddy-btn {
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.85rem;
}

.teddy-btn:hover {
  background: #ffe0eb;
}


/* delikatne unoszenie */
@keyframes labelFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.teddy-label {
  animation: showLabel 5s ease-in-out infinite;
}

@keyframes showLabel {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}


/* 🔥 Mniejsze ekrany – rozsuń elementy */
@media (max-height: 800px) {

  .help-bubble {
    top: 80px; /* trochę wyżej */
  }

  .teddy-bubble {
    top: 70%;              /* przesuwamy niżej */
    transform: translateY(-50%);
  }

}

/* 🔥 Jeszcze mniejsze laptopy */
@media (max-height: 700px) {

  .help-bubble {
    top: 60px;
  }

  .teddy-bubble {
    top: 80%;              /* jeszcze niżej */
    transform: translateY(-50%);
  }

}

/* 🔥 FAQ */

/* =========================
   🌈 FAQ – styl przyjazny dzieciom
========================= */

.faq-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 25px;
  background: #fff8f0;
  border-radius: 20px;
  border: 5px solid #ffb38a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.faq-title {
  color: #ff6f61;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* pojedynczy element */
.faq-item {
  margin-bottom: 15px;
}

/* pytanie */
.faq-question {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: none;
  background: #ffd166;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #ffb347;
  transform: scale(1.02);
}

/* odpowiedź */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
  border-radius: 10px;
  margin-top: 8px;
  padding: 0 10px;
}

.faq-answer p {
  padding: 10px;
  margin: 0;
  color: #444;
}

/* aktywny */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* DARK MODE */
.dark-theme .faq-container {
  background: #1e1e1e;
  border-color: #444;
}

.dark-theme .faq-question {
  background: #333;
  color: #fff;
}

.dark-theme .faq-answer {
  background: #2a2a2a;
  color: #eee;
}


.nav-link {
  display: inline-block !important;
  padding: 10px 15px !important;
  border: 2px solid !important;
  border-radius: 20px !important;
  background: #fff !important;
  text-decoration: none !important;
  font-weight: bold !important;
}

.nav-link[data-color="blue"] {
  border-color: #4A90E2 !important;
  color: #4A90E2 !important;
}

.nav-link[data-color="yellow"] {
  border-color: #F5A623 !important;
  color: #F5A623 !important;
}

.nav-link[data-color="red"] {
  border-color: #D0021B !important;
  color: #D0021B !important;
}

.nav-link[data-color="green"] {
  border-color: #27ae60 !important;
  color: #27ae60 !important;
}

.image-section {
  width: 100%;
  text-align: center;
}

.image-title {
  color: #ff5361;
  margin-bottom: 20px;
}

.image-frame {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.content-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* obrazki */

/* Obraz idealnie dopasowany do pomarańczowej ramki */
.download-intro {
  padding: 0;
  margin: 0;
}

.download-image-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  border-radius: 0;
}

.download-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.room-section {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 0;
  overflow: visible;
  border-radius: 9px;
  box-sizing: border-box;
}

.simple-images {
  width: calc(100% + 40px);
  margin: -20px;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  box-sizing: border-box;
}

.simple-image {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
}

/* Obraz na stronie głównej – wypełnia pomarańczową ramkę bez białych marginesów */
.home-image-wrapper {
  width: 100%;
  line-height: 0;
  margin: 0;
}

.home-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 9px;
}



.city-picker-card {
  position: relative;
  z-index: 20;

  width: min(520px, calc(100% - 32px));
  max-width: 520px;
  margin: 20px auto 40px auto;

  padding: 22px 28px;
  background: #fffdf7;
  border: 5px solid #ff8b53;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(255, 139, 83, 0.22);
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  box-sizing: border-box;
}

.city-picker-card h2 {
  margin: 0 0 16px;
  color: #ff3377;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.city-picker-text {
  max-width: 520px;
  margin: 0 auto 22px auto;
  color: #4e342e;
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.city-picker-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.city-picker-row label {
  font-size: 1.1rem;
  color: #333;
}

.city-select {
  min-width: 260px;
  padding: 13px 18px;
  border: 3px solid #ff3377;
  border-radius: 18px;
  background: #ffffff;
  color: #333;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.city-select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 51, 119, 0.18);
}

.room-result-box {
  width: 100%;
  max-width: 100%;
  margin: 18px auto 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.room-result-box select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


.city-picker-on-image {
  position: absolute;
  top: 223%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  border: 5px solid #ff8b53;
  border-radius: 24px;
  padding: 22px 28px;
  box-shadow: 0 12px 28px rgba(255, 139, 83, 0.25);
}

.city-picker-on-image label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.city-picker-on-image select {
  min-width: 260px;
  padding: 12px 16px;
  border: 3px solid #ff3377;
  border-radius: 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}

.info2-images {
  width: calc(100% + 40px);
  margin: -20px;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  box-sizing: border-box;
}

.info2-image {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.info2-image-wrap {
  width: 100%;
  overflow: hidden;
}

.info2-image-wrap.cut-4 {
  height: 2700px !important;
  overflow: hidden;
}


/* Stabilne ustawienie ramki wyboru pokoju na mniejszych ekranach */

@media (max-width: 768px) {
  .simple-images {
    height: clamp(360px, 75vw, 560px);
  }

  .city-picker-card {
    width: calc(100% - 24px);
    margin: -55px auto 32px auto;
    padding: 18px 14px;
    border-width: 4px;
    border-radius: 20px;
  }

  .city-picker-row {
    flex-direction: column;
    gap: 8px;
  }

  .city-select {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .simple-images {
    height: 330px;
  }

  .city-picker-card {
    width: calc(100% - 16px);
    margin: -35px auto 26px auto;
    padding: 14px 10px;
    border-width: 3px;
    border-radius: 16px;
  }
}

/* ==================================================
   KOMUNIKAT O TRWAJĄCYCH PRACACH NAD STRONĄ
================================================== */

body.notice-open {
  overflow: hidden;
}

.development-notice {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-sizing: border-box;

  background: rgba(31, 47, 70, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.development-notice.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.development-notice__window {
  position: relative;

  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;

  padding: 36px 42px 32px;
  box-sizing: border-box;

  font-family: 'Quicksand', sans-serif;
  color: #333333;

  background: #fffdf1;
  border: 6px solid #ff8b53;
  border-radius: 28px;

  box-shadow:
    0 12px 0 rgba(255, 139, 83, 0.3),
    0 24px 60px rgba(0, 0, 0, 0.28);

  text-align: center;

  animation: developmentNoticeOpen 0.4s ease;
}

.development-notice__icon {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 78px;
  height: 78px;
  margin: -6px auto 14px;

  font-size: 44px;
  line-height: 1;

  background: #ffe082;
  border: 4px solid #ffb300;
  border-radius: 50%;

  box-shadow: 0 5px 0 #ff8f00;
}

.development-notice__window h2 {
  margin: 14px 0 24px;

  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.2;
  font-weight: 700;

  color: #4a90e2;
}

.development-notice__text {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

.development-notice__text p {
  margin: 0 0 16px;
}

.development-notice__text strong {
  color: #e05b32;
}

.development-notice__thanks {
  margin-top: 22px;
  text-align: center;
  font-weight: 700;
  color: #4a90e2;
}

.development-notice__button {
  min-width: 180px;
  margin-top: 14px;
  padding: 14px 30px;

  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;

  color: #4e342e;
  background: linear-gradient(145deg, #ffe082, #ffca28);

  border: 3px solid #ffb300;
  border-radius: 22px;

  box-shadow:
    0 5px 0 #ff8f00,
    0 0 14px rgba(255, 193, 7, 0.45);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.development-notice__button:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow:
    0 7px 0 #ff8f00,
    0 0 20px rgba(255, 193, 7, 0.65);
}

.development-notice__button:active {
  transform: translateY(2px);

  box-shadow:
    0 2px 0 #ff8f00,
    0 0 8px rgba(255, 193, 7, 0.4);
}

@keyframes developmentNoticeOpen {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }

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

/* Wersja mobilna */
@media (max-width: 600px) {
  .development-notice {
    padding: 12px;
    align-items: center;
  }

  .development-notice__window {
    max-height: calc(100vh - 24px);
    padding: 25px 20px 24px;
    border-width: 4px;
    border-radius: 22px;
  }

  .development-notice__icon {
    width: 62px;
    height: 62px;
    font-size: 34px;
  }

  .development-notice__window h2 {
    margin-bottom: 18px;
  }

  .development-notice__text {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .development-notice__button {
    width: 100%;
  }
}

/* Wyłączenie animacji dla osób ograniczających ruch */
@media (prefers-reduced-motion: reduce) {
  .development-notice,
  .development-notice__window,
  .development-notice__button {
    animation: none;
    transition: none;
  }
}

/* Dopasowanie do ciemnego motywu strony */
.dark-theme .development-notice__window {
  color: #e0e0e0;
  background: #1e1e1e;
  border-color: #ff8b53;
}

.dark-theme .development-notice__text strong,
.dark-theme .development-notice__thanks {
  color: #ffd166;
}

.dark-theme .development-notice__window h2 {
  color: #81d4fa;
}

/* ==================================================
   BLOKADA DOSTĘPU Z TELEFONÓW
================================================== */

/* Komunikat informacyjny dla użytkowników telefonów */
.mobile-access-blocker {
  display: none;
}

.mobile-access-blocker__button {
  margin-top: 22px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: #ff8b53;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 0 #d96b37;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-access-blocker__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #d96b37;
}

.mobile-access-blocker__button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d96b37;
}

@media (max-width: 768px) {
  .mobile-access-blocker {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    box-sizing: border-box;
    background: rgba(255, 235, 212, 0.96);
  }

  .mobile-access-blocker__window {
    width: 100%;
    max-width: 420px;
    background: #fffdf1;
    border: 5px solid #ff8b53;
    border-radius: 24px;
    padding: 24px 20px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .mobile-access-blocker__icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .mobile-access-blocker h1 {
    margin: 0 0 16px;
    color: #ff5361;
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .mobile-access-blocker__text {
    color: #333333;
    font-size: 1rem;
    line-height: 1.55;
  }

  .mobile-access-blocker__text p {
    margin: 0 0 12px;
  }

  .mobile-access-blocker__thanks {
    font-weight: 700;
  }
}

#find-room-content {
  padding: 0;
  margin: 0;
  line-height: normal;
}

#find-room-content .room-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 9px;
}

#find-room-content .simple-images {
  width: calc(100% + 40px);
  margin: -20px;
  padding: 0;
  line-height: 0;
  overflow: visible;
  box-sizing: border-box;
}

#find-room-content .simple-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}


/* Poprawka dla zakładki art. 185e — obrazki infop idealnie w ramce */
/* Poprawka dla zakładki art. 185e — obrazki infop idealnie w ramce */
#content-area:has(img[src*="infop"]) {
  overflow: hidden !important;
}

/* Kontener obrazków */
#content-area:has(img[src*="infop"]) .simple-images {
  width: calc(100% + 40px) !important;
  max-width: none !important;

  margin-left: -20px !important;
  margin-right: -20px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
  box-sizing: border-box !important;
}

/* Same obrazki infop */
#content-area:has(img[src*="infop"]) .simple-image {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;

  object-fit: contain !important;
}

/* Obrazki jeden pod drugim bez przerw */
#content-area:has(img[src*="infop"]) .simple-image + .simple-image {
  margin-top: 0 !important;
}

/* Tablety i mniejsze ekrany */
@media (max-width: 768px) {
  #content-area:has(img[src*="infop"]) .simple-images {
    width: calc(100% + 24px) !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
    height: auto !important;
  }
}

/* Telefony / bardzo wąskie ekrany */
@media (max-width: 480px) {
  #content-area:has(img[src*="infop"]) .simple-images {
    width: calc(100% + 16px) !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
    height: auto !important;
  }
}

/* Nadpisanie sztywnej wysokości z wersji mobilnej */
@media (max-width: 768px) {
  #content-area:has(img[src*="infop"]) .simple-images {
    height: auto !important;
  }
}

@media (max-width: 480px) {
  #content-area:has(img[src*="infop"]) .simple-images {
    height: auto !important;
  }
}


/* team */

/* === NASZ ZESPÓŁ - prosta, elegancka lista === */

.team-profile-page {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 36px 40px;
  box-sizing: border-box;
}

.team-lead-card {
  display: none;
}

.team-group {
  margin: 34px 0 46px;
}

.team-group-title {
  position: relative;
  text-align: center;
  color: #ff5361;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 30px;
}

.team-group-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 130px;
  height: 3px;
  background-color: #ff5361;
  border-radius: 3px;
}

.team-card-grid {
  display: block;
}

.team-member-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 26px;
}

.team-member-card:hover {
  transform: none;
  box-shadow: none;
}

.team-member-role {
  display: block;
  width: fit-content;
  background: #FFEBD4;
  border-left: 5px solid #FF8B53;
  color: #333;
  border-radius: 0 12px 12px 0;
  padding: 6px 14px;
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.team-member-description p {
  text-indent: 0 !important;
  margin: 0 0 12px !important;
  text-align: justify;
  line-height: 1.65;
}

.team-member-description strong .zielone,
.team-member-description .zielone:first-child {
  color: #27ae60;
  font-weight: 700;
  font-size: 1.08rem;
}

.team-member-description p:first-child {
  margin-top: 0 !important;
}

.team-thanks {
  margin-top: 44px;
}

.team-thanks-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
}

.team-thanks-card p {
  text-indent: 0 !important;
  text-align: justify;
  line-height: 1.65;
  margin: 0 0 16px;
}

.team-thanks-list {
  list-style: disc;
  margin: 14px 0 20px 32px;
  padding: 0;
}

.team-thanks-list li {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  text-align: left;
  font-weight: 600;
  color: #333;
}

.dark-theme .team-member-role {
  background: #333 !important;
  border-left-color: #666 !important;
  color: #e0e0e0 !important;
}

.dark-theme .team-thanks-list li {
  color: #e0e0e0 !important;
}

@media (max-width: 768px) {
  .team-profile-page {
    padding: 0 16px 32px;
  }

  .team-group-title {
    font-size: 1.4rem;
  }

  .team-member-role {
    font-size: 0.9rem;
  }
}

.team-header-image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 42px auto;
  text-align: center;
}

.team-header-image img {
  width: 100%;
  max-width: 1900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* === Kontakt: stabilne dopasowanie kontaktimage.svg do ramki === */
#content-area .kontakt-obrazek-ramka {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 0;
  border-radius: 9px;
}

#content-area .kontakt-obrazek-w-ramce {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  object-fit: contain;
  border-radius: 9px;
}

/* awaryjnie: kontakt nie wypływa poziomo poza pomarańczową ramkę */
#content-area:has(.kontakt-obrazek-ramka) {
  padding: 0 !important;
  overflow-x: hidden !important;
}


/* ==================================================
   KOMUNIKAT O TRWAJĄCYCH PRACACH NAD STRONĄ
================================================== */

body.notice-open {
  overflow: hidden;
}

.development-notice {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-sizing: border-box;

  background: rgba(31, 47, 70, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.development-notice.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.development-notice__window {
  position: relative;

  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;

  padding: 36px 42px 32px;
  box-sizing: border-box;

  font-family: 'Quicksand', sans-serif;
  color: #333333;

  background: #fffdf1;
  border: 6px solid #ff8b53;
  border-radius: 28px;

  box-shadow:
    0 12px 0 rgba(255, 139, 83, 0.3),
    0 24px 60px rgba(0, 0, 0, 0.28);

  text-align: center;

  animation: developmentNoticeOpen 0.4s ease;
}

.development-notice__icon {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 78px;
  height: 78px;
  margin: -6px auto 14px;

  font-size: 44px;
  line-height: 1;

  background: #ffe082;
  border: 4px solid #ffb300;
  border-radius: 50%;

  box-shadow: 0 5px 0 #ff8f00;
}

.development-notice__window h2 {
  margin: 14px 0 24px;

  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.2;
  font-weight: 700;

  color: #4a90e2;
}

.development-notice__text {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

.development-notice__text p {
  margin: 0 0 16px;
}

.development-notice__text strong {
  color: #e05b32;
}

.development-notice__thanks {
  margin-top: 22px;
  text-align: center;
  font-weight: 700;
  color: #4a90e2;
}

.development-notice__button {
  min-width: 180px;
  margin-top: 14px;
  padding: 14px 30px;

  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;

  color: #4e342e;
  background: linear-gradient(145deg, #ffe082, #ffca28);

  border: 3px solid #ffb300;
  border-radius: 22px;

  box-shadow:
    0 5px 0 #ff8f00,
    0 0 14px rgba(255, 193, 7, 0.45);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.development-notice__button:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow:
    0 7px 0 #ff8f00,
    0 0 20px rgba(255, 193, 7, 0.65);
}

.development-notice__button:active {
  transform: translateY(2px);

  box-shadow:
    0 2px 0 #ff8f00,
    0 0 8px rgba(255, 193, 7, 0.4);
}

.development-notice__button:focus-visible {
  outline: none;
  box-shadow:
    0 5px 0 #ff8f00,
    0 0 14px rgba(255, 193, 7, 0.45);
}

@keyframes developmentNoticeOpen {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }

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

/* Wersja mobilna */
@media (max-width: 600px) {
  .development-notice {
    padding: 12px;
    align-items: center;
  }

  .development-notice__window {
    max-height: calc(100vh - 24px);
    padding: 25px 20px 24px;
    border-width: 4px;
    border-radius: 22px;
  }

  .development-notice__icon {
    width: 62px;
    height: 62px;
    font-size: 34px;
  }

  .development-notice__window h2 {
    margin-bottom: 18px;
  }

  .development-notice__text {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .development-notice__button {
    width: 100%;
  }
}

/* Wyłączenie animacji dla osób ograniczających ruch */
@media (prefers-reduced-motion: reduce) {
  .development-notice,
  .development-notice__window,
  .development-notice__button {
    animation: none;
    transition: none;
  }
}

/* Dopasowanie do ciemnego motywu strony */
.dark-theme .development-notice__window {
  color: #e0e0e0;
  background: #1e1e1e;
  border-color: #ff8b53;
}

.dark-theme .development-notice__text strong,
.dark-theme .development-notice__thanks {
  color: #ffd166;
}

.dark-theme .development-notice__window h2 {
  color: #81d4fa;
}

/* =========================================
   Patroni medialni + Mecenasi projektu
========================================= */

.footer-recognition-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.15fr);
  gap: 32px;
  align-items: stretch;

  background: #ffffff;
  padding: 34px 32px 42px;
  box-sizing: border-box;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Quicksand', sans-serif;
}

/* LEWA KOLUMNA */

.recognition-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.footer-media-patrons {
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-top: -20px !important;
  font-family: 'Quicksand', sans-serif;
}

.footer-media-patrons h3 {
  margin: 0 0 14px;
  color: #1f2f46;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.media-patrons-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  margin: 0;
}

.media-patrons-logos img {
  display: block;
  width: auto;
  object-fit: contain;
}

.media-patrons-logos .radio-cen {
  width: 190px;
  height: 100px;
  object-fit: contain;
}

.media-patrons-logos .psycho {
  width: 120px;
  height: 100px;
  object-fit: contain;
}

/* Poparcie Komisji */

.footer-support-official {
  background: transparent;
  padding: 0;
  margin: 0;
}

.ramka {
  max-width: 660px;
  margin: 0 auto;
  padding: 22px 32px;
  box-sizing: border-box;

  background: #ffffff;
  border: 4px solid #ff8b53;
  border-radius: 20px;

  box-shadow: 0 8px 18px rgba(255, 139, 83, 0.12);
}

.support-text {
  margin: 0;
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.55;
  text-align: center;
}

.support-link {
  color: #12358f;
  font-weight: 700;
  text-decoration: underline;
}

/* PRAWA KOLUMNA */

.recognition-right {
  display: flex;
  align-items: stretch;
}

.financial-support-feature {
  position: relative;
  width: 100%;
  overflow: hidden;

  padding: 30px 32px 32px;
  box-sizing: border-box;

  background:
    radial-gradient(circle at top right, rgba(255, 224, 130, 0.6), transparent 34%),
    linear-gradient(145deg, #fffdf1, #fff4d7);

  border: 5px solid #ffb300;
  border-radius: 30px;

  box-shadow:
    0 10px 0 rgba(255, 143, 0, 0.28),
    0 22px 42px rgba(31, 47, 70, 0.14);
}

.financial-support-feature::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;

  width: 150px;
  height: 150px;

  background: rgba(74, 144, 226, 0.12);
  border-radius: 50%;
}


.financial-support-header {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin-bottom: 18px;
  text-align: left;
}


.financial-support-kicker {
  margin: 0 0 4px;
  color: #ff8b53;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.financial-support-feature h3 {
  margin: 0;
  color: #1f2f46;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.financial-support-intro {
  position: relative;
  z-index: 1;

  max-width: 720px;
  margin: 0 auto 24px;

  color: #333;
  font-size: 1.02rem;
  line-height: 1.6;
  text-align: center;
}

.financial-support-intro strong {
  color: #e05b32;
}

.financial-support-cards {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.financial-support-card {
  position: relative;

  padding: 28px 20px 22px;
  box-sizing: border-box;

  background: #ffffff;
  border: 3px solid #ffd166;
  border-radius: 24px;

  text-align: center;

  box-shadow:
    0 6px 0 rgba(74, 144, 226, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.financial-support-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);

  padding: 6px 15px;

  background: #4a90e2;
  color: #ffffff;

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.financial-support-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 96px;
  margin-bottom: 14px;
}

.financial-support-logo-box img {
  display: block;
  max-width: 350px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.financial-support-logo-box1 img {
  display: block;
  max-width: 350px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.financial-support-card h4 {
  margin: 0 0 8px;

  color: #1f2f46;
  font-size: 1.08rem;
  font-weight: 800;
}

.financial-support-card p {
  margin: 0;

  color: #333;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Responsywność */

@media (max-width: 1050px) {
  .footer-recognition-section {
    grid-template-columns: 1fr;
  }

  .recognition-right {
    justify-content: center;
  }

  .financial-support-feature {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .footer-recognition-section {
    padding: 28px 16px 34px;
  }

  .financial-support-header {
    flex-direction: column;
    text-align: center;
  }

  .financial-support-cards {
    grid-template-columns: 1fr;
  }

  .financial-support-feature {
    padding: 28px 18px 26px;
  }

  .ramka {
    padding: 20px 18px;
  }

  .media-patrons-logos {
    gap: 20px;
  }

  .media-patrons-logos .radio-cen {
    width: 165px;
    height: auto;
  }

  .media-patrons-logos .psycho {
    width: 105px;
    height: auto;
  }
}