:root {
  /* Kolory główne */
  --primary-dark: #1a2e1a; /* Ciemna zieleń */
  --primary-light: #95bd3d; /* Jasna zieleń */
  --secondary-green: #4a7c2c; /* Trawiasta zieleń */

  /* Kolory tła i tekstu */
  --bg-body: #f0f3f0;
  --bg-content: #ffffff;
  --text-main: #2c3e50;
  --text-muted: #555555;
  --text-light: #ffffff;

  /* Statusy i akcenty */
  --status-ok: #95bd3d;
  --status-warning: #ecbd58;
  --status-error: #de2323;
  --status-gray: #bdc3c7;
  --link-fb: #3b5998;
}
/* Podstawowe style */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-body); /* Teraz łatwo zmienisz tło całej strony */
}
/* Wyśrodkowana stylizacja nagłówka Aktualności z dwiema ikonami */
.content h1 {
  font-size: 2.2em;
  color: var(--primary-dark);
  padding-bottom: 15px;
  margin: 20px 0 40px 0;
  border-bottom: 4px solid var(--status-ok);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);

  /* Wyśrodkowanie */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px; /* Odstęp między ikonami a tekstem */

  text-transform: uppercase;
  letter-spacing: 2px;
}
/* Dodatkowy odstęp dla sekcji poniżej, aby nie "kleiły" się do linii */
.tech-info-box {
  margin-top: 10px;
}
/* Stylowy rozdzielacz sekcji */
.section-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 40px 0;
  color: var(--status-ok); /* Kolor zielony z logo */
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.section-divider:not(:empty)::before {
  margin-right: 0.5em;
}

.section-divider:not(:empty)::after {
  margin-left: 0.5em;
}
/* Nagłówek */
.main-header {
  background-color: var(--primary-dark); /* Ciemna zieleń z logo */
  color: var(--text-light);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--primary-light); /* Jasnozielony akcent */
}

.header-logos img {
  display: block;
}

.logo-main {
  height: 60px; /* Dopasowanie wysokości głównego logo */
  width: auto;
}

.logo-pttk {
  height: 50px; /* Logo PTTK jest zazwyczaj kwadratowe/okrągłe */
  width: auto;
}

.top-nav ul {
  display: flex;
  list-style: none;
}

.top-nav li {
  margin: 0 15px;
}

.top-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: var(--primary-light);
}

/* Układ główny */
.container {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  padding: 0 15px;
}

/* Menu boczne */
.sidebar {
  flex: 1;
  background: var(--bg-content);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 280px;
}

.side-nav h3 {
  border-bottom: 3px solid var(--secondary-green); /* Trawiasta zieleń */
  padding-bottom: 5px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.nav-section {
  margin-bottom: 20px;
}

.nav-section h4 {
  font-size: 0.85rem;
  color: var(--secondary-green);
  margin-bottom: 8px;
  border-left: 3px solid var(--status-ok);
  padding-left: 8px;
}

.side-nav ul {
  list-style: none;
}

.side-nav li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.side-nav a {
  text-decoration: none;
  color: var(--text-main);
  transition: padding-left 0.3s;
}

.side-nav a:hover {
  color: var(--secondary-green);
  padding-left: 5px;
}

.fb-link {
  color: #3b5998 !important;
  font-weight: bold;
}

/* Treść główna */
.content {
  flex: 3;
  background: var(--bg-content);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content h1 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

/* Stopka */
.main-footer {
  text-align: center;
  padding: 30px;
  background: var(--primary-dark);
  color: var(--text-light);
  margin-top: 40px;
  border-top: 4px solid var(--secondary-green);
}

.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("TLO3.jpeg"); /* Zmieniono nazwę pliku */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 20px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #95bd3d !important; /* Jasnozielony dla widoczności */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
}
.hero-section p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Styl dla sekcji promocyjnej Rok Szlaków */
.special-promo-section {
  background: linear-gradient(135deg, #1a2e1a 0%, #4a7c2c 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.promo-badge {
  background: #ffd700;
  color: #1a2e1a;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 15px;
}

.promo-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffffff;
  border: none; /* Resetuje obramowanie z głównego h1 */
  text-align: left;
}

.promo-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #ffffff;
  color: #4a7c2c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.promo-button:hover {
  background-color: #f0f3f0;
  transform: translateY(-3px);
}

.promo-icon img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }
  .promo-text h2 {
    text-align: center;
  }
}
/* Siatka - upewnij się, że jest tak: */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dwie kolumny */
  gap: 25px;
  margin-top: 20px;
}

/* Karta wycieczki */
.trip-card {
  background: var(--bg-content);
  border-radius: 12px;
  overflow: hidden; /* Aby zdjęcie nie wystawało poza zaokrąglone rogi */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.trip-card:hover {
  transform: translateY(-5px); /* Delikatne uniesienie po najechaniu */
}

/* Nagłówek karty */
.trip-header {
  padding: 15px;
  background-color: var(--bg-body);
  text-align: center;
}

.trip-date {
  font-size: 0.9rem;
  color: var(--secondary-green);
  font-weight: bold;
}

.trip-location {
  font-size: 1.1rem;
  margin-top: 5px;
  color: var(--primary-dark);
}

/* Zdjęcie */
.trip-img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* Dopasowuje zdjęcie bez deformacji */
  display: block;
}

/* Treść karty */
.trip-body {
  padding: 15px;
  flex-grow: 1; /* Pozwala opisowi zająć dostępną przestrzeń */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trip-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--text-muted);
}

/* Przycisk PDF */
.pdf-button {
  display: inline-block;
  background-color: var(--primary-dark);
  color: var(--text-light);
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.pdf-button:hover {
  background-color: var(--secondary-green);
}

/* Poprawka kolorów statusu na dole kafelka */
.trip-availability {
  padding: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

/* Dodaj te klasy pomocnicze, by móc sterować kolorem tła */
.status-green {
  background-color: var(--status-ok); /* Zielony dla wolnych miejsc */
}
.status-orange {
  background-color: var(--status-warning); /* Zielony dla wolnych miejsc */
}

.status-red {
  background-color: var(--status-error); /* Czerwony dla braku miejsc */
  color: var(--text-light);
}
/* Układ przycisków w karcie wycieczki */
.trip-buttons-row {
  display: flex;
  gap: 10px;
}

.action-button {
  flex: 1; /* Każdy przycisk zajmuje dokładnie połowę */
  text-decoration: none;
  padding: 10px 5px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.gpx-button {
  background-color: var(--bg-content);
  color: var(--secondary-green);
  border: 2px solid var(--secondary-green);
}

.gpx-button:hover {
  background-color: var(--secondary-green);
  color: var(--text-light);
}

.pdf-button {
  background-color: var(--primary-dark);
  color: var(--text-light);
  border: 2px solid var(--primary-dark);
}

.pdf-button:hover {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
}
/* Efekt szarości dla sekcji nadchodzącej */
.upcoming-grayscale .trip-card {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.upcoming-grayscale .trip-img {
  height: 250px; /* Nieco wyższe zdjęcie, skoro nie ma opisu pod spodem */
  object-fit: cover;
}

/* Kolor statusu dla planowanych */
.status-gray {
  background-color: var(--status-gray);
  color: var(--text-main);
  padding: 8px;
  text-align: center;
  font-weight: bold;
}

/* Rozdzielacz sekcji */
.section-divider {
  margin: 40px 0;
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    transparent,
    var(--primary-light),
    transparent
  );
}
.section-title-alt {
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
/* Styl dla ikony Facebooka */
.fb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #3b5998;
  color: white !important;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: transform 0.3s;
}

.fb-icon:hover {
  transform: scale(1.1);
  padding-left: 0 !important; /* Nadpisanie Twojego stylu dla hover w menu bocznym */
}
/* Styl kart członków Zarządu */
.members-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.member-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Delikatny cień */
  transition: transform 0.2s ease;
}

.member-card:hover {
  transform: translateX(5px);
  border-color: #95bd3d;
}

.member-photo {
  width: 120px;
  height: 150px;
  border-radius: 12px; /* Zaokrąglone rogi */
  object-fit: cover;
  margin-right: 25px;
  border: 1px solid #e0e0e0;
}

.member-info h3 {
  margin: 0;
  color: #1a2e1a;
  font-size: 1.2rem;
}

.member-info .position {
  color: #4a7c2c;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.member-info p {
  margin: 2px 0;
  font-size: 0.95rem;
}
.contact-link {
  text-decoration: none;
  color: #2c3e50; /* Spójny kolor z resztą tekstu */
  transition: color 0.3s;
}

.contact-link:hover {
  color: #4a7c2c; /* Kolor zmienia się na zielony po najechaniu */
  text-decoration: underline;
}
/* Układ strony kontakt */
.contact-split {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.contact-details {
  flex: 1;
}

.contact-details h2 {
  color: #4a7c2c;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.contact-map {
  flex: 1;
  min-width: 300px;
}

/* Układ dla Przodowników */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(280px, 1fr)
  ); /* Automatyczne 3 kolumny lub 1 na telefonach */
  gap: 20px;
  margin-top: 30px;
}

.guide-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Delikatny cień jak w zarządzie */
  border-left: 4px solid var(--status-ok); /* Akcent kolorystyczny */
}

.guide-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.guide-photo {
  width: 70px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px; /* Zaokrąglone rogi zgodnie z prośbą */
  margin-right: 15px;
}

.guide-basic h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin: 0;
}

.legitymacja {
  font-size: 0.85rem;
  color: #666;
}

.perm-title {
  font-weight: bold;
  font-size: 0.9rem;
  color: #4a7c2c;
  margin-bottom: 5px;
}

.perm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.perm-list li {
  font-size: 0.85rem;
  padding: 2px 0;
  border-bottom: 1px dashed #f0f0f0;
}

.perm-list li:last-child {
  border-bottom: none;
}
.ktg-section {
  margin-bottom: 40px;
}

.section-title {
  color: var(--primary-dark);
  border-left: 5px solid var(--status-ok);
  padding-left: 15px;
  margin-bottom: 25px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

/* Upewnij się, że linki mailowe są wyraźne */
.contact-link {
  color: #4a7c2c;
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}
/* Styl nagłówka KTG */
.ktg-header-box {
  display: flex;
  align-items: center;
  background-color: #f9fdf9;
  border: 2px solid var(--status-ok);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ktg-logo-img {
  height: 80px;
  width: auto;
  margin-right: 25px;
}

/* To wymusza układ dwukolumnowy dla Zarządu KTG */
.ktg-board-grid {
  display: grid;
  grid-template-columns: repeat(
    2,
    1fr
  ); /* Dokładnie 2 kolumny o równej szerokości */
  gap: 20px;
  margin-bottom: 30px;
}
.ktg-header-text h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.6rem;
  line-height: 1.2;
}

.ktg-header-text p {
  margin: 5px 0 0 0;
  color: #4a7c2c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stylizacja tabeli GOT */
.table-container {
  overflow-x: auto; /* Przewijanie tabeli na telefonach */
  margin-top: 15px;
}

.got-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.got-table th,
.got-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.got-table th {
  background-color: #1a2e1a;
  color: white;
  font-weight: 600;
}

/* Kolorowe etykiety stopni */
.badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
  color: #fff;
}

.popularna {
  background-color: #4a7c2c; /* Ładna, "pttk-owska" zieleń */
  color: white;
}
.brazowa {
  background-color: #cd7f32;
}
.srebrna {
  background-color: #bdc3c7;
  color: #2c3e50;
}
.zlota {
  background-color: #f1c40f;
  color: #2c3e50;
}

/* Box informacyjny */
.info-box {
  background: #eef2ee;
  border-left: 5px solid #4a7c2c;
  padding: 20px;
  border-radius: 4px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.info-box li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.info-box li::before {
  content: "🏔️";
  position: absolute;
  left: 0;
}

.otp-badge {
  background-color: #3b5998; /* Niebieski - kolor szlaków nizinnych/pieszych */
  color: white;
}
/* Style dla strony Download */
.download-container {
  margin-top: 30px;
}

.download-section {
  margin-bottom: 30px;
}

.download-section h3 {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--status-ok);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.download-list {
  list-style: none;
  padding: 0;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid #eee;
}

.download-item:hover {
  transform: translateX(10px);
  border-color: var(--status-ok);
  background-color: #f9fdf9;
}

.file-type {
  background-color: #e74c3c;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Styl dla szybkiego pobierania pod tabelami */
.quick-download {
  background-color: #f0f3f0;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  border: 1px dashed var(--status-ok);
}

.quick-download p {
  margin-bottom: 10px;
  font-weight: bold;
}

/* Dyskretna stopka administratora */
.site-footer {
  background-color: var(--primary-dark); /* Ciemna zieleń spójna z nagłówkiem */
  color: #bdc3c7;
  padding: 15px 20px;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 40px;
  border-top: 3px solid var(--status-ok);
}

.admin-link,
.whatsapp-link {
  color: var(--status-ok);
  text-decoration: none;
  transition: color 0.3s;
}

.admin-link:hover,
.whatsapp-link:hover {
  color: white;
  text-decoration: underline;
}

.whatsapp-link {
  font-weight: bold;
}
/* Styl dla sekcji GPX na stronie głównej */
.tech-info-box {
  background: linear-gradient(135deg, #1a2e1a 0%, #2e7d32 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.tech-icon {
  font-size: 50px;
}

.tech-text h2 {
  color: var(--status-ok);
  margin-bottom: 10px;
  border: none; /* Usuwamy domyślną linię pod nagłówkiem jeśli jest */
}

.tech-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--status-ok);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.tech-link:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}
/* Styl dla kafelka najbliższej wycieczki */
.next-trip-promo {
  background: linear-gradient(135deg, #1a2e1a 0%, #2e4d2e 100%);
  color: white;
  border-radius: 15px;
  margin-bottom: 40px;
  overflow: hidden; /* Ważne, by zdjęcie nie wystawało poza zaokrąglone rogi */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-container {
  display: flex;
  align-items: stretch; /* Zdjęcie i tekst będą tej samej wysokości */
}

.promo-image-box {
  flex: 1; /* Zajmuje 1 część miejsca */
  min-width: 300px;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Zdjęcie wypełni przestrzeń bez rozciągania */
  border-right: 5px solid var(--status-ok);
}

.promo-content {
  flex: 1.5; /* Tekst zajmuje nieco więcej miejsca niż zdjęcie */
  padding: 30px;
}

/* Responsywność - na małych ekranach zdjęcie ląduje na górze */
@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
  }
  .promo-image-box {
    height: 200px;
    min-width: 100%;
  }
  .promo-img {
    border-right: none;
    border-bottom: 5px solid var(--status-ok);
  }
}

.promo-badge {
  background-color: var(--status-ok);
  color: var(--primary-dark);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.next-trip-promo h2 {
  margin-bottom: 10px;
  font-size: 1.8em;
}

.promo-date {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--status-ok);
  margin-bottom: 15px;
}

.promo-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: var(--status-ok);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.promo-button:hover {
  background-color: #a8d145;
  transform: translateY(-2px);
}
/* --- STYLIZACJA GALERII --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-container img {
  transform: scale(1.05);
}

.gallery-info {
  padding: 15px;
  text-align: center;
}

.gallery-info h3 {
  color: #1a2e1a;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.gallery-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.download-photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--status-ok);
  color: var(--primary-dark);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.download-photo-btn:hover {
  background-color: #4a7c2c;
  color: white;
}
/* --- STYLIZACJA LIGHTBOX (MODAL) --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000; /* Powyżej menu */
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  border-radius: 8px;
  animation-name: zoom;
  animation-duration: 0.3s;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  font-size: 1.2rem;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--status-ok);
}
/* Styl dla boxu informacyjnego o składkach */
.alert-info-box {
  background: linear-gradient(
    135deg,
    #e67e22 0%,
    #d35400 100%
  ); /* Pomarańczowy gradient */
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 8px solid #f39c12;
}

.alert-info-box h2 {
  color: #fff !important;
  margin-bottom: 10px;
  border: none !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  display: block !important;
}

.alert-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #d35400;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.alert-link:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}
/* Dodatkowe wyróżnienie tekstu o niższej cenie */
.highlight-text {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}
/* Style dla przycisków na podstronie składki */
.back-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 10px;
  transition: background 0.3s;
}

.back-btn:hover {
  background-color: #1a2a3a;
}

.download-btn-green {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--status-ok);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.download-btn-green:hover {
  background-color: #4a7c2c;
  color: white;
}
/* Styl dla informacji o członkostwie */
.membership-info {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 5px solid var(--status-ok); /* Zielony akcent PTTK */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--status-ok);
  font-weight: bold;
}

.info-note {
  background-color: #f9fdf9;
  padding: 15px;
  border-radius: 8px;
  font-style: italic;
  font-size: 0.95rem;
  border: 1px dashed var(--status-ok);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}
/* Nowoczesna karta członkowska */
.membership-card {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  overflow: hidden;
}

.card-header {
  background-color: var(--primary-dark); /* Kolor nagłówka z Twojej strony */
  color: var(--status-ok); /* Zielony akcent PTTK */
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-header h2 {
  font-size: 1.4rem !important;
  margin: 0 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.card-icon {
  font-size: 2rem;
}

.card-body {
  padding: 30px;
}

.membership-requirement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.membership-requirement:last-child {
  border-bottom: none;
}

.check-mark {
  background: var(--status-ok);
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.membership-footer {
  background: #f9fdf9;
  padding: 20px 30px;
  border-top: 2px dashed var(--status-ok);
  color: #555;
  font-style: italic;
}
/* Stylizacja kroków zapisu do PTTK */
.steps-section {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  overflow: hidden;
}

.steps-container {
  padding: 30px;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.step-number {
  background-color: var(--status-ok); /* Twój zielony kolor */
  color: var(--primary-dark);
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content p {
  margin-bottom: 10px;
}

.step-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f0f3f0; /* Jasny szary tła */
  color: var(--primary-dark);
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid var(--status-ok);
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step-download-btn:hover {
  background-color: var(--status-ok);
  color: white;
}
/* Stylizacja szczegółowych kart składek */
.fee-details-section {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  overflow: hidden;
}

.fee-details-content {
  padding: 30px;
}

.intro-text {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-size: 1.1rem;
}

.fee-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.fee-card {
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.fee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fee-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.fee-label {
  font-weight: bold;
  color: var(--status-ok);
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.fee-description {
  font-size: 0.9rem;
  color: #666;
}

/* Kolorystyczne wyróżnienie kart */
.fee-card.normal {
  border-top: 5px solid var(--primary-dark);
}
.fee-card.relief {
  border-top: 5px solid var(--status-ok);
}
.fee-card.student {
  border-top: 5px solid #3498db;
}
/* Specyficzne style dla sekcji wpisowego */
.gray-header {
  background-color: #34495e !important; /* Ciemniejszy, szary odcień */
}

.normal-gray {
  border-top: 5px solid #7f8c8d !important;
}
.relief-gray {
  border-top: 5px solid #95a5a6 !important;
}
.student-gray {
  border-top: 5px solid #bdc3c7 !important;
}

/* Dodatkowy efekt dla kart wpisowego, żeby były lżejsze wizualnie */
.entry-fee .fee-price {
  color: #34495e;
}

.entry-fee .fee-card {
  background-color: #fcfcfc;
}
/* Style dla sekcji ulg szczegółowych */
.blue-header {
  background-color: #2980b9 !important; /* Niebieski odcień dla rozróżnienia */
}

.discounts-content {
  padding: 30px;
}

.discount-group {
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 8px;
  background-color: #fcfcfc;
}

.discount-group h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  border-left: 4px solid var(--status-ok);
  padding-left: 10px;
}

.check-list,
.star-list {
  list-style: none;
  padding-left: 5px;
}

.check-list li::before {
  content: "•";
  color: var(--status-ok);
  font-weight: bold;
  margin-right: 10px;
}

/* Wyróżnienie dla zwolnień "Z" */
.exemption {
  background-color: #fff9e6; /* Delikatny złoty/żółty kolor */
  border: 1px solid #f1c40f;
}

.exemption h4 {
  border-left-color: #f1c40f;
}

.star-list li::before {
  content: "★";
  color: #f1c40f;
  margin-right: 10px;
}
.contact-btn-blue {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2980b9;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-btn-blue:hover {
  background-color: #1a5276;
}
/* Stylizacja informacji o ciągłości składki */
.continuity-info {
  margin-bottom: 40px;
}

.continuity-box {
  background-color: #fff;
  border: 2px solid #e67e22; /* Pomarańczowy kolor ostrzegawczy */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.1);
}

.continuity-icon {
  font-size: 2rem;
}

.continuity-box p {
  margin: 0;
  color: #d35400; /* Ciemniejszy pomarańczowy dla tekstu */
  font-size: 1rem;
  line-height: 1.5;
}
/* Stylizacja sekcji przelewu */
.transfer-box {
  background-color: #f8fbfd;
  border: 1px solid #d1e2f3;
  border-radius: 8px;
  padding: 20px;
}

.transfer-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.account-number {
  font-family: "Courier New", monospace;
  font-weight: bold;
  letter-spacing: 1px;
  color: #2980b9;
}

.transfer-title-info {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #bdc3c7;
}

.title-label {
  font-weight: bold;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.title-example {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  border-left: 4px solid #2980b9;
  font-style: italic;
  color: #555;
}
/* Stylizacja sekcji przelewu i alertu o wpisowym */
.transfer-alert {
  background-color: #fff9e6; /* Kolor zbliżony do sekcji zwolnień "Z" */
  border: 1px solid #f1c40f;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.alert-icon {
  font-size: 1.5rem;
}

.transfer-box {
  background-color: #f8fbfd;
  border: 1px solid #d1e2f3;
  border-radius: 8px;
  padding: 20px;
}

.account-number {
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 1.2rem; /* Powiększony numer dla lepszej widoczności */
  color: #2980b9;
  letter-spacing: 1px;
}

.title-example {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  border-left: 4px solid #2980b9;
  font-style: italic;
  margin-top: 10px;
}
.transfer-flex-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-top: 15px;
}

.transfer-box {
  flex: 2;
  background-color: #f8fbfd;
  border: 1px solid #d1e2f3;
  border-radius: 8px;
  padding: 20px;
}

/* Style dla Archiwum */
.archive-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.month-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e6e0;
}

.month-header {
  background: #1a2e1a;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.month-header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: white;
  border: none;
  box-shadow: none;
  padding: 0;
  text-transform: none;
}

.archive-list {
  list-style: none;
  padding: 0;
}

.archive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.archive-item:last-child {
  border-bottom: none;
}
.archive-item:hover {
  background-color: #f9fff9;
}

.trip-date {
  display: block;
  font-size: 0.85rem;
  color: #666;
  font-weight: bold;
}

.trip-name {
  font-weight: 500;
  color: #2c3e50;
}

.download-links {
  display: flex;
  gap: 10px;
}

.btn-archive {
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f0f3f0;
  color: #2c3e50;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.btn-archive:hover {
  background: var(--status-ok);
  color: white;
  border-color: var(--status-ok);
}

.btn-archive.gpx:hover {
  background: #2980b9;
  border-color: #2980b9;
}

.no-trips {
  padding: 20px;
  color: #999;
  font-style: italic;
}

/* RWD dla archiwum */
@media (max-width: 600px) {
  .archive-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* --- ARCHIWUM WYCIECZEK --- */
.archive-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}

.month-block {
  border-left: 4px solid var(--status-ok);
  padding-left: 20px;
}

.month-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.month-label h2 {
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 1.5rem !important;
}

.archive-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.trip-main-info h3 {
  margin: 5px 0 0 0;
  color: var(--primary-dark);
}

.trip-date {
  font-size: 0.85rem;
  color: #666;
  font-weight: bold;
}

.archive-actions {
  display: flex;
  gap: 15px;
}

.arch-btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Kolory przycisków */
.arch-btn.pdf {
  background: #f8f9fa;
  color: #e74c3c;
  border: 1px solid #e74c3c;
}
.arch-btn.pdf:hover {
  background: #e74c3c;
  color: white;
}

.arch-btn.gpx {
  background: #f8f9fa;
  color: #2980b9;
  border: 1px solid #2980b9;
}
.arch-btn.gpx:hover {
  background: #2980b9;
  color: white;
}

.month-empty {
  opacity: 0.6;
}

.status-tag {
  font-size: 0.8rem;
  background: #ddd;
  padding: 2px 10px;
  border-radius: 10px;
  margin-left: 10px;
}
/* --- STYLE ARCHIWUM --- */
.archive-main-title {
  margin-bottom: 40px;
}

.month-group {
  margin-bottom: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.month-header {
  background: #1a2e1a;
  color: white;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.month-header h2 {
  margin: 0 !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1.4rem !important;
  padding: 0 !important;
}

.trip-list {
  padding: 10px 0;
}

.trip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
}

.trip-item:last-child {
  border-bottom: none;
}

.trip-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
}

.trip-date {
  font-size: 0.8rem;
  color: #7f8c8d;
  font-weight: bold;
}

.trip-files {
  display: flex;
  gap: 12px;
}

.btn-dl {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: 0.3s;
}

.btn-dl.pdf {
  border: 1px solid #e74c3c;
  color: #e74c3c;
}
.btn-dl.pdf:hover {
  background: #e74c3c;
  color: white;
}

.btn-dl.gpx {
  border: 1px solid #2980b9;
  color: #2980b9;
}
.btn-dl.gpx:hover {
  background: #2980b9;
  color: white;
}

.month-empty {
  opacity: 0.7;
}
.comming-soon {
  font-size: 0.8rem;
  margin-left: auto;
  font-style: italic;
}

@media (max-width: 768px) {
  .trip-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .trip-files {
    width: 100%;
  }
  .btn-dl {
    flex: 1;
    text-align: center;
  }
}
/* Responsywność */
@media (max-width: 768px) {
  .archive-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .archive-actions {
    width: 100%;
  }
  .arch-btn {
    flex: 1;
    justify-content: center;
  }
}
/* --- STYLE STRONY W BUDOWIE --- */
.under-construction {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
  max-width: 600px;
}

.construction-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.under-construction h1 {
  border-bottom: none !important;
  box-shadow: none !important;
  margin-bottom: 10px !important;
}

.under-construction p {
  color: #666;
  font-size: 1.1rem;
}

.construction-actions {
  margin-top: 30px;
}

.back-home-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--status-ok);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.back-home-btn:hover {
  background-color: #1a2e1a;
}

/* Animacja ikony */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
/* Styl dla licznika odwiedzin */
.visit-counter {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(
    26,
    46,
    26,
    0.9
  ); /* Ciemna zieleń pasująca do Twojego nagłówka */
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--status-ok); /* Jasnozielona obwódka */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-size: 0.8rem;
  color: white;
}

.visit-counter p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visit-counter img {
  height: 20px; /* Dopasowanie wielkości cyferek do tekstu */
  filter: brightness(0.9); /* Delikatne przyciemnienie, by nie raziło */
}
/* Stylizacja nowej tabeli Przodowników GOT */
.got-perm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden; /* Zaokrąglenie rogów tabeli */
  font-size: 0.9rem;
}

.got-perm-table th {
  background-color: var(--primary-dark);
  color: white;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.got-perm-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
  vertical-align: middle;
}

.got-perm-table .guide-name {
  font-weight: bold;
  text-align: left;
  color: #1a2e1a;
}

.got-perm-table .guide-leg {
  color: #666;
  font-family: monospace;
}

/* Statusy uprawnień - Kolory tła */
.perm-status {
  font-weight: bold;
  font-size: 0.75rem;
  transition: all 0.3s;
}

.perm-status.active {
  background-color: var(--status-ok); /* Zielony dla posiadanych uprawnień */
  color: #1a2e1a;
}

.perm-status.inactive {
  background-color: #e0e0e0; /* Jasny szary dla braku uprawnień */
  color: #888;
}
/* Specyficzne ustawienia dla prostej tabeli pieszej */
.simple-table {
  max-width: 600px; /* Ograniczamy szerokość, bo przy 2 kolumnach na całą stronę byłaby za szeroka */
  margin-left: 0;
}

.simple-table th,
.simple-table td {
  text-align: left; /* W tej tabeli tekst lepiej wygląda wyrównany do lewej */
  padding-left: 20px;
}
/* Styl dla ikony Instagrama */
.ig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  /* Gradient charakterystyczny dla Instagrama */
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white !important;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: transform 0.3s;
  margin-left: 5px; /* Odstęp od ikony Facebooka */
}

.ig-icon:hover {
  transform: scale(1.1);
  padding-left: 0 !important;
}
.archive-history {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.archive-history h3 {
  margin-bottom: 15px;
  color: #333;
}

.zip-download-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Styl dla przycisku ZIP, jeśli chcesz by miał inny kolor, np. pomarańczowy */
.btn-dl.zip {
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-dl.zip:hover {
  background-color: #d35400;
}
/* Styl dla rzędu odznak w sekcji GOT */
.badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding: 10px;
  background-color: #f9fdf9;
  border-radius: 8px;
}

.badges-row img {
  height: 80px; /* Wysokość dopasowana do czytelności */
  width: auto;
  transition: transform 0.3s ease;
}

.badges-row img:hover {
  transform: scale(1.1); /* Efekt powiększenia po najechaniu */
}
/* Kontener dla przenikających się odznak */
.jubilee-images-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.jubilee-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Skróciliśmy cykl do 4 sekund, aby szybciej następowała zmiana */
  animation: badgeFade 4s infinite ease-in-out;
}

/* Pierwsze zdjęcie */
.jubilee-img:nth-child(1) {
  animation-delay: 0s;
}

/* Drugie zdjęcie - opóźnienie równe połowie cyklu */
.jubilee-img:nth-child(2) {
  animation-delay: 2s;
}

/* Animacja przenikania - wydłużone przejście */
@keyframes badgeFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  } /* Szybkie pojawienie się */
  40% {
    opacity: 1;
  } /* Czas wyświetlania (krótki postój) */
  60% {
    opacity: 0;
  } /* Długie, płynne zanikanie (przenikanie) */
  100% {
    opacity: 0;
  }
}
/* Responsywność dla mniejszych ekranów */
@media (max-width: 600px) {
  .badges-row img {
    height: 60px;
  }
}
/* Responsywność dla małej tabeli */
@media (max-width: 600px) {
  .simple-table {
    width: 100%;
  }
}

/* Responsywność dla tabeli */
@media (max-width: 768px) {
  .got-perm-table th {
    font-size: 0.7rem;
    padding: 8px 4px;
  }
  .got-perm-table td {
    padding: 8px 4px;
  }
}

/* Ukrywamy na bardzo małych telefonach, żeby nie zasłaniał treści */
@media (max-width: 480px) {
  .visit-counter {
    display: none;
  }
}
/* Responsywność */
@media (max-width: 768px) {
  .transfer-flex-container {
    flex-direction: column;
  }
  .qr-container {
    width: 100%;
  }
}
/* Responsywność */
@media (max-width: 600px) {
  .continuity-box {
    flex-direction: column;
    text-align: center;
  }
}
/* Responsywność */
@media (max-width: 600px) {
  .fee-cards-container {
    grid-template-columns: 1fr;
  }
}
@keyframes zoom {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}

/* Responsywność dla urządzeń mobilnych */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 95%;
  }
}
/* Responsywność dla boxu technologicznego */
@media (max-width: 600px) {
  .tech-content {
    flex-direction: column;
    text-align: center;
  }
}
/* Responsywność dla małych ekranów */
@media (max-width: 600px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    gap: 15px;
  }

  .top-nav ul {
    margin: 10px 0;
  }

  .container {
    flex-direction: column;
  }

  .sidebar {
    order: 2;
  }

  .content {
    order: 1;
  }
}
/* Responsywność dla telefonów */
@media (max-width: 992px) {
  .trips-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
  }
}

@media (max-width: 600px) {
  .trips-grid {
    grid-template-columns: 1fr; /* 1 kolumna na telefonach */
  }
}
/* Responsywność dla kart członków */
@media (max-width: 480px) {
  .member-card {
    flex-direction: column;
    text-align: center;
  }

  .member-photo {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* Dostosowanie dla urządzeń mobilnych */
@media (max-width: 900px) {
  .contact-split {
    flex-direction: column;
  }

  .contact-map {
    width: 100%;
  }
}
/* Responsywność dla nagłówka KTG */
@media (max-width: 600px) {
  .ktg-header-box {
    flex-direction: column;
    text-align: center;
  }
  .ktg-logo-img {
    margin-right: 0;
    margin-bottom: 15px;
    height: 60px;
  }
}
/* Poprawka dla telefonów, żeby kafelki nie były za szerokie */
@media (max-width: 450px) {
  .ktg-board-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    flex-direction: column; /* Zdjęcie nad tekstem na małych ekranach */
    text-align: center;
  }

  .member-photo {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* Na bardzo małych ekranach (telefony) zmieniamy na jedną kolumnę */
@media (max-width: 850px) {
  .ktg-board-grid {
    grid-template-columns: 1fr;
  }
}

/* Dostosowanie dla telefonów */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Stylizacja życzeń na Dzień Kobiet */
.womens-day-wishes {
  margin: 30px 0;
  padding: 20px;
}

.wishes-box {
  background-image: url(dkobiet.jpeg); /* Delikatny różowy gradient */
  background-size: cover;
  background-position: center;
  border: 2px solid var(--status-ok); /* Zielona ramka PTTK dla kontrastu */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Sekcja życzeń na Dzień Kobiet */
.wishes-content h2 {
  color: #ffffff !important; /* Biały kolor dla kontrastu */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Cień, by napis nie zlewał się z tłem */
  font-size: 2rem !important;
  margin-bottom: 15px !important;
  border: none !important;
  box-shadow: none !important;
  text-transform: none !important;
  display: block !important;
}

.wishes-content p {
  color: #ffffff; /* Biały kolor */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Lekki cień dla czytelności */
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 500; /* Lekko pogrubiony, by był wyraźniejszy */
}

.wishes-signature {
  margin-top: 20px;
  font-weight: bold;
  color: #ffd700; /* Złoty kolor dla podpisu - ładnie odcina się na ciemniejszym tle */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}

/* Dodatkowe przyciemnienie zdjęcia, jeśli tekst nadal byłby mało czytelny */
.wishes-box {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(dkobiet.jpeg);
  background-size: cover;
  background-position: center;
  border: 3px solid #ffffff; /* Biała ramka pasująca do tekstu */
  border-radius: 15px;
  padding: 40px;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsywność dla życzeń */
@media (max-width: 600px) {
  .wishes-box {
    flex-direction: column;
    padding: 20px;
  }
  .wishes-icon {
    display: none; /* Ukrywamy kwiatki na bardzo małych ekranach dla czytelności */
  }
}

/* Stylizacja zdjęcia w sekcji promocyjnej wycieczki poczatek */
.promo-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px; /* Responsywność dla mniejszych ekranów */
}

.promo-trip-image {
  width: 100%;
  max-width: 350px; /* Maksymalna szerokość zdjęcia */
  height: auto;
  border-radius: 15px; /* Zaokrąglone rogi pasujące do kafelka */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Cień pod zdjęciem */
  object-fit: cover; /* Zapewnia dobre wypełnienie przestrzeni */
  border: 3px solid rgba(255, 255, 255, 0.5); /* Delikatna ramka */
}

/* Dodatkowe wyróżnienie daty w tekście promocyjnym */
.korbielow-promo .promo-date {
  font-weight: bold;
  color: #ffd700; /* Złoty kolor daty na ciemnym tle */
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Responsywność: na telefonach zdjęcie ląduje pod tekstem */
@media (max-width: 768px) {
  .korbielow-promo .promo-content {
    flex-direction: column;
    text-align: center;
  }
  .promo-image-container {
    margin-top: 20px;
  }
}
/* Stylizacja zdjęcia w sekcji promocyjnej wycieczki koniec */

.pttk-2026-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px; /* Dopasuj wielkość */
  z-index: 1000;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.pttk-2026-badge:hover {
  transform: scale(1.1); /* Delikatne powiększenie po najechaniu */
}

.pttk-2026-badge img {
  width: 100%;
  height: auto;
}

/* Ukrywamy na bardzo małych telefonach, żeby nie zasłaniało tekstu */
@media (max-width: 480px) {
  .pttk-2026-badge {
    width: 70px;
    bottom: 10px;
    right: 10px;
  }
}

/* Styl dla znaku wodnego wewnątrz karty wycieczki */
.watermark-section {
  position: relative; /* To jest kluczowe, by logo nie "uciekło" poza ramkę */
  overflow: hidden; /* Przycina logo, jeśli wystaje poza krawędzie */
}

.watermark-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px; /* Rozmiar znaku wodnego */
  height: 400px;
  background-image: url("PTTK_2026.png"); /* Ścieżka do pliku */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  /* Ustawienie przezroczystości - 0.07 to ok. 7%, będzie bardzo subtelne */
  opacity: 0.07;

  /* Obrócenie logo, aby wyglądało jak klasyczny znak wodny */
  transform: translate(-50%, -50%) rotate(-20deg);

  /* Sprawia, że logo nie blokuje klikania w linki/tekst pod spodem */
  pointer-events: none;
  z-index: 0;
}

/* Styl dla sekcji aktualności o Tatrach */
/* Kontener główny sekcji */
.year-2026-theme {
  position: relative; /* Ważne dla pozycjonowania logo w rogu */
  border: 2px solid #95bd3d;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-container {
  display: flex;
  gap: 25px;
  align-items: center;
}

/* Lewa strona - Zdjęcie */
.news-image-side {
  flex: 0 0 200px; /* Stała szerokość zdjęcia */
}

.img-bruzda-side {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Prawa strona - Tekst */
.news-text-side {
  flex: 1;
  padding-right: 40px; /* Miejsce na logo w rogu */
}

.news-text-side h2 {
  margin: 5px 0;
  color: #1a2e1a;
  font-size: 1.4rem;
}
.news-text-side h3 {
  margin-bottom: 10px;
  color: #4a7c2c;
  font-size: 1.1rem;
}

/* Logo w prawym dolnym rogu */
.logo-corner {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 40px; /* Jeszcze mniejsze, jako sygnatura */
  height: auto;
  opacity: 0.8;
}

/* Badge i przycisk */
.badge-2026 {
  background: #1a2e1a;
  color: #f1c40f;
  padding: 3px 10px;
  font-size: 0.7rem;
  border-radius: 15px;
  font-weight: bold;
}

.btn-2026 {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background-color: #95bd3d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85em;
}

/* Responsywność - na komórkach zdjęcie ląduje na górze */
@media (max-width: 600px) {
  .news-container {
    flex-direction: column;
    text-align: center;
  }
  .news-image-side {
    flex: 0 0 auto;
    width: 100%;
  }
  .news-text-side {
    padding-right: 0;
  }
  .logo-corner {
    position: static;
    margin-top: 15px;
    width: 50px;
  }
}
