/* style.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('tlo.png') no-repeat center center fixed;
  background-size: cover;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

header {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.image-container {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

.forest-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

header .overlay {
  padding: 40px 20px;
  width: 100%;
  text-align: center;

}

header h1 {
  font-size: 2.2em;
  margin: 0;
  color: #a0eec0;
}

header p {
  font-size: 1em;
  color: #ccc;
}

.opisik {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  text-align: center;
}

.podstrony_opisy {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  font-size: 1.2em;
  line-height: 1.6;
  color: #ddd;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
}

.intro {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
}

.menu {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 12px 0;
}

.menu a {
  text-decoration: none;
  color: #84ACDB; /* KOLOR GLOWNY TEKSTU PODTEMATOW */
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
  display: block;
}

.menu a:hover {
  color: #0800FF;/* KOLOR NAJECHANIA TEKSTU PODTEMATOW */
}

footer {
  text-align: center;
  padding: 10px;
  background: #1e1e1e;
  color: #888;
  margin-top: 60px;
}

/* RESPONSYWNOŚĆ DLA TELEFONÓW */
@media (max-width: 600px) {
  header {
    height: 180px;
    padding: 10px;
  }

  header h1 {
    font-size: 1.6em;
  }

  header p {
    font-size: 0.9em;
  }

  .intro, .menu {
    margin: 20px 10px;
    padding: 15px;
    font-size: 1em;
  }

  .menu a {
    font-size: 1em;
  }

  footer {
    font-size: 0.9em;
    padding: 15px;
  }
}

/* ZOOM NA ZDJĘCIA */
.zoom-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
