
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'NourdMedium', sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.6;
  }
  
  @font-face {
    font-family: 'NourdMedium';
    src: url('fonts/nourd_medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'GlikerRegular';
    src: url('fonts/Gliker-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  
  :root {
    --zielony: #3DA580;
    --zielony-jasny: #d4E9C9;
    --szary: #f7f7f7;
    --ciemny: #050A30;
    --biel: #fff;
  }
  

  h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  
  p {
    margin-bottom: 1em;
  }
  
  a {
    text-decoration: none;
    color: var(--zielony);
  }
  

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: var(--biel);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .logo {
    height: 70px;
  }
  
  .logo-growspace {
    height: 70px;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: #000;
    font-weight: 500;
    font-size: 1rem;
  }
  

  .hero {
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.3)), url('assets/hero.png') no-repeat center/cover;
    padding: 80px 40px;
    text-align: left;
    color: var(--ciemny);
  }
  
  .hero h1 {
    color: var(--zielony);
    font-size: 2.5rem;
    font-family: 'GlikerRegular', serif;
  }
  
  .hero p {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  

  .haslo-potrojne {
    background-color: var(--szary);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-family: 'NourdMedium', sans-serif;
    text-transform: uppercase;
    flex-wrap: wrap;
  }
  
  .haslo-lewa {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
  }
  
  .haslo-gorne,
  .haslo-dolne {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--zielony-jasny);
  }
  
  .haslo-srodkowe {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--zielony);
    margin: 0.4em 0;
  }
  
  .haslo-prawa {
    font-size: 1.5rem;
    padding-top: 22px;
    font-weight: bold;
    color: var(--ciemny);
    text-transform: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  

  .counter {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--szary);
    font-family: 'NourdMedium', sans-serif;
  }
  
  .counter h2 {
    font-size: 1.8rem;
    color: #111;
    font-weight: normal;
  }
  
  .counter .number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--zielony);
  }
  
  .number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
  }
  
  .left-line, .right-line {
    flex: 1;
    height: 2px;
    background-color: var(--zielony);
    margin: 0 10px;
    border: none;
  }
  
  .zielony-haslo {
    font-size: 1.5rem;
    color: var(--zielony);
    margin-top: 20px;
  }
  
  .opis-podpisow {
    font-size: 1rem;
    color: #222;
    max-width: 600px;
    margin: 10px auto 0 auto;
  }
  

  .why-important {
    font-family: 'NourdMedium', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--zielony);
    color: white;
    padding: 60px 20px;
    gap: 20px;
  }
  
  .rounded-image {
    border-radius: 16px;
    overflow: hidden;
    display: block;
    width: 30%;
    height: auto;
    margin: 20px;
    max-width: 300px;
  }
  
  .tekst-bialy ul li {
    color: white;
  }
  
  .why-important ul {
    list-style: disc inside;
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .tekst-bialy {
    max-width: 500px;
  }
  
  .tekst-bialy h2 {
    margin-bottom: 25px;
  }
  
  .tekst-bialy ul {
    list-style: disc inside;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  

  .projekt-ustawy {
    padding: 60px 20px;
    text-align: center;
  }
  
  .projekt-ustawy h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .buttons button {
    background-color: var(--zielony);
    color: var(--biel);
    font-size: 1.1rem;
    padding: 16px 28px;
    margin: 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'NourdMedium', sans-serif;
  }
  
  .buttons button:hover {
    background-color: var(--zielony-jasny);
    color: white;
  }
  
  .zielone {
    color: var(--zielony);
  }
  
  .adres-wysylki {
    margin-top: 30px;
    font-size: 1rem;
    color: #222;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  

  .organizacje {
    padding: 60px 20px;
    background-color: var(--szary);
    text-align: center;
  }
  
  .organizacje h2 {
    margin-bottom: 30px;
  }
  
  .logotypy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .partnerzy {
    text-align: left;
    margin-left: 287px;
  }
  
  .logotypy img {
    height: 80px;
  }
  
  .logo-box {
    background-color: var(--zielony-jasny);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .logo-box:hover {
    transform: scale(1.05);
  }
  
  .logo-box img {
    height: 80px;
    max-width: 100%;
  }

 
  footer {
    background-color: var(--zielony);
    color: white;
    padding: 30px 20px;
  }
  
  footer p, footer a {
    color: white;
    font-size: 0.95rem;
    margin: 5px 0;
    margin-bottom: 0.4rem;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  

  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }
  
    nav {
      flex-direction: column;
      gap: 10px;
      align-items: center;
      margin-top: 10px;
    }
  
    .hero {
      padding: 40px 20px;
      text-align: center;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    .haslo-potrojne {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .haslo-prawa {
      justify-content: center;
      padding-top: 0;
    }
  
    .rounded-image {
      width: 80%;
      margin: 0 auto 20px;
    }
  
    .tekst-bialy {
      text-align: center;
    }
  
    .tekst-bialy ul {
      padding-left: 0;
    }
  
    .buttons button {
      width: 100%;
      max-width: 300px;
    }
  
    .logotypy {
      flex-direction: column;
      align-items: center;
    }
  
    .logo-box {
      width: 80%;
    }
  
    .partnerzy {
      margin-left: 0;
      text-align: center;
    }
  }
  .raport {
  padding: 60px 20px;
  background-color: var(--szary); 
  text-align: center;
}

.raport h2 {
  font-size: 2rem;
  color: var(--zielony);
  font-family: 'GlikerRegular', serif;
  margin-bottom: 20px;
}

.raport p {
  max-width: 900px;
  margin: 0 auto 1em auto;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}
footer {
  padding: 2rem;
  background: var(--zielony); 
  color: white;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

footer .footer-left {
  display: flex;
  align-items: center;
  padding-right: 2rem;
  border-right: 2px solid white; 
}

footer .footer-logo {
  width: 200px;  
  height: auto;
}

footer .footer-center {
  flex: 1;
  padding-left: 2rem;
}

footer .socials {
  display: flex;
  gap: 1rem;
}

footer .socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}

footer .socials a:hover {
  transform: scale(1.15);
}

footer .socials img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}


@media (max-width: 768px) {
  footer .socials a {
    width: 56px;
    height: 56px;
  }
}

  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.6rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .haslo-gorne,
    .haslo-dolne,
    .haslo-prawa {
      font-size: 1.2rem;
    }
  
    .haslo-srodkowe {
      font-size: 2rem;
    }
  
    .number {
      font-size: 2rem;
    }
  
    .counter h2 {
      font-size: 1.4rem;
    }
  
    .zielony-haslo {
      font-size: 1.2rem;
    }
  
    .tekst-bialy h2 {
      font-size: 1.5rem;
    }
  
    .tekst-bialy ul {
      font-size: 1rem;
    }
  
    .buttons button {
      font-size: 1rem;
      padding: 12px 20px;
    }
     footer .socials a {
    width: 64px;   
    height: 64px;
  }
  
  }
  