body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  background: #22272A;
  color: #f6f6f6;
}

/* TOPBAR */
.topbar {
  background: #282c30;
  color: #bbb;
  font-size: 0.95rem;
  padding: 0.6em 0;
  border-bottom: 1px solid #222;
}
.topbar-content {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
.topbar-content a {
  color: #ff4e1a;
  text-decoration: underline;
  margin-left: 0.3em;
}
.topbar-social a {
  color: #bbb;
  margin-left: 0.6em;
  font-size: 1.14em;
}
.topbar-social a:hover {
  color: #ff4e1a;
}

/* HEADER / NAV */
header {
  background: #22272A;
  color: #f6f6f6;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  position: sticky;
  top: 0;
  z-index: 10;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}
.logo {
  height: 56px;
  margin-left: 12px;
}
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: #f6f6f6;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.18s, border-bottom 0.15s;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.active {
  color: #ff4e1a;
  border-bottom: 2px solid #ff4e1a;
  background: none;
}
.menu-toggle i {
  color: #f6f6f6;
  font-size: 2rem;
}

/* HERO */
.hero {
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background: none;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
}
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right,
    rgba(34,39,42,0.8) 0%,
    rgba(34,39,42,0.12) 12%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 75%,
    rgba(34,39,42,0.12) 88%,
    rgba(34,39,42,0.8) 100%
  );
}
.hero-overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(34,39,42,0.52);
  z-index: 3;
}
.hero-text {
  position: relative;
  z-index: 4;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}
.hero-text .slide {
  display: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  background: none;
  box-shadow: none;
  color: #fff;
  text-shadow: 0 2px 8px #2228;
  padding: 0.5em 1em;
  border-radius: 12px;
}
.hero-text .slide.active {
  display: block;
  animation: fadeIn 1s;
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}
.hero-title {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.19);
}
.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2.2rem;
  background: #ff4e1a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 2px 14px rgba(255,78,26,0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}
.cta-btn:hover {
  background: #d32f2f;
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 4px 24px rgba(255,78,26,0.18);
}

/* PASEK SZYBKIEGO KONTAKTU */
.kontakt-bar {
  background: #21252a;
  color: #f6f6f6;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.7rem 0;
  box-shadow: 0 2px 8px rgba(34,39,42,0.08);
}
.kontakt-bar-content {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.kontakt-bar-link {
  color: #ff4e1a;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.kontakt-bar-link:hover {
  color: #d32f2f;
  text-decoration: underline;
}
.kontakt-bar .kontakt-bar-katalog {
  margin-left: 2rem;
  padding: 0.5em 1.6em;
  background: #ff4e1a;
  color: #fff;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 1px 6px rgba(255,78,26,0.12);
  display: inline-block;
}
.kontakt-bar .kontakt-bar-katalog:hover {
  background: #d32f2f;
  color: #fff;
  transform: scale(1.04);
}
.kontakt-bar i {
  color: #ff4e1a;
  margin-right: 0.4em;
}
.kontakt-bar-dot {
  color: #ff4e1a;
  margin: 0 0.7em;
  font-weight: bold;
}
@media (max-width: 600px) {
  .kontakt-bar-content {
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1rem;
  }
  .kontakt-bar .kontakt-bar-katalog {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* SEKCA O NAS, OFERTA, KONTAKT */
.onas, .oferta, .kontakt {
  padding: 2rem 1rem;
  background: #23272c;
}
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
h2 {
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #ff4e1a;
  letter-spacing: 0.02em;
}

/* OFERTA */
.oferta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.oferta-kafelek {
  background: #22272A;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(255,78,26,0.07);
  width: 160px;
  min-height: 120px;
  max-width: 170px;
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  overflow: visible;
}
.oferta-kafelek:hover {
  box-shadow: 0 2px 24px rgba(255,78,26,0.16);
  transform: scale(1.05);
}
.oferta-ikona {
  font-size: 2.1rem;
  color: #ff4e1a;
  margin-bottom: 0.4rem;
  display: block;
}
.oferta-nazwa {
  font-weight: bold;
  font-size: 1.08rem;
  color: #f6f6f6;
  margin-bottom: 0.4rem;
  display: block;
}
.oferta-opis {
  display: none;
  font-size: 0.99rem;
  color: #ddd;
  background: #23272c;
  border-radius: 7px;
  padding: 0.7rem;
  margin-top: 0.7rem;
  box-shadow: 0 1px 8px rgba(255,78,26,0.09);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  animation: ofertaFade .3s;
}
@keyframes ofertaFade {
  from { opacity: 0; transform: translateY(-10px);}
  to   { opacity: 1; transform: translateY(0);}
}
.oferta-opis ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.oferta-opis li {
  margin-bottom: 0.4em;
}
.oferta-opis a {
  color: #ff4e1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.oferta-opis a:hover {
  color: #d32f2f;
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .oferta-grid {
    gap: 0.8rem;
  }
  .oferta-kafelek {
    width: 44vw;
    max-width: 180px;
    font-size: 0.97rem;
    padding: 0.8rem;
  }
}
@media (max-width: 600px) {
  .oferta-grid {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .oferta-kafelek {
    width: 92vw;
    max-width: 350px;
    font-size: 1.01rem;
  }
}

/* NASI DOSTAWCY */
.producenci {
  padding: 2rem 1rem;
  text-align: center;
  background: #22272A;
}
.producenci h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #ff4e1a;
}
.slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
}
.slider a {
  display: inline-block;
  flex: 0 0 auto;
  transition: transform 0.2s ease-in-out;
}
.slider a:hover {
  transform: scale(1.1);
}
.slider img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}
.slider img:hover {
  filter: grayscale(0%);
}

/* KONTAKT */
.kontakt-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.kontakt-item {
  flex: 1 1 300px;
  background: #22272A;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 12px rgba(255,78,26,0.09);
  margin-bottom: 1rem;
  color: #f6f6f6;
}
.kontakt-item h2 {
  color: #ff4e1a;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.kontakt-item a, .kontakt-item .kontakt-map-link {
  color: #ff4e1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.kontakt-item a:hover, .kontakt-item .kontakt-map-link:hover {
  color: #d32f2f;
  text-decoration: underline;
}

/* Formularz kontaktowy */
.kontakt-form-section {
  margin-top: 2rem;
  background: #22272A;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(255,78,26,0.09);
  color: #f6f6f6;
}
.kontakt-form-section h2 {
  margin-bottom: 1.5rem;
  color: #ff4e1a;
}
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.kontakt-form input,
.kontakt-form textarea,
.kontakt-form select {
  flex: 1 1 200px;
  padding: 0.8em;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.4em;
  background: #23272c;
  color: #f6f6f6;
  transition: border 0.2s;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus,
.kontakt-form select:focus {
  border-color: #ff4e1a;
  outline: none;
}
.kontakt-btn {
  padding: 0.8em 2em;
  background: #ff4e1a;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 32px;
  font-size: 1.08rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255,78,26,0.12);
  transition: background 0.2s, transform 0.2s;
}
.kontakt-btn:hover {
  background: #d32f2f;
  transform: scale(1.04);
}
.kontakt-form-note {
  font-size: 0.95em;
  color: #bbb;
  margin-top: 0.8em;
}

/* Responsive */
@media (max-width: 900px) {
  .kontakt-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .kontakt-item {
    margin-bottom: 1rem;
  }
}

/* STOPKA */
footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #f6f6f6;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* MENU MOBILNE */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    align-items: center;
  }
  .nav {
    display: none;
    flex-direction: column;
    background: #22272A;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 0 16px;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    margin: 0.7rem 0;
    font-size: 1.25rem;
  }
  .menu-toggle {
    display: block;
  }
}

/* DROBNOSTKI I ANIMACJE */
::-webkit-scrollbar {
  height: 6px;
  background: #222;
}
::-webkit-scrollbar-thumb {
  background: #ff4e1a;
  border-radius: 3px;
}