.elementor-22 .elementor-element.elementor-element-3460c89{--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;}.elementor-22 .elementor-element.elementor-element-cf5c1b6{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-010a4d1 *//* ===== FONT ===== */
body, .fullscreen-menu {
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  all: unset;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none !important;
}
.menu-toggle .bar {
  width: 100%;
  height: 4px;
  background-color: #3398CC;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.menu-toggle:hover,
.menu-toggle:focus {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.menu-toggle.active .bar {
  background-color: white !important;
}

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #3398CC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
  z-index: 1000;
  padding: 40px 20px;
  text-align: center;
}
.fullscreen-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ===== ANIMACJA WSZYSTKICH LINKÓW SEKWENCYJNIE ===== */
.fullscreen-menu a {
  text-decoration: none;
  font-size: 1.3rem;
  margin: 14px 0;
  color: white;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideIn 0.4s ease-out forwards;
}
.fullscreen-menu.active a {
  animation-delay: calc(var(--i) * 0.3s);
}

/* Dynamiczne przypisanie --i do każdego linku w HTML (patrz niżej) */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullscreen-menu a:hover {
  opacity: 0.85;
}/* End custom CSS */