.elementor-kit-5{--e-global-color-primary:#FFB600;--e-global-color-secondary:#333333;--e-global-color-text:#000000;--e-global-color-accent:#E0E0E0;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-8cccc62-font-family:"futura-pt";--e-global-typography-8cccc62-font-weight:300;--e-global-typography-5331a24-font-family:"futura-pt";--e-global-typography-5331a24-font-weight:300;--e-global-typography-359323e-font-family:"futura-pt-condensed";--e-global-typography-359323e-font-weight:700;--e-global-typography-fc52977-font-family:"futura-pt-bold";--e-global-typography-fc52977-font-weight:800;--e-global-typography-390732f-font-family:"Heebo";--e-global-typography-390732f-font-weight:400;--e-global-typography-7cfcdc0-font-family:"Heebo";--e-global-typography-7cfcdc0-font-weight:800;}.elementor-kit-5 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 *//* =========================================================
   DECKCO — Shared Custom CSS
   Domain-independent and production-ready
   ========================================================= */

:root {
  --deckco-ink: #414141;
  --deckco-border: #e5e5e5;
  --deckco-hover: #f5f5f5;
  --deckco-yellow: #ffb600;
}

/* ---------------------------------------------------------
   Hero CTA
   --------------------------------------------------------- */

#hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#hero-cta::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  pointer-events: none;
  background-color: currentColor;

  /* Relative path: works locally, in Live Link, and on production */
  -webkit-mask-image: url("/wp-content/uploads/2026/08/arrow-sm-right.svg");
  mask-image: url("/wp-content/uploads/2026/08/arrow-sm-right.svg");

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: contain;
  mask-size: contain;

  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  #hero-cta:hover::after {
    transform: translateX(4px);
  }
}

/* ---------------------------------------------------------
   Logo star interaction
   --------------------------------------------------------- */

.deckco-logo {
  justify-content: flex-start !important;
}

.deckco-star {
  display: inline-block;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  transform-origin: center;
}

.deckco-logo:hover .deckco-star,
.deckco-star:active {
  animation: deckco-star-spin 250ms ease-in-out;
}

@keyframes deckco-star-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* ---------------------------------------------------------
   Project navigation
   --------------------------------------------------------- */

.deckco-project-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0;
}

.deckco-project-navigation__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 214px;
  min-height: 60px;
  padding: 0 24px;
  border: 2px solid var(--deckco-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--deckco-ink);
  font-family: futura-pt, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  touch-action: manipulation;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.deckco-project-navigation__arrow {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  position: relative;
  top: -2px;
  font-size: 1.2em;
  line-height: 1;
  transition:
    max-width 180ms ease,
    margin 180ms ease,
    opacity 120ms ease;
}

.deckco-project-navigation__arrow--previous {
  margin-right: 0;
}

.deckco-project-navigation__arrow--next {
  margin-left: 0;
}

.deckco-project-navigation__link:hover,
.deckco-project-navigation__link:focus-visible {
  border-color: var(--deckco-hover);
  background-color: var(--deckco-hover);
  color: var(--deckco-ink);
}

.deckco-project-navigation__link:hover
.deckco-project-navigation__arrow,
.deckco-project-navigation__link:focus-visible
.deckco-project-navigation__arrow {
  max-width: 0.8em;
  opacity: 1;
}

.deckco-project-navigation__link:hover
.deckco-project-navigation__arrow--previous,
.deckco-project-navigation__link:focus-visible
.deckco-project-navigation__arrow--previous {
  margin-right: 8px;
}

.deckco-project-navigation__link:hover
.deckco-project-navigation__arrow--next,
.deckco-project-navigation__link:focus-visible
.deckco-project-navigation__arrow--next {
  margin-left: 8px;
}

.deckco-project-navigation__link:focus-visible {
  outline: 2px solid var(--deckco-yellow);
  outline-offset: 4px;
}

/* ---------------------------------------------------------
   Mobile project navigation
   --------------------------------------------------------- */

@media (max-width: 767px) {
  .deckco-project-navigation {
    gap: 10px;
  }

  .deckco-project-navigation__link {
    flex: 1 1 0;
    width: auto;
    min-height: 46px;
    padding: 0 10px;
    font-size: 15px;
    white-space: nowrap;
  }

  .deckco-project-navigation__arrow {
    font-size: 18px;
  }

  .deckco-project-navigation__link:hover
  .deckco-project-navigation__arrow--previous,
  .deckco-project-navigation__link:focus-visible
  .deckco-project-navigation__arrow--previous {
    margin-right: 5px;
  }

  .deckco-project-navigation__link:hover
  .deckco-project-navigation__arrow--next,
  .deckco-project-navigation__link:focus-visible
  .deckco-project-navigation__arrow--next {
    margin-left: 5px;
  }
}

/* ---------------------------------------------------------
   Accessibility: respect reduced-motion preference
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  #hero-cta::after,
  .deckco-star,
  .deckco-project-navigation__link,
  .deckco-project-navigation__arrow {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

/* Header contact:
   Desktop = text only
   Tablet and mobile = envelope icon only
*/

.elementor-38 .elementor-element.elementor-element-2e03456f .elementor-button-icon {
  display: none;
}

@media (max-width: 1024px) {
  .elementor-38 .elementor-element.elementor-element-2e03456f {
    width: 58px !important;
    flex: 0 0 58px !important;
  }

  .elementor-38 .elementor-element.elementor-element-2e03456f .elementor-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 58px !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .elementor-38 .elementor-element.elementor-element-2e03456f .elementor-button-text {
    display: none !important;
  }

  .elementor-38 .elementor-element.elementor-element-2e03456f .elementor-button-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
  }

  .elementor-38 .elementor-element.elementor-element-2e03456f .elementor-button-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* מיקום סיום הגלילה — ערך גדול יותר משאיר יותר מקום מעל האזור */

#work {
  scroll-margin-top: 120px !important;
}

#approach {
  scroll-margin-top: 8px !important;
}

#contact {
  scroll-margin-top: 120px !important;
}

/* Header language switcher */
.elementor-location-header .elementor-widget-shortcode {
  width: 40px !important;
  min-width: 40px !important;
  flex: 0 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.elementor-location-header .trp-shortcode-switcher__wrapper {
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  --bg: transparent !important;
  --bg-hover: transparent !important;
  --border: 0 !important;
  --border-width: 0 !important;
}

.elementor-location-header .trp-shortcode-switcher,
.elementor-location-header .trp-current-language-item__wrapper,
.elementor-location-header .trp-language-item__default {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.elementor-location-header .trp-shortcode-switcher__wrapper .trp-flag-image {
  width: 24px !important;
  max-width: 24px !important;
  height: 18px !important;
  object-fit: contain;
  display: block !important;
}

/* מרווח בין החץ לטקסט בניווט פרויקטים בעברית */
.translatepress-he_IL .deckco-project-navigation__link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.translatepress-he_IL .deckco-project-navigation__arrow {
  margin: 0 !important;
  line-height: 1 !important;
}

/* Hero CTA — Hebrew arrow direction */
body.translatepress-he_IL #hero-cta::after {
  transform: scaleX(-1);
}

body.translatepress-he_IL #hero-cta:hover::after {
  transform: translateX(-4px) scaleX(-1);
}

/* Footer links — keep icons on the left in Hebrew */
body.translatepress-he_IL .elementor-location-footer .elementor-button-content-wrapper {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  direction: ltr;
}

body.translatepress-he_IL .elementor-location-footer .elementor-button-text {
  direction: rtl;
  unicode-bidi: plaintext;
}

/* Hebrew typography — complete coverage */
body.translatepress-he_IL .e-heading-base,
body.translatepress-he_IL .e-paragraph-base,
body.translatepress-he_IL .e-button-base,
body.translatepress-he_IL .elementor-heading-title,
body.translatepress-he_IL .elementor-heading-title *,
body.translatepress-he_IL .elementor-widget-theme-post-title,
body.translatepress-he_IL .elementor-widget-theme-post-title *,
body.translatepress-he_IL .elementor-widget-text-editor,
body.translatepress-he_IL .elementor-widget-text-editor *,
body.translatepress-he_IL .elementor-item,
body.translatepress-he_IL .elementor-button,
body.translatepress-he_IL .elementor-button-text,
body.translatepress-he_IL .elementor-field,
body.translatepress-he_IL .elementor-field-label,
body.translatepress-he_IL .elementor-form label,
body.translatepress-he_IL .deckco-project-navigation__link,
body.translatepress-he_IL .deckco-project-navigation__link *,
body.translatepress-he_IL .elementor-form input,
body.translatepress-he_IL .elementor-form textarea,
body.translatepress-he_IL .elementor-form button {
  font-family: "Heebo", sans-serif !important;
}

body.translatepress-he_IL .elementor-field::placeholder {
  font-family: "Heebo", sans-serif !important;
}

/* Hebrew contact form — submit button on the physical left */
body.translatepress-he_IL .elementor-location-footer .elementor-field-type-submit {
  direction: ltr !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

body.translatepress-he_IL .elementor-location-footer .elementor-field-type-submit .elementor-button {
  direction: rtl !important;
}

/* Hebrew project pages — mirror English text alignment */
body.translatepress-he_IL .elementor-location-single .elementor-element-efc123e,
body.translatepress-he_IL .elementor-location-single .e-heading-base,
body.translatepress-he_IL .elementor-location-single .elementor-widget-text-editor,
body.translatepress-he_IL .elementor-location-single .elementor-widget-text-editor p,
body.translatepress-he_IL .elementor-location-single .deckco-project-navigation__link,
body.translatepress-he_IL .elementor-location-single .deckco-project-navigation__label {
  direction: rtl !important;
  text-align: start !important;
}

/* Show the correct animated back arrow for each language */
body.translatepress-he_IL .deckco-back-arrow-en {
  display: none !important;
}

body:not(.translatepress-he_IL) .deckco-back-arrow-he {
  display: none !important;
}

/* Hebrew project pages — mirrored from the English layout */
body.translatepress-he_IL .elementor-location-single .elementor-element-efc123e {
  direction: rtl !important;
}

body.translatepress-he_IL .elementor-location-single .e-heading-base,
body.translatepress-he_IL .elementor-location-single .elementor-widget-text-editor,
body.translatepress-he_IL .elementor-location-single .elementor-widget-text-editor p {
  direction: rtl !important;
  text-align: right !important;
}

/* Project summary: mirror the English padding */
body.translatepress-he_IL .elementor-location-single .elementor-element-83131a6 {
  padding: 0 0 0 220px !important;
}

@media (max-width: 1200px) {
  body.translatepress-he_IL .elementor-location-single .elementor-element-83131a6 {
    padding: 0 0 0 70px !important;
  }
}

@media (max-width: 767px) {
  body.translatepress-he_IL .elementor-location-single .elementor-element-83131a6 {
    padding: 0 12px 0 0 !important;
  }
}

/* Hebrew logo text — one shared animated star */
.deckco-logo-text-he {
  display: none !important;
}

body.translatepress-he_IL .deckco-logo-text-en {
  display: none !important;
}

body.translatepress-he_IL .deckco-logo-text-he {
  display: block !important;
}

/* Hebrew logo — optical size adjustment */
body.translatepress-he_IL .deckco-logo-text-he {
  height: 38px !important;
  width: auto !important;
  flex: 0 0 auto !important;
  align-self: center !important;
}

body.translatepress-he_IL .deckco-logo-text-he svg {
  display: block !important;
  width: auto !important;
  height: 38px !important;
  max-width: none !important;
}

/* רווח בין הלוגו לכוכבית — עברית בלבד */
body.translatepress-he_IL .deckco-logo {
  gap: 9px !important;
}

/* לוגו עברי בלבד — הכוכבית מעט גבוהה יותר ומסתובבת לכיוון ההפוך */
body.translatepress-he_IL .deckco-star {
  position: relative;
  top: -5px;
}

body.translatepress-he_IL .deckco-logo:hover .deckco-star,
body.translatepress-he_IL .deckco-logo:active .deckco-star {
  animation: deckco-star-spin-he 0.25s ease-in-out;
}

@keyframes deckco-star-spin-he {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* תיקון קווי מתאר שגויים בלוגו העברי בעמודי פרויקט */
body.translatepress-he_IL.single-deckco_project
  .deckco-logo-text-he
  svg,
body.translatepress-he_IL.single-deckco_project
  .deckco-logo-text-he
  svg * {
  fill: #333 !important;
  stroke: none !important;
  stroke-width: 0 !important;
}

/* ניווט פרויקטים בעברית:
   טקסט ממורכז במצב רגיל, וטקסט + חץ ממורכזים ב-hover */
body.translatepress-he_IL .deckco-project-navigation__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
}

body.translatepress-he_IL .deckco-project-navigation__arrow {
  max-width: 0 !important;
  margin-inline: 0 !important;
  opacity: 0;
  overflow: hidden;
}

/* החץ של "פרויקט קודם" נמצא לפני הטקסט */
body.translatepress-he_IL
  .deckco-project-navigation__link:hover
  .deckco-project-navigation__arrow--previous {
  max-width: 16px !important;
  margin-inline-end: 10px !important;
  opacity: 1;
}

/* החץ של "פרויקט הבא" נמצא אחרי הטקסט */
body.translatepress-he_IL
  .deckco-project-navigation__link:hover
  .deckco-project-navigation__arrow--next {
  max-width: 16px !important;
  margin-inline-start: 10px !important;
  opacity: 1;
}

/* Hero CTA — prevent size change on hover */
#hero-cta {
  border-width: 0 !important;
  box-sizing: border-box !important;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease !important;
}

#hero-cta:hover,
#hero-cta:focus-visible {
  border-width: 0 !important;
  box-shadow: inset 0 0 0 4px #ffc943 !important;
}

/* Center the Focus heading — Hebrew mobile only */
@media (max-width: 767px) {
  body.translatepress-he_IL .e-e29bf1c-79dfd0c {
    text-align: center !important;
  }
}/* End custom CSS */