.elementor-26 .elementor-element.elementor-element-21ea58f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26 .elementor-element.elementor-element-ed1f5d4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-start;--overlay-opacity:1;}.elementor-26 .elementor-element.elementor-element-ed1f5d4::before, .elementor-26 .elementor-element.elementor-element-ed1f5d4 > .elementor-background-video-container::before, .elementor-26 .elementor-element.elementor-element-ed1f5d4 > .e-con-inner > .elementor-background-video-container::before, .elementor-26 .elementor-element.elementor-element-ed1f5d4 > .elementor-background-slideshow::before, .elementor-26 .elementor-element.elementor-element-ed1f5d4 > .e-con-inner > .elementor-background-slideshow::before, .elementor-26 .elementor-element.elementor-element-ed1f5d4 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-image:url("https://slaxbouw.nl/wp-content/uploads/2025/06/Projekt-bez-nazwy.jpg");--background-overlay:'';}.elementor-26 .elementor-element.elementor-element-1a086ace{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-26 .elementor-element.elementor-element-1a086ace{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-4729e59b *//* Pasek informacyjny */
.top-bar {
  background-color: #EC6D2D;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 20px;
}

.top-bar-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: default;
  transition: color 0.3s ease;
}

.top-bar-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #EC6D2D;
  transition: width 0.3s ease;
}

.top-bar-item:hover {
  color: #FFFFFF;
}

.top-bar-item:hover::after {
  width: 100%;
}

.top-bar i {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.top-bar-item:hover i {
  color: #EC6D2D;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-db4178d *//* ===== RESET SCROLLA POZIOMEGO ===== */
html, body {
  overflow-x: hidden;
}

/* ===== LOGO SECTION ===== */
.logo-section {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 150px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.logo-section img {
  position: relative;
  z-index: 10;
  max-height: 100%;
  max-width: 100%;
}

/* ===== ISKRY ===== */
.spark-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  overflow: hidden; /* ← ZAPOBIEGA SCROLLINGOWI */
  z-index: 5;
}

/* Pojedyncza iskierka */
.spark {
  position: absolute;
  bottom: 10px;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ec6d2d 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: sparkRise 3s linear infinite;

  /* Losowe przesunięcie i opóźnienie */
  left: calc(var(--i) * 5%);
  animation-delay: calc(var(--i) * 0.15s);
}

/* ANIMACJA ISKIER */
@keyframes sparkRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-140px) scale(0.3);
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-ed1f5d4 */.logo-section {
  position: relative;
  width: 100%;
  height: 150px; /* dostosuj wysokość */
  background-color: #00000; /* lub inny kolor tła */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.logo-section img {
  position: relative;
  z-index: 2; /* nad dymem */
  max-height: 100%;
  max-width: 100%;
}

/* Efekt dymu */
.logo-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 10%, transparent 70%);
  filter: blur(30px);
  opacity: 0.3;
  animation: smokeMove 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes smokeMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15%, 15%) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-752ae7 */.contact-bar {
  background-color: #EC6D2D; /* Pomarańczowe tło */
  color: #fff; /* Biały tekst */
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 8px 15px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-item a {
  color: #fff; /* Biały tekst */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000000; /* Ciemny kolor na hover dla kontrastu */
}

.contact-item i {
  font-size: 1.2rem;
  min-width: 18px;
  color: #fff; /* Białe ikony */
}

.contact-item.cta a {
  font-weight: 700;
  text-transform: none;
  padding: 6px 12px;
  border: 2px solid #fff; /* Biała ramka zamiast niebieskiej */
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-item.cta a:hover {
  background-color: #fff; /* Białe tło na hover */
  color: #EC6D2D; /* Pomarańczowy tekst na hover */
}

/* Responsywność na mniejszych ekranach */
@media (max-width: 600px) {
  .contact-bar {
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    text-align: center;
  }

  .contact-item {
    white-space: normal;
    justify-content: center;
  }
}/* End custom CSS */