/* Ogólny styl strony */
body {
  color: #fff;
  background-color: #000;
}

/* Styl dla tekstów na karuzeli */
.carousel-caption {
  top: 15%; /* Podniesienie tekstu */
}

/* Styl dla obrazków w karuzeli */
.carousel-item img {
  opacity: 0.8;
  /* Lekko przezroczyste, jeśli to potrzebne */
}

/* Styl dla tekstów na karuzeli */
.carousel-caption h1, .carousel-caption p {
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
}

.carousel-control-next-icon { 
	width: 50%;
	height: 50%;
}

.carousel-control-prev-icon { 
	width: 50%;
	height: 50%;
}

/* Sekcja funkcji */
.features-section {
  padding: 50px 20px;
  background-color: #111;
}

.features-section h2 {
  color: #fff;
}

.feature-box {
  text-align: center;
  margin: 20px 0;
}

.feature-box img {
  width: 100px;
  margin-bottom: 15px;
}


.white-bg-section {
  background-color: #fff;
  color: #000;
}

.white-bg-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

.white-bg-section p.lead {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.white-bg-section img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.white-bg-section h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.white-bg-section p {
  font-size: 0.95rem;
  color: #555;
}

.tynk-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}


.feature-boxss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Dla responsywności */
}

.feature-boxss img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 10px; /* Odstęp wokół obrazu */
  order: 2; /* Domyślnie obraz pojawia się po prawej */
}

.feature-boxss p {
  font-size: 1rem;
  line-height: 1.6;
  flex: 1; /* Dopasowanie szerokości tekstu */
  margin: 0;
  order: 1; /* Domyślnie tekst pojawia się po lewej */
}

@media (max-width: 768px) {
  .feature-boxss img {
    order: 1; /* Na małych ekranach obraz pojawia się jako pierwszy */
    width: 100%; /* Zdjęcie zajmuje pełną szerokość */
    height: auto; /* Automatyczna wysokość */
  }

  .feature-boxss p {
    order: 2; /* Na małych ekranach tekst pojawia się pod obrazem */
    margin-top: 10px; /* Odstęp między obrazem a tekstem */
    width: 100%; /* Tekst zajmuje pełną szerokość */
  }

/* Sekcja farby */
.feature-boxsss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Dla responsywności */
}

.feature-boxsss img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 10px; /* Odstęp wokół obrazu */
  order: 1; /* Domyślnie obraz pojawia się po lewej */
}

.feature-boxsss p {
  font-size: 1rem;
  line-height: 1.6;
  flex: 1; /* Dopasowanie szerokości tekstu */
  margin: 0;
  order: 2; /* Tekst pojawia się po prawej */
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 768px) {
  .feature-boxsss img {
    order: 1; /* Na małych ekranach obraz pojawia się jako pierwszy */
    width: 100%; /* Zdjęcie zajmuje pełną szerokość */
    height: auto; /* Automatyczna wysokość */
  }

  .feature-boxsss p {
    order: 2; /* Na małych ekranach tekst pojawia się pod obrazem */
    margin-top: 10px; /* Odstęp między obrazem a tekstem */
    width: 100%; /* Tekst zajmuje pełną szerokość */
  }
}

/* Styl dla galerii zdjęć */
section .row {
  text-align: center;
}

img.img-fluid {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

img.img-fluid:hover {
  transform: scale(1.05); /* Powiększenie miniatury przy najechaniu */
}



/* Stopka */
footer {
  background-color: #000;
}

