.elementor-59 .elementor-element.elementor-element-73ea07f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8a8be02 *//* ===== FONT ===== */
body {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
a {
  text-decoration: none !important;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  all: unset;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle .bar {
  width: 100%;
  height: 4px;
  background-color: #FFD100;
  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: rgba(255, 209, 0, 0.6); /* półprzezroczone żółte */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* dla Safari */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
  z-index: 1000;
  padding: 60px 20px 40px;
  text-align: center;
}
.fullscreen-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ===== LOGO IN MENU ===== */
.menu-logo {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 30px;
  animation: slideIn 0.4s ease-out forwards;
  opacity: 0;
  transform: translateY(-30px);
  animation-delay: 0.1s;
}
.fullscreen-menu.active .menu-logo {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LINKI MENU ===== */
.fullscreen-menu a {
  text-decoration: none;
  font-size: 1.3rem;
  margin: 14px 0;
  color: white !important;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideIn 0.4s ease-out forwards;
}
.fullscreen-menu.active a {
  animation-delay: calc(var(--i) * 0.3s);
}
.fullscreen-menu a:hover {
  opacity: 0.85;
}

/* ===== ANIMACJA LINKÓW ===== */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */