  body {
      background-image: url('Logo Icon Rev 0.ico');
      background-repeat: no-repeat;
      background-attachment: fixed;  
      background-size: cover;
   }
  html, body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f5f0e6; /* jasny beż */
      color: #2e4d2c; /* ciemna zieleń */
   }
   
  #header {
      position: fixed;
      top: 0;
      width: 100%;
      background: #3b6f3c; /* głęboka zieleń */
      z-index: 99;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);    
  }
  
  #headerhead {
      padding: 10px;
      min-height: 50px;
      background: #4f7f4f; /* oliwkowy odcień */
      color: #fff;
      opacity: 0.95;
      
    }
  #headernav {
      float: right;
      display: flex;
      gap: 8px;
    }
  img.nav {
      width: 26px;
      height: 26px;
      border: none;
    }    
  #content {
      margin-top: 100px;
      padding: 1em;
    }

    p.crumbs {
      font-size: 10pt;
      margin: 0;
    }

    p.crumbs a {
      text-decoration: none;
      color: #ffffff;
    }
  

    
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

figure {
  text-align: center;
}
    
img {
  width: 100%;
  height: 200px; /* lub inna wartość, np. 150px */
  object-fit: cover;
  border-radius: 8px;
}


 .p_Normal {
      padding: 10px;
      margin-left: 10px;
 }
  @media screen and (min-width: 1024px) {
  h2 {
    margin-top: 120px;
  }
  .robak {
  display: inline-block;
  animation: ruszaj 1.5s infinite;
}

@keyframes ruszaj {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}
}
   
 @media screen and (max-width: 768px) {
  .container1 {
    flex-direction: column;
    padding: 1em;
  }
  .robak {
  display: inline-block;
  animation: ruszaj 1.5s infinite;
}

  @keyframes ruszaj {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
  }

  #headernav {
    display: flex;
    flex-direction: row; /* układ w wierszu */
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 0;
  }

  img.nav {
    width: 32px;
    height: 32px;
  }

  img {
   width: 100%;
  height: 200px; /* lub inna wartość, np. 150px */
  object-fit: cover;
  border-radius: 8px;
  .p_Normal {
    margin-left: 0;
    padding: 1em;
    font-size: 1em;
  }

  figcaption {
    text-align: center;
    font-size: 0.9em;
  }
  
  .map-container {
    width: 90%;
    padding-bottom: 90%; /* proporcje 1:1 */
  }

}
@media print {
      span.f_Heading1 {
        color: black;
      }

      #header {
        position: relative;
      }

      #headerhead {
        background: none;
        color: #000;
      }

      #headernav,
      #switchtoggles {
        display: none;
      }

      #content {
        margin-top: 0;
      }
  }
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 60px; /* lub dokładnie tyle, ile ma #header */
  margin-top: 60px;
}

.succulent-soil-info h2,
main > div > h2 {
  color: #2c5f2d;
  margin-bottom: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

figure {
  text-align: center;
  margin: 0;
}

figure img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

figcaption {
  margin-top: 8px;
  font-weight: bold;
  color: #444;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

p em {
  font-style: italic;
  color: #2c5f2d;
}
.robak {
  display: inline-block;
  animation: pelzanie 1.5s infinite;
}

@keyframes pelzanie {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
}