html body{
  margin: 0;
  background-color: #121212 !important;
  color: #ffffff;
  font-family: "Poppins", sans-serif !important;
  scroll-behavior: smooth !important;
}

/* === Pasek nawigacyjny (Navbar) === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1020; /* powyżej innych elementów */
  background-color: #111;
  padding: 0 80px;
  height: 115px;
}

.navbar-collapse {
  background-color: #121212 !important; /* ciemne półprzezroczyste tło */
  padding: 1rem;
  border-radius: 10px; /* opcjonalnie dla ładniejszego efektu */
}

/* Odstępy między pozycjami menu */
.navbar-nav .nav-item {
  padding: 0 20px;
}

/* Linki w menu */
.navbar .nav-link,
.navbar-brand {
  color: #ffffff !important;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar-brand:hover {
  color: #72d46b !important;
  text-decoration: none;
}

/* === Logo === */
.navbar-brand img,
.logo img {
  height: 40px;
}

/* === Menu (jeśli używasz klasy .menu poza Bootstrapem) === */
.menu {
  display: flex;
  gap: 80px;
  position: sticky !important;
}

/* Bezpośrednie linki w .menu */
.menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #72d46b;
}

.custom-container{
  float: left !important;
}


/* === Sekcja slidera === */
.head {
  max-width: 90%;
  height: auto;
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 20px;
}


/* === SEKCJA DRUGA === */
.about {
  text-align: center;
  padding: 60px 20px;
}

.about-heading {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-description {
  font-size: 20px;
  line-height: 1.6;
}

.about p {
  max-width: 1000px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-size: 16px;
}


/* === SEKCJA TRZECIA === */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.product-card {
  background-color: #0c0c0c;
  padding: 20px;
  border-radius: 20px;
  max-width: 360px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(114, 212, 107, 0.5);
}

.product-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.product-card a:hover,
.product-card a:focus {
  color: #00BF62;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 23px;
  line-height: 1.2;
}


/* === SEKCJA CZWARTA === */
/* Tytuł sekcji */
.section-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 60px;
  color: #ffffff;
}

/* Kontener cech */
.features-list {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

/* Pojedynczy element cechy */
.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

/* Odwrócenie układu */
.feature-reverse {
  flex-direction: row-reverse;
}

/* Tekst w elemencie */
.feature-text {
  flex: 1;
  color: #ffffff;
}

.feature-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #00BF62;
  font-weight: 700;
  line-height: 1.2;
}

.feature-text p {
  font-size: 18px;
  line-height: 1.6;
}

/* Obraz w elemencie */
.feature-image {
  flex: 1;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Responsywność */
@media (max-width: 992px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-reverse {
    flex-direction: column;
  }

  .feature-text, .feature-image {
    max-width: 100%;
    width: 100%;
  }

  .feature-image img {
    height: 250px;
  }

  .feature-text h3 {
    font-size: 28px;
  }
  
  .feature-text p {
    font-size: 16px;
  }
}


/* === SEKCJA PIĄTA === */
.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 15px;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.gallery-row.reverse {
  flex-direction: row-reverse;
}

.gallery-main {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
  min-width: 280px;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-thumbs img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-row {
    flex-direction: column;
  }

  .gallery-thumbs {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    aspect-ratio: 4 / 3;
  }
}


/* === SEKCJA SZÓSTA === */
.contact p {
  font-weight: 500;
  font-size: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact h1 {
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact h3 {
  font-size: 32px;
  margin-top: 80px;
  margin-bottom: 25px;
}

.form-options label {
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.contact {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact h1 {
  font-size: 54px;
  margin-bottom: 10px;
}

.contact p {
  max-width: 1000px;
  margin: 0 auto 40px;
  font-size: 20px;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 100px;
}

.contact-info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 33px;
}

.contact-info .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact h3 {
  font-size: 37px;
  margin-top: 100px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: #e0e0e0;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  width: 100%;
  height: 400px !important;
}

.form-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.form-options label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-options button {
  align-self: flex-end;
  padding: 12px 30px;
  border: none;
  background-color: #e0e0e0;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-options button:hover {
  background-color: #d0d0d0;
}

/* Responsywność */
@media (max-width: 600px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .form-options {
    align-items: center;
  }

  .form-options button {
    width: 100%;
  }
}


.opisy p{
  font-size: 17px;
  line-height: 28px;
}

.wazne{
  color: #00BF62 !important;
}

.icon img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 8px;
}






.product-page {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  color: white;
}

/* Główna sekcja: zdjęcie po lewej, opis po prawej */
.product-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

/* Obrazek z lewej */
.product-image {
  flex: 1 1 500px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  max-height: 500px;
}

/* Informacje po prawej */
.product-info {
  flex: 1 1 500px;
}

.product-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.product-info .subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
}

.product-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

/* Galeria pod spodem */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}


/* Styl dla lightboxa */
.lightbox {
  display: none; /* ukryte domyślnie */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

/* Obrazek w lightboxie */
.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

/* Zamknij, poprzedni i następny */
.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  font-size: 48px;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  padding: 20px;
}

.lightbox .close {
  top: 20px;
  right: 30px;
}

.lightbox .prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* Dodaj efekt hover */
.lightbox .prev:hover,
.lightbox .next:hover,
.lightbox .close:hover {
  color: #72d46b;
}

animation: zoomIn 0.3s ease;
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.footer {
  background-color: #121212; /* ciemne tło stopki */
  color: #eee; /* jasna czcionka */
  padding: 2rem 0;
  font-size: 0.95rem;
  border-top: 1px solid #333;
  margin-top: 100px;
}

.footer .container {
  max-width: 1140px;
}

.footer .logo img {
  max-width: 100%;
  height: auto;
}

.footer p {
  margin: 0.3rem 0;
}

.footer .ikonki {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer a {
  color: #0f0; /* kolor linków – zielony pasujący do logo */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer .row > div {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer {
    text-align: center;
  }
}


