@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: var(--header-color);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --primary-red: rgb(234, 30, 38);
  --primary-black: #000;
  --accent-dark: #333;
  --gray-light: #f5f5f5;
  --gray-medium: #ddd;
  --white: #fff;
  --green: green;
  --header-color: #fff;
}

header {
  background-color: var(--header-color);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray-medium);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container img {
  height: 40px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 500;
  color: var(--accent-dark);
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--primary-red);
}

.cta-nav {
  margin-left: 2rem;
  background-color: var(--primary-red);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.2s;
}

.cta-nav:hover {
  background-color: var(--redsecond);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: var(--accent-dark);
  border-radius: 2px;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background-color: var(--gray-light);
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.hero-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-dark);
}

.hero-text .btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.hero-text .btn-primary:hover {
  background-color: var(--redsecond);
}

.hero-image-wrapper {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-wrapper img:hover {
  transform: scale(1.05);
}

.steps {
  padding: 3rem 2rem;
  background-color: var(--header-color);
}

.steps h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--h1-text);
}

.steps h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  flex-shrink: 0;
}

.step-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--h1-text);
}

.step-content p {
  font-size: 1rem;
  color: var(--h1-text);
}

.summary {
  background-color: var(--gray-light);
  padding: 3rem 2rem;
  text-align: center;
}

.news-1 {
  background-color: var(--gray-light);
  padding: 3rem 2rem;
  text-align: left;
}
.news-1 h1 {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  color: var(--h1-text);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.news-1 h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.news-1 h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.news-1 p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--h1-text);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.table-wrapper {
  text-align: center;
}

.table-wrapper table {
  margin: 0 auto;
}

.summary h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.summary h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.summary p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--h1-text);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.summary .btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.summary .btn-primary:hover {
  background-color: var(--redsecond);
}

.footer {
  background-color: var(--primary-black);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.footer a {
  color: var(--white);
  text-decoration: underline;
}

.footer a:hover {
  color: var(--redsecond);
  text-decoration: underline;
}

.footer-icon {
  font-size: 2rem;
  color: var(--white);
}

.footer-icon:hover {
  color: var(--redsecond);
}

.material-symbols-outlined {
  font-weight: 800;
  font-size: 32px;
  color: var(--primary-red);
}

.headlist {
  list-style: none;
  font-weight: 600;
  color: var(--h1-text);
}

.headlist:hover {
  color: var(--redsecond);
}

h4 {
  color: var(--h1-text);
  font-size: 1.4rem;
}

.table-wrapper table {
  width: 75%;
  border-collapse: collapse;
  margin: 0 auto; /* jeśli chcesz wyśrodkować */
}

.table-wrapper thead tr {
  background-color: var(--gray-light);
}

.table-wrapper th,
.table-wrapper td {
  padding: 0.75rem;
  text-align: left;
  color: var(--h1-text);
}

.table-wrapper th {
  border-bottom: 2px solid var(--gray-medium);
}

.table-wrapper tbody tr td:first-child {
  border-bottom: 1px solid var(--gray-medium);
}

.logo-light,
.logo-dark {
  display: none;
}

body[data-theme=light] .logo-light {
  display: block;
}

body[data-theme=dark] .logo-dark {
  display: block;
}

body[data-theme=light] {
  --header-color: #fff;
  --h1-text: #000;
  --mobile-bkg: #fff;
  --primary-red: rgb(234, 30, 38);
  --primary-black: #000;
  --accent-dark: #333;
  --gray-light: #f5f5f5;
  --gray-medium: #ddd;
  --white: #fff;
  --green: green;
  --redsecond: #c00510;
  --text-muted: #707070;
  --label: #000;
}

body[data-theme=dark] {
  --header-color: rgb(22, 26, 30);
  --h1-text: #ddd;
  --mobile-bkg: rgb(43, 47, 54);
  --text-muted: #ddd;
  --label: #ddd;
  --green: green;
  --primary-red: rgb(234, 30, 38);
  --primary-black: rgb(22, 26, 30);
  --accent-dark: #ccc;
  --gray-light: rgb(43, 47, 54);
  --gray-medium: #444;
  --white: #fff;
  --redsecond: #c00510;
}

/* Animacja obracania ikony z fade-out/fade-in */
@keyframes rotate-fade {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
.theme-icon-animate {
  animation: rotate-fade 0.5s ease-in-out;
}

#logo {
  transition: opacity 0.3s ease;
}

.theme-icon-animate + #logo {
  opacity: 0;
}

#theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border: 2px solid rgb(157, 157, 157);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
#theme-toggle .material-symbols-outlined {
  font-size: 1rem;
  font-weight: 900;
  transition: transform 0.3s ease;
}

#theme-toggle:hover {
  border-color: #c00510;
}

.fun-fact {
  background-color: var(--gray-light);
  border-left: 6px solid var(--primary-red);
  padding: 1.5rem 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  animation: fadeInFact 0.6s ease-out both;
}

.fact-icon {
  font-size: 2rem;
  color: var(--primary-red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.fact-text {
  color: var(--h1-text);
  font-size: 1.05rem;
  line-height: 1.6;
}

@keyframes fadeInFact {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile responsywność */
@media (max-width: 576px) {
  .fun-fact {
    flex-direction: column;
    text-align: left;
  }
}
.content-section {
  padding: 3rem 2rem;
  background-color: var(--gray-light);
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.content-section .image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.content-section .image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.content-section .image img:hover {
  transform: scale(1.05);
}

.content-section .text {
  flex: 1 1 50%;
}

.content-section .text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--h1-text);
}

.content-section .text p {
  font-size: 1.1rem;
  color: var(--h1-text);
}

/* Odwrócenie kolejności dla wersji z obrazem z prawej */
.image-right .content-wrapper {
  flex-direction: row-reverse;
}

/* Responsywność */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.landing-cards .card {
  background-color: var(--header-color);
  color: var(--h1-text);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.landing-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.landing-cards .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: var(--h1-text);
}

.landing-cards .card-img-top {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.landing-cards .card-text {
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.landing-cards .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--gray-light);
}

.landing-cards .btn {
  margin-top: auto;
}

.card-body .text-muted {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
}

select.form-select {
  background-color: var(--header-color);
  color: var(--h1-text);
  border: 1px solid var(--gray-medium);
  transition: background-color 0.3s, color 0.3s;
}

label {
  color: var(--label);
}

.pagination {
  --pagination-bg: var(--header-color);
  --pagination-text: var(--h1-text);
  --pagination-border: var(--gray-medium);
  --pagination-hover-bg: var(--gray-light);
  --pagination-hover-text: var(--h1-text);
  --pagination-active-bg: var(--primary-red);
  --pagination-active-text: var(--white);
  --pagination-radius: 6px;
}

.page-link {
  background-color: var(--pagination-bg);
  color: var(--pagination-text);
  border: 1px solid var(--pagination-border);
  padding: 0.5rem 0.75rem;
  margin: 0 0.2rem;
  border-radius: var(--pagination-radius);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.page-link:hover {
  background-color: var(--pagination-hover-bg);
  color: var(--pagination-hover-text);
  border-color: var(--pagination-border);
}

.page-item.active .page-link {
  background-color: var(--pagination-active-bg);
  color: var(--pagination-active-text);
  border-color: var(--primary-red);
}

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  z-index: 9999;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 60%;
}

#cookie-consent-banner a {
  color: #ffd700;
  text-decoration: underline;
}

#cookie-consent-banner a:hover {
  color: #c00510;
  text-decoration: underline;
}

#cookie-consent-banner button {
  background-color: var(--green);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 auto;
  margin-left: 1rem;
  transition: background-color 0.2s;
}

#cookie-consent-banner button:hover {
  background-color: #3fe50d !important;
}

@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background-color: var(--mobile-bkg);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    margin-bottom: 1.25rem;
  }
  .hamburger {
    display: flex;
  }
  nav {
    position: relative;
  }
}
@media (max-width: 480px) {
  #cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
  #cookie-consent-banner p {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  #cookie-consent-banner button {
    margin: 0 auto;
  }
  .material-symbols-outlined {
    font-weight: 400;
    font-size: 24px;
    color: var(--primary-red);
  }
}/*# sourceMappingURL=blog_1.css.map */