body {
  background: #f4f4f7;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #111;
}

/* Górny pasek */
.topbar {
  background: linear-gradient(90deg, #dedede 0%, #b0b3b8 100%);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 36px;
}
.contact-btn {
  background: linear-gradient(90deg, #6d6f71 0%, #b0b3b8 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 7px 18px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(35,35,35,.13);
  text-decoration: none;
  letter-spacing: .3px;
  transition: background 0.18s;
  margin: 0 0 0 14px;
  display: inline-block;
}
.contact-btn:hover {
  background: #801626;
}

/* Pasek menu oraz logo */
.navbar {
  background: #ededed;
  box-shadow: 0 4px 8px rgba(77, 77, 77, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  height: auto;
}
.navbar .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #801626;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 16px;
  margin-bottom: 8px;
}
.navbar .menu {
  display: flex;
  gap: 38px;
  font-size: 1.09rem;
  justify-content: center;
  padding-bottom: 12px;
}
.navbar .menu a {
  text-decoration: none;
  color: #000000; /* Czarny kolor dla menu */
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.18s;
  padding: 8px 0;
}
.navbar .menu a:hover,
.navbar .menu a.active {
  color: #111;
}

/* Hero - obraz i tekst */
.hero-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #f4f4f7;
  padding: 60px 0 40px 0;
  gap: 4vw;
}
.hero-img {
  flex: 1 0 0px;
  min-width: 340px;
  max-width: 540px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 0 24px rgba(30,30,30,.09);
  min-height: 420px;
  max-height: 600px;
  align-self: stretch;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  min-width: 320px;
  max-width: 540px;
  padding-left: 14px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  color: #111;
  margin: 0;
}
.spacer { height: 1.05em; }
.hero-text {
  font-size: 1.13rem;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
.signature.homemade {
  font-family: 'Homemade Apple', cursive;
  font-size: 2.1rem;
  color: #801626;
  margin-top: 0.25em;
}

/* Sekcje Offer i Portfolio */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #801626;
  letter-spacing: 1px;
}
.offer-section {
  background: #f8f8fa;
  padding: 60px 12vw 36px 12vw;
  text-align: left;
}
.offer-description {
  font-size: 1.13rem;
  margin-bottom: 21px;
  max-width: 770px;
  line-height: 1.6;
}
.offer-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  max-width: 770px;
}
.offer-list > li {
  font-size: 1.09rem;
  margin-bottom: 10px;
  line-height: 1.45;
  color: #111;
}
.offer-list-bold {
  font-weight: bold;
  color: #464646;
}
.portfolio-section {
  padding: 58px 7vw 38px 7vw;
  text-align: left;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 16px;
  margin-top: 18px;
}
.portfolio-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(30,30,30,.07);
  background: #e2e2e9;
}

/* Footer - legal/contact razem */
.footer {
  padding: 34px 7vw 26px 7vw;
  background: #f4f4f7;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-top: 1px solid #aaa;
}
.footer-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 68px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-block {
  min-width: 230px;
}
.footer-title {
  font-weight: bold;
  color: #801626;
  margin-bottom: 9px;
  font-size: 1.09rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 4px; }
.footer a.footer-legal-link, .footer a.footer-legal-link:visited {
  color: #000000; /* czarny kolor dla linków legal */
  text-decoration: none;
  transition: color 0.18s;
}
.footer a.footer-legal-link:hover { color: #111; }

@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }
  .hero-img {
    margin: 0 0 18px 0;
    width: 96vw;
    min-width: 260px;
    max-width: 98vw;
    max-height: 340px;
  }
  .hero-content {
    min-width: unset;
    max-width: 97vw;
    padding-left: 0;
  }
  .footer-row {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .offer-section, .portfolio-section, .footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .footer-block { min-width: unset; }
}
