body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #001163;
  background-color: #f4f4f4;
}

header {
  background-color: #ffffff; /* Zmieniono kolor tła nagłówka na biały */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Dodano cień, aby wyróżnić nagłówek */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Marginesy z lewej i prawej */
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 50px; /* Ustawienie maksymalnej wysokości logo */
  width: auto; /* Automatyczne skalowanie szerokości */
  display: block; /* Wyświetlanie bloku, aby uniknąć problemów z rozmiarem */
}

/* Stylizacja listy nawigacyjnej */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list li a {
  color: #001163; /* Dostosowano kolor tekstu */
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px; /* Dodano padding dla wyróżnienia */
  background-color: #59ccff; /* Dodano tło do przycisków */
  border-radius: 5px; /* Zaokrąglenie rogów */
  transition: background-color 0.3s, color 0.3s; /* Animacja przejścia przy hover */
}

.nav-list li a:hover {
  background-color: #001163; /* Zmiana koloru tła przy najechaniu */
  color: #ffffff; /* Zmiana koloru tekstu przy najechaniu */
}

/* Stylizacja listy harmonogramu */
.schedule-list {
  list-style-type: none;
  padding: 0;
}

.schedule-list li {
  background-color: #fff;
  margin: 10px 0;
  padding: 10px; /* Padding dla listy harmonogramu */
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: background-color 0.3s;
}

.schedule-list li.current {
  background-color: #59a7dd;
  color: #fff;
}

.section {
  padding: 20px 0;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  color: #59ccff;
  margin-bottom: 20px;
  font-size: 32px; /* Zwiększony rozmiar czcionki */
  font-weight: bold; /* Możemy również zwiększyć wagę czcionki, jeśli chcesz, aby była bardziej widoczna */
}

.day {
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 8px;
  padding: 15px 15px 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.day h3 {
  margin-top: 0;
  color: #001163;
}

.day + .day {
  margin-top: 20px;
}

/* Stylizacja sekcji z materiałami prasowymi */
.media-section {
  background-color: #f4f4f4; /* Jaśniejsze tło dla sekcji */
  color: #001163;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.media-section p {
  font-size: 16px; /* Rozmiar czcionki dla notki */
  color: #001163; /* Kolor tekstu notki */
  margin-bottom: 20px; /* Odstęp poniżej notki */
}

.download-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.download-item {
  background-color: #001163; /* Ciemniejsze tło dla elementów pobierania */
  color: #ffffff; /* Biały tekst dla kontrastu */
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  width: 150px; /* Ustalona szerokość dla każdego elementu */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; /* Usuń podkreślenie linku */
  display: inline-block; /* Aby cały element był klikalny */
}

.download-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.download-icon {
  width: 50px; /* Ustalona szerokość ikony */
  margin-bottom: 10px;
}

.download-item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

footer {
  background-color: #001163;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

/* Stylizacja sekcji z aktualną prezentacją */
.current-presentation-section {
  background-color: #59ccff;
  color: #ffffff; /* Kolor tekstu ustawiony na biały */
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.current-presentation-section h2 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff; /* Ustawiono kolor tekstu na biały */
}

.current-presentation-text {
  font-size: 18px; /* Dostosowany rozmiar czcionki */
  font-weight: normal;
  margin: 10px 0;
  color: #ffffff; /* Kolor tekstu ustawiony na biały */
  background-color: #001163;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.time-remaining-text {
  font-size: 18px;
  color: #ffffff;
  background-color: #001163;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Stylizacja sekcji lokalizacji */
.map-thumbnail {
  width: 100%; /* Obrazek zajmie 100% szerokości kontenera */
  max-width: 600px; /* Maksymalna szerokość obrazka */
  height: auto; /* Automatyczne dopasowanie wysokości */
  margin-top: 10px; /* Odstęp od tekstu powyżej */
  border-radius: 8px; /* Zaokrąglenie rogów */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Dodano cień dla efektu wizualnego */
  cursor: pointer; /* Zmiana kursora na wskazujący, aby zasugerować, że jest klikalny */
  transition: transform 0.3s, box-shadow 0.3s; /* Animacja przy najechaniu */
}

.map-thumbnail:hover {
  transform: scale(1.05); /* Powiększenie obrazka przy najechaniu */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Zwiększony cień przy najechaniu */
}

/* Responsive styles */
@media (max-width: 1200px) {
  .header .container,
  .section .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list li {
    margin: 10px 0;
  }

  .nav-list li a {
    padding: 10px 20px;
    font-size: 16px;
  }

  .download-gallery {
    flex-direction: column;
    gap: 10px;
  }

  .download-item {
    width: 80%;
    max-width: 300px;
  }

  .current-presentation-section,
  .media-section,
  .section {
    padding: 10px 0;
  }

  .current-presentation-text,
  .time-remaining-text {
    font-size: 20px; /* Increased font size for better visibility */
    padding: 10px 15px; /* Increased padding */
    border-radius: 8px; /* Slightly rounded corners for better aesthetics */
  }

  .map-thumbnail {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 24px;
  }

  .nav-list li a {
    font-size: 14px;
    padding: 8px 15px;
  }

  .download-item {
    width: 100%;
  }

  .current-presentation-text,
  .time-remaining-text {
    font-size: 24px; /* Further increased font size for very small screens */
    padding: 12px 20px; /* More padding for a larger, more noticeable button */
  }

  footer p {
    font-size: 12px;
  }
}

/* Stylizacja sekcji lokalizacji */
#location {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

#location a {
  color: #59ccff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

#location a:hover {
  text-decoration: underline;
  color: #001163;
}

/* Stylizacja sekcji informacji dodatkowych */
#info {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

#info h3 {
  color: #59ccff;
  margin-bottom: 15px;
  font-size: 24px;
}

/* Stylizacja FAQ */
#info dl {
  margin: 20px 0;
}

#info dt {
  font-weight: bold;
  color: #fff;
  background-color: #59ccff;
  padding: 12px 15px;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#info dt:hover {
  background-color: #001163;
}

#info dd {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-left: 4px solid #59ccff;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  border-radius: 0 5px 5px 0;
}

#info dd a {
  color: #59ccff;
  text-decoration: underline;
  font-weight: bold;
}

#info dd a:hover {
  color: #001163;
}
