body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fdfdfc;
  color: #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
}

.logo {
  max-width: 75px;
  height: auto;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.facebook-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  max-width: 250px;
  color: #333;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #8b0000;
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  padding: 0 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  break-inside: avoid;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsywność */
@media (max-width: 1000px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

