 body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
  }

  /* --- NAGŁÓWEK --- */
  header {
    position: sticky;
    top: 0;
    background: #333;
    color: white;
    text-align: center;
    padding: 5px 0;
    z-index: 100;
  }

  /* --- STOPKA --- */
  footer {
    background: #444;
    color: white;
    text-align: center;
    padding: 5px 0;
    margin-top: auto;
  }

  /* --- GALERIA MINIATUREK --- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 20px; /* większy odstęp między miniaturkami */
    justify-content: center;
    padding: 20px 10px; /* odstęp od nagłówka i boków */
  }

  .gallery img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease;
  }

  .gallery img:hover {
    transform: scale(1.03);
  }

  /* --- LIGHTBOX --- */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    transition: opacity 0.3s;
  }

  /* --- STRZAŁKI --- */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3em;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    transition: opacity 0.2s;
  }

  .arrow:hover {
    opacity: 0.7;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  /* --- PRZYCISK ZAMYKANIA --- */
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2em;
    cursor: pointer;
    user-select: none;
  }

  /* --- DODATKOWO --- */
  main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }


/* Kontener dla desktopu */
.container {
  width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/*  Logo w formie przycisku */
.logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #555; /* inny kolor niż przyciski */
  height: 60px;
  width: 250px; /* zbliżona szerokość do przycisków */
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 10px;
  
}

.logo-btn:hover {
  background-color: #555;
}

.logo-btn img {
  max-height: 40px; /* dopasuj do proporcji logo */
  width: auto;
  opacity: 0.9; /* możesz zmniejszyć przezroczystość lub ustawić 1 */
}

/*  Przyciski nawigacji */
.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav-btn {
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 5px;
  text-align: center;
  width: 250px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #0056b3;
}

/*  Wersja mobilna */
@media (max-width: 768px) {
  .container {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    height: auto;
  }

  .logo-btn,
  .nav-btn {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }
}


/*  Kontakt */

   .kontakt {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
	
    }
    .kontakt img {
        width: 100%;
        display: block;
        margin-bottom: 12px;
	margin-top: 25px
    }