.elementor-25 .elementor-element.elementor-element-c57b061{--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:35px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:15;}.elementor-25 .elementor-element.elementor-element-24b9459{--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;}/* Start custom CSS for html, class: .elementor-element-0bdd1c9 *//* ===== RESET SCROLLA POZIOMEGO ===== */
html, body {
  overflow-x: hidden;
}

/* ===== LOGO SECTION ===== */
/* ===== LOGO SECTION ===== */
/* ===== LOGO SECTION ===== */
.logo-section {
  position: relative;
  width: 100%; /* Pełna szerokość ekranu */
  height: 150px;
  margin: 0 auto;
  background-color: #2F2F2F; /* Zmieniono kolor tła */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* Animacja logo */
.logo-section img {
  position: relative;
  z-index: 10;
  max-height: 100%;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Płynne przejście efektów */
}

.logo-section img:hover {
 /* Powiększenie logo */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Dodanie cienia */
}

/* ===== 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, #C8A39D 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 html, class: .elementor-element-e996863 */:root {
  --nav-bg: rgba(47, 47, 47, 0.45);
  --nav-border: rgba(255,255,255,0.18);
  --nav-text: #ffffff;
  --nav-active: #ffffff;
  --nav-hover: rgba(255,255,255,0.85);
  --nav-blur: 12px;
}

/* Podstawowy pasek na desktop */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* pełna szerokość */
  z-index: 9999;
  padding: 10px 20px;
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Lista linków na desktop */
.glass-nav ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.glass-nav ul::-webkit-scrollbar {
  display: none;
}

.glass-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 10px;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1;
  white-space: nowrap;
  opacity: .95;
  transition: color .2s ease, opacity .2s ease;
}

.glass-nav a::after {
  content:"";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  background: rgba(255,255,255,.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.glass-nav a:hover { color: var(--nav-hover); }
.glass-nav a:hover::after { transform: scaleX(1); }

.glass-nav a.active {
  color: var(--nav-active);
}
.glass-nav a.active::after {
  transform: scaleX(1);
  background: var(--nav-active);
}

/* Przycisk hamburgera — ukryty na desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nav-text);
  font-size: 1.8rem;
  cursor: pointer;
}

/* MOBILE STYLING */
@media (max-width: 768px) {
  /* Pokazujemy hamburgera */
  .nav-toggle {
    display: block;
    z-index: 10001;
  }

  /* Domyślnie menu ukryte */
  .glass-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #2f2f2f; /* pełny kolor bez przezroczystości */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--nav-border);
    padding: 10px 0;
    gap: 12px;
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
  }

  /* Po otwarciu */
  .glass-nav.open ul {
    transform: translateY(0);
  }

  .glass-nav ul li {
    text-align: center;
  }
}

/* Odstęp od góry przy scrollowaniu */
body {
  scroll-padding-top: 70px;
}/* End custom CSS */