body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #333;
}


/* === MENU GÓRNA === */
.top-bar {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo a {
  font-size: 24px;
  color: #2b2b2b;
  text-decoration: none;
  font-weight: bold;
}

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

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 5px 20px;
}


/* === Sekcja Home === */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh; 
  text-align: center;
  background: #ddd;
}


.hero-slideshow {
  display: flex;
  height: 85%;
  transition: transform 1s ease-in-out;
}


.hero-img {
  flex: 0 0 100%;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}


.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
  padding: 20px;
  text-align: center;
  max-width: 90%;
}


.hero h1,
.hero p,
.hero .btn {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #444;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}


/* "..." */
.features {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2b2b2b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #444;
}

.feature p {
  color: #555;
  font-size: 1rem;
}


/* Kategorie mebli */
.categories {
  padding: 60px 20px;
  background-color: #eeeeee;
  text-align: center;
}

.categories h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-box {
  position: relative;
  height: 300px;
  display: block;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: 0.3s ease;
  display: block;
}

.category-box:hover img {
  transform: scale(1.05);
  filter: brightness(100%);
}

.category-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  font-size: 1.8rem;
}



/* === Sekcja Oferta === */
.offer-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.offer-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.offer-section .offer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.offer-section .offer-list li a {
  display: block;
  position: relative;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.offer-section .offer-list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  transition: 0.3s ease;
  display: block;
}

.offer-section .offer-list li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}

.offer-section .offer-list li a:hover img {
  filter: brightness(80%);
  transform: scale(1.05);
}

/* Responsywność */
@media (max-width: 600px) {
  .offer-section .offer-list {
    grid-template-columns: 1fr;
  }
}



/* === Sekcja Kuchnie === */
.kitchen-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: #f5f5f5;
}

.kitchen-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #222;
}

.kitchen-hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.kitchen-gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.kitchen-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.kitchen-gallery .gallery-masonry {
  column-count: 3;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.kitchen-gallery .gallery-masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 0px;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  filter: brightness(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.kitchen-gallery .gallery-masonry img:nth-child(3n) { height: 220px; }
.kitchen-gallery .gallery-masonry img:nth-child(4n) { height: 280px; }
.kitchen-gallery .gallery-masonry img:nth-child(5n) { height: 180px; }
.kitchen-gallery .gallery-masonry img:nth-child(6n) { height: 320px; }

.kitchen-gallery .gallery-masonry img:hover {
  transform: scale(1.015);
  filter: brightness(120%);
}



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

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




/* Lightbox tło */
.kitchen-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.kitchen-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
  .image-lightbox img {
  transition: transform 0.2s ease;
  cursor: zoom-in;
}

}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}



.kitchen-features {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.kitchen-features h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #333;
}

.kitchen-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.kitchen-features .feature-tile {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kitchen-features .feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.kitchen-features .feature-tile i {
  font-size: 2.5rem;
  color: #ca0000;
  margin-bottom: 20px;
}

.kitchen-features .feature-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.kitchen-features .feature-tile p {
  font-size: 1rem;
  color: #555;
}




/* === Sekcja Szafy === */
.wardrobe-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: #eef1f4;
}

.wardrobe-hero h1 {
  font-size: 2.6rem;
  color: #222;
  margin-bottom: 15px;
}

.wardrobe-hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.wardrobe-gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.wardrobe-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.wardrobe-gallery .gallery-masonry {
  column-count: 3;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.wardrobe-gallery .gallery-masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 0px;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  filter: brightness(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.wardrobe-gallery .gallery-masonry img:nth-child(3n) { height: 220px; }
.wardrobe-gallery .gallery-masonry img:nth-child(4n) { height: 280px; }
.wardrobe-gallery .gallery-masonry img:nth-child(5n) { height: 180px; }
.wardrobe-gallery .gallery-masonry img:nth-child(6n) { height: 320px; }

.wardrobe-gallery .gallery-masonry img:hover {
  transform: scale(1.015);
  filter: brightness(120%);
}

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

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

#wardrobe-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

#wardrobe-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
  cursor: zoom-in;
}

.wardrobe-features {
  padding: 80px 20px;
  background-color: #eef2f7;
  text-align: center;
}

.wardrobe-features h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #222;
}

.wardrobe-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.wardrobe-features .feature-tile {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wardrobe-features .feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.wardrobe-features .feature-tile i {
  font-size: 2.5rem;
  color: #0099cc;
  margin-bottom: 20px;
}

.wardrobe-features .feature-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.wardrobe-features .feature-tile p {
  font-size: 1rem;
  color: #555;
}








/* === Sekcja Krzesła === */
.chair-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: #eef1f4;
}

.chair-hero h1 {
  font-size: 2.6rem;
  color: #222;
  margin-bottom: 15px;
}

.chair-hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.chair-gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.chair-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.chair-gallery .gallery-masonry {
  column-count: 3;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.chair-gallery .gallery-masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 0px;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  filter: brightness(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.chair-gallery .gallery-masonry img:nth-child(3n) { height: 220px; }
.chair-gallery .gallery-masonry img:nth-child(4n) { height: 280px; }
.chair-gallery .gallery-masonry img:nth-child(5n) { height: 180px; }
.chair-gallery .gallery-masonry img:nth-child(6n) { height: 320px; }

.chair-gallery .gallery-masonry img:hover {
  transform: scale(1.015);
  filter: brightness(120%);
}

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

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

#chair-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

#chair-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
  cursor: zoom-in;
}

.chair-features {
  padding: 80px 20px;
  background-color: #eef2f7;
  text-align: center;
}

.chair-features h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #222;
}

.chair-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.chair-features .feature-tile {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chair-features .feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.chair-features .feature-tile i {
  font-size: 2.5rem;
  color: #22cc00;
  margin-bottom: 20px;
}

.chair-features .feature-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.chair-features .feature-tile p {
  font-size: 1rem;
  color: #555;
}










/* === Sekcja Stoły === */
.table-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: #f5f5f5;
}

.table-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #222;
}

.table-hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.table-gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.table-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.table-gallery .gallery-masonry {
  column-count: 3;
  column-gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.table-gallery .gallery-masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 0px;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
  filter: brightness(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.table-gallery .gallery-masonry img:nth-child(3n) { height: 220px; }
.table-gallery .gallery-masonry img:nth-child(4n) { height: 280px; }
.table-gallery .gallery-masonry img:nth-child(5n) { height: 180px; }
.table-gallery .gallery-masonry img:nth-child(6n) { height: 320px; }

.table-gallery .gallery-masonry img:hover {
  transform: scale(1.015);
  filter: brightness(120%);
}

@media (max-width: 1024px) {
  .table-gallery .gallery-masonry {
    column-count: 2;
  }
}

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

#table-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

#table-lightbox img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.2s ease;
  transform: scale(1);
}

.table-features {
  padding: 80px 20px;
  background-color: #fdfcfb;
  text-align: center;
}

.table-features h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #222;
}

.table-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.table-features .feature-tile {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-features .feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.table-features .feature-tile i {
  font-size: 2.5rem;
  color: #cc8800;
  margin-bottom: 20px;
}

.table-features .feature-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.table-features .feature-tile p {
  font-size: 1rem;
  color: #555;
}



/* === Sekcja Usługi === */
.services {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services h1 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #222;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-item {
  background-color: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.service-item i {
  font-size: 3.2rem;
  color: #cc8800;
  margin-bottom: 20px;
}

.service-item h2 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-item p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.5;
}

/* Responsywność */
@media (max-width: 600px) {
  .services {
    padding: 40px 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}














/* Sekcja Kontakt */

/* ===Stopka=== */
.site-footer {
  background-color: #2a2a2c;
  color: #eee;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto 30px;
  gap: 40px;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.site-footer a {
  color: #ddd;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-contact p,
.footer-newsletter p {
  margin: 6px 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  columns: 2;
}

.footer-links li {
  margin-bottom: 6px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  max-width: 250px;
}

.newsletter-form button {
  padding: 10px;
  border: none;
  background-color: #3a8f3a;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #317a31;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsywność */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links ul {
    columns: 1;
  }
}
