.elementor-kit-6{--e-global-color-primary:#1C8BE6;--e-global-color-secondary:#54595F;--e-global-color-text:#000000;--e-global-color-accent:#99CC33;--e-global-color-99bc888:#CF2E2E;--e-global-color-b040a40:#FFF2DE;--e-global-color-445e32e:#473820;--e-global-color-d453108:#0060AF;--e-global-color-5b4a4f3:#EC6525;--e-global-color-7a2e63a:#F9DB59;--e-global-color-a6dfbac:#FFFF00;--e-global-color-ef3785c:#090228;--e-global-typography-primary-font-family:"Nunito";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Nunito";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Nunito";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Nunito";--e-global-typography-accent-font-weight:500;--e-global-typography-c08dbc9-font-family:"Square Peg";--e-global-typography-c08dbc9-font-size:22px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* A sticky container: flex, sor irány */
.sticky-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #fff;

  /* ← EZ AZ ÚJ RÉSZ */
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sticky-nav-bar.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Hamburger gomb */
.sticky-nav-bar .bar-toggle {
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0; /* ne zsugorodjon */
}
.sticky-nav-bar .bar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}

/* Menü — asztali: vertikálisan nyílik, de MELLETTE */
.sticky-nav-bar .nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  flex: 1; /* kitölti a maradék helyet */
}

.sticky-nav-bar .nav-menu.is-open {
  max-height: 400px;
}

/* Mobil: horizontálisan nyílik */
@media (max-width: 767px) {
  .sticky-nav-bar .nav-menu {
    max-height: unset;
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.4s ease;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .sticky-nav-bar .nav-menu.is-open {
    max-width: 100%;
  }
}

/* Az arrow elem alapállapota */
.sticky-nav-bar .bar-toggle svg,
.sticky-nav-bar .bar-toggle i {
  transition: transform 0.35s ease;
}

/* Ha nyitva van a menü, forog 180°-ot → Arrow up */
.sticky-nav-bar .bar-toggle.is-active svg,
.sticky-nav-bar .bar-toggle.is-active i {
  transform: rotate(180deg);
}

@keyframes bgColorCycle {
  0%   { background-color: #CF2E2E; }
  33%  { background-color: #473820; }
  66%  { background-color: #EC6525; }
  100% { background-color: #CF2E2E; }
}

/* Hamburger toggle háttere */
.bar-toggle {
  animation: bgColorCycle 9s ease-in-out infinite !important;
}

/* Nav menu widget háttere */
.nav-menu .elementor-nav-menu {
  animation: bgColorCycle 9s ease-in-out infinite !important;
   border-radius: 0 0 20px 20px;
}


.vpapir {
  background: #FFF2DE;
}/* End custom CSS */