@charset "UTF-8";
:root {
  --pearl-bush: #e4d9cd;
  --cod-gray: #201c1c;
  --tulip-tree: #ebb04c;
  --sinbad: #a7cbd8;
  --laser: #c6a576;
  --brown-rust: #9f5336;
  --cameo: #d8bd9e;
  --oslo-gray: #879197;
  --silk: #bfb3ac;
  --juniper: #748c8f;
  --clr-faq: #f5f8f7;
  --clr-faq-hover: #cead82;
  --main-color: #22c55e;
  --primary: #00a5e7;
  --primary-hover: #22c55e;
  --secondary: #dd3aa1;
  --secondary-hover: rgb(252, 123, 33);
  --neutral: #bfb3ac;
  --neutral-hover: #748c8f;
  --light-red: rgb(255, 102, 102);
  --red: #e70005;
  --dark-red: rgb(179, 0, 0);
  --light-orange: rgb(252, 123, 33);
  --orange: rgb(211, 84, 0);
  --dark-orange: rgb(168, 67, 0);
  --light-yellow: rgb(255, 223, 120);
  --yellow: rgb(212, 175, 55);
  --dark-yellow: rgb(163, 133, 43);
  --light-ocher: rgb(230, 230, 170);
  --ocher: rgb(202, 202, 135);
  --dark-ocher: rgb(162, 162, 108);
  --light-green: rgb(82, 156, 100);
  --green: #22c55e;
  --dark-green: rgb(5, 80, 61);
  --light-green2: rgb(216, 237, 221);
  --green2: rgb(120, 147, 127);
  --dark-green2: rgb(95, 117, 102);
  --light-blue: #00cae7;
  --blue: #00a5e7;
  --dark-blue: #0000e7;
  --light-brown: rgb(217, 173, 121);
  --brown: rgb(178, 109, 60);
  --dark-brown: rgb(53, 36, 26);
  --light-cream: rgb(255, 250, 248);
  --cream: rgb(241, 235, 234);
  --dark-cream: rgb(210, 205, 204);
  --light-gray: rgb(177, 180, 179);
  --gray: rgb(142, 145, 144);
  --dark-gray: rgb(110, 113, 111);
  --purple: #5f537d;
  --dark-color: black;
  --dark-color-hover: rgb(142, 145, 144);
  --light-color: #dee2e1;
  --whatsapp: #076650;
}

:root {
  direction: rtl;
  --ff-body: "Assistant", sans-serif;
  --ff-heading: "Assistant", sans-serif;
}

:root {
  --fs-200: 0.5rem;
  --fs-300: 0.9375rem;
  --fs-400: 1.0625rem;
  --fs-500: 1.275rem;
  --fs-600: 1.875rem;
  --fs-700: 2rem;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-400);
}

h1,
h2,
h3 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-600);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

p {
  line-height: 1.9;
  text-wrap: balance;
  padding: 0 0.5rem;
  margin: 0 auto 1rem auto;
}

strong {
  font-weight: var(--fw-700);
}

/* typgraphy */
.section-title {
  color: inherit;
  text-wrap: pretty;
  text-align: center;
  font-size: var(--fs-600);
  letter-spacing: 0.1rem;
  margin: 1rem auto;
  letter-spacing: 0.1rem;
  position: relative;
  position: relative;
  padding-bottom: 0.5rem;
  height: fit-content;
  width: fit-content;
  max-width: 60%;
  margin-bottom: 2rem;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1.5px;
  background-color: var(--primary);
  transform: translateX(-50%);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary-hover);
  border-radius: 50%;
  /* אנימציה */
  animation-name: fadeInMove;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  /* החלק החשוב – הפעלה בגלילה */
  animation-timeline: view();
  animation-range: entry 0 cover 50%;
}

@keyframes fadeInMove {
  0% {
    transform: translateX(500%);
  }
  100% {
    transform: translateX(10%);
  }
}
.big-title {
  font-size: clamp(var(--fs-500), 6vw, var(--fs-600));
  letter-spacing: 0.1rem;
  text-align: center;
}

.english {
  font-family: var(--ff-english);
  font-weight: var(--fw-400);
}

.title {
  font-size: clamp(var(--fs-400), 5vw, var(--fs-500));
  letter-spacing: 0.1rem;
  color: var(--dark-brown);
  margin-inline: auto;
  margin-bottom: 1rem;
}

li {
  line-height: 1.5;
}

@supports (text-wrap: balance) {
  p {
    text-wrap: balance;
  }
}
/*   RESET   */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ol,
ul,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul:where([role=list]),
ol:where([role=list]) {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark light;
  scroll-behavior: smooth;
  overflow-x: clip;
  writing-mode: horizontal-tb;
  direction: rtl;
  text-orientation: mixed;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: var(--ff-body);
  position: relative;
}

/* עיצוב פס הגלילה */
::-webkit-scrollbar {
  width: 0; /* רוחב הפס אם 0 אז הסתרת פס הגלילה */
  height: 2ch; /* גובה הפס, אם מדובר בפס אופקי */
}

/* עיצוב המסילה */
::-webkit-scrollbar-track {
  background: var(--light-color); /* צבע רקע המסילה */
  border-radius: 100svw; /* פינות מעוגלות */
}

/* עיצוב האגודל (החלק הניתן לגרירה) */
::-webkit-scrollbar-thumb {
  background: var(--yellow); /* צבע האגודל */
  border-radius: 100svw; /* פינות מעוגלות */
}

/* עיצוב האגודל במעבר עכבר */
::-webkit-scrollbar-thumb:hover {
  background: var(--green2); /* צבע כהה יותר במעבר עכבר */
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: auto;
  margin: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

a {
  color: inherit;
  text-decoration: none;
  transform-origin: right;
  transition: opacity var(--animation-timing), width var(--animation-timing), right var(--animation-timing), left var(--animation-timing), top var(--animation-timing), translate var(--animation-timing), background-color var(--animation-timing);
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
/*   General styling   */
.fab,
.fa-solid {
  padding-left: 0.5rem;
}

video {
  max-width: 100%;
  height: auto;
  padding: 1rem;
  margin: 0 auto;
  display: block;
  max-height: 90svh;
}

.section {
  padding: min(5vh, 10em) 0;
  display: grid;
}

/*  Utility Classes */
/* select all direct childen of .flow
   and add margin to the top for proper
   spacing */
.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-spacer, 1em);
}

.container {
  max-width: 95svw;
  margin: 2rem auto;
}

.flex-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  margin: 2rem auto;
}

.text-center {
  text-align: center;
  margin-bottom: 1rem;
}

button,
.btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  display: flex;
  line-height: 1;
  padding: 0.75em 1.75em;
  border-radius: var(--border-radius);
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: transparent;
  outline: transparent;
}

.btn--primary {
  background: var(--primary);
  font-weight: var(--fw-700);
  border: 2px solid var(--primary);
  max-width: 40svw;
  font-size: var(--fs-400);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn--secondary {
  background: var(--secondary);
  font-weight: var(--fw-700);
  border: 2px solid var(--secondary);
  max-width: 40svw;
  font-size: var(--fs-400);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

.btn--neutral {
  background-color: var(--neutral);
  font-weight: var(--fw-700);
  outline: 2px solid var(--light-brown);
}

.btn--neutral:hover,
.btn--neutral:focus-visible {
  background-color: var(--neutral-hover);
  color: var(--light-color);
  outline-offset: 0.25em;
}

.btn-dark {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background-color: var(--dark-color-hover);
  color: var(--dark-color);
}

.btn--back {
  position: relative;
  font-weight: var(--fw-700);
  background: var(--dark-color);
  color: var(--light-color);
  margin: 1em auto;
  min-width: max-content;
  max-width: 10svw;
  max-height: 1rem;
}

.btn--back:hover,
.btn--back:focus-visible {
  background-color: var(--secondary);
  color: var(--dark-color);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
}

.whatsapp-button {
  border: 1px solid var(--whatsapp);
  border-radius: 0;
}
.whatsapp-button .fa-whatsapp {
  padding-left: 1rem;
}

.btn-whatsapp:hover,
.whatsapp-button:hover {
  background-color: var(--light-green);
  color: black;
}

.copyright:hover span {
  color: #ff0000;
}

#whatsapp-link {
  position: fixed;
  left: 1%;
  top: 30svh;
  color: #076650;
  font-size: 3rem;
  text-decoration: none;
  z-index: 1000;
}

.scroll-x {
  width: 100%;
  height: max-content;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: auto;
  scroll-margin-bottom: 0;
  column-gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  cursor: zoom-in;
}

.scroll-x.grabbing {
  cursor: grabbing; /* סמן בעת גרירה */
}

.hidden {
  display: none;
}

.label-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-404 {
  margin: 1rem;
  padding: 1rem;
  min-height: 80svw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  background-color: var(--light-brown);
}

:root {
  --bar-width: 30px;
  --bar-height: 4px;
  --hamburger-gap: 5px;
  --foreground: #333;
  --background: white;
  --hamburger-margin: 1.5em;
  --animation-timing: 500ms ease-in-out;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}

.hamburger-menu {
  --x-width: calc(var(--hamburger-height) * 1.41421356237);
  display: flex;
  flex-direction: column;
  gap: var(--hamburger-gap);
  width: max-content;
  position: absolute;
  top: var(--hamburger-margin);
  right: var(--hamburger-margin);
  z-index: 10;
  cursor: pointer;
}

.hamburger-menu:has(input:checked) {
  --foreground: white;
  --background: #333;
}

.hamburger-menu:has(input:focus-visible)::before,
.hamburger-menu:has(input:focus-visible)::after,
.hamburger-menu input:focus-visible {
  border: 1px solid var(--background);
  box-shadow: 0 0 0 1px var(--foreground);
}

.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--foreground);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing), background-color var(--animation-timing);
}

.hamburger-menu input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}

.hamburger-menu:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}

.hamburger-menu:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}

.hamburger-menu input:checked {
  opacity: 0;
  width: 0;
}

.sidebar {
  padding: 0.5rem 1rem;
  padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 3rem);
  background-color: var(--foreground);
  color: var(--background);
  z-index: 9;
  transition: translate var(--animation-timing);
  translate: 150%;
  position: absolute;
  right: 0;
  flex-direction: column;
  align-items: start;
  width: 100%;
  min-height: 100vh;
  transform-origin: right;
  transition: translate 600ms ease-in;
  padding-top: 9rem;
}

.hamburger-menu:has(input:checked) + .sidebar {
  translate: 0;
}

/*   Footer   */
.site-footer {
  --logo-color: currentColor;
  text-align: center;
}

.wrapper-footer {
  display: grid;
  grid-template-areas: "more-info" "social";
  column-gap: 2rem;
  row-gap: 1rem;
  text-align: center;
}

.more-info {
  min-width: 70svw;
  max-width: 70svw;
  margin: auto;
  grid-area: more-info;
  grid-template-columns: max-content max-content max-content;
  justify-content: center;
}

.social {
  grid-area: social;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

a {
  transform-origin: center;
}

.contact-us,
.more-info,
.useful-information {
  display: grid;
  gap: 1rem;
}

footer:has(a[class=social-item]:hover) a[class=social-item]:not(:hover),
footer:has(i[class=social-item]:hover) a[class=social-item]:not(:hover),
footer:has(a[class=social-item]:hover) .social-item.active {
  opacity: 0.7;
  color: var(--secondary);
}

.fa-facebook:hover {
  color: blue;
}

.fa-instagram:hover {
  background: linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-clip: text; /* חיתוך רקע לטקסט */
  color: transparent; /* צבע טקסט שקוף כדי להציג את המעבר צבעים */
}

.fa-youtube:hover {
  color: red;
}

.fa-pinterest:hover {
  color: red;
}

.useful-information {
  grid-area: useful-information;
}

/*  Header  */
header {
  position: relative;
  min-height: 10svh;
  margin-bottom: 2rem;
}
header .page-header-content {
  display: flex;
  justify-content: center;
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 90svh;
  align-items: center;
}
header .logo {
  max-width: 30svw;
  color: var(--foreground);
  margin-top: 1rem;
}
header .logo .on {
  fill: black;
  transition: fill 0.25s ease;
}
header .logo:hover .on {
  fill: #22c55e;
}
header .nav-list a:focus,
header .nav-list a:hover {
  color: var(--primary-hover);
  font-weight: var(--fw-500);
}
header nav:has(a[class=nav-item]:hover) a[class=nav-item]:not(:hover),
header nav:has(i[class=nav-item]:hover) a[class=nav-item]:not(:hover),
header nav:has(a[class=nav-item]:hover) .nav-item.active {
  color: var(--primary);
}

/* form */
:root {
  --outline-color-invalid: hsl(205.87deg 45.24% 21.37%);
  --outline-color-valid: var(--light-blue);
}

#form {
  max-width: 100dvw;
  overflow: hidden;
  text-align: center;
  border-radius: var(--border-radius);
  justify-content: center;
}

form {
  margin: 1rem;
  min-height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: stretch;
}

.lead {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 700;
}

button[type=submit] {
  align-self: center;
  width: 100%;
  height: 2.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: var(--border-radius);
  margin: 0.5rem auto;
  color: var(--dark-color);
  background-color: var(--blue);
  transition: color 600ms ease, font-size 600ms ease, background-color 600ms ease, max-height 600ms ease;
}

button[type=submit]:hover,
button[type=submit]:focus {
  background-color: var(--green);
}

input:invalid,
textarea:invalid {
  border: none;
  border-radius: var(--border-radius);
  outline-width: unset;
  outline-color: var(--outline-color-invalid);
  outline-style: solid;
  outline-width: 0.1rem;
  min-width: 10svw;
}

form input:valid,
textarea:valid {
  border: none;
  border-radius: var(--border-radius);
  outline-width: unset;
  outline-color: var(--outline-color-valid);
  outline-style: solid;
  outline-width: 0.1rem;
}

textarea:focus,
form input:focus {
  border: 0.2rem solid var(--dark-color);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}

form:invalid {
  border-radius: 1rem;
}

.text-fields {
  padding: 1rem;
  margin-bottom: 0.5rem;
  width: inherit;
  display: grid;
  grid-template-areas: "name" "phone" "email" "message" "submit";
  grid-gap: 1rem;
  justify-items: center;
}
.text-fields Grid Area form .name-input {
  grid-area: name;
}
.text-fields .subject-input {
  grid-area: subject;
}
.text-fields .email-input {
  grid-area: email;
}
.text-fields .phone-input {
  grid-area: phone;
}
.text-fields .message-input {
  grid-area: message;
  height: 6rem;
}
.text-fields .file-form {
  grid-area: file;
}
.text-fields .submit {
  grid-area: submit;
}

.text-input {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: 100%;
}

.success {
  display: flex;
  flex-direction: column;
  background-color: rgba(125, 168, 174, 0.4117647059);
  align-items: center;
  text-align: center;
  min-height: 50svh;
  justify-content: center;
}

.contact-us {
  grid-area: contact-us;
  margin: 1rem;
  justify-content: start;
  text-align: start;
  padding: 1rem;
}
.contact-us span {
  display: inline-flex;
  margin: 1rem;
}
.contact-us ul li,
.contact-us ul a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.contact {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

#faq {
  scroll-margin-top: 20svh;
}

.faq-section {
  text-align: center;
}

.faq-item {
  animation: slide-in-list 1s ease-in-out forwards;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 7ch;
  cursor: pointer;
  transition: background-color 0.3s;
  gap: 1rem;
  min-width: 70svw;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.5rem;
  min-height: 10vh;
  text-align: start;
  align-items: center;
  color: currentColor;
  margin-top: 1rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px inset black;
}

.faq-question:hover {
  border-bottom: 2px inset var(--blue);
}

.faq-answer {
  padding-inline: 1rem;
  text-wrap: balance;
  border-radius: 0.3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: auto 1rem;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity var(--animation-timing), transform var(--animation-timing);
  line-height: 2;
  text-align: start;
  font-weight: 700;
}

.faq-question.active + .faq-answer {
  animation: slide-in-list var(--animation-timing) forwards;
}

.faq-question::before {
  content: "⇨";
  display: inline-flex;
  scale: 1.5;
  transition: transform var(--animation-timing);
  transform: rotate(180deg);
  padding: 0rem 0.5rem;
}

.faq-question.active::before {
  transform: rotate(90deg);
}

@keyframes slide-in-list {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.about,
.support {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.about h1,
.about h2,
.support h1,
.support h2 {
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.about .warrper-content-about,
.support .warrper-content-about {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
}
.about .warrper-content-about img,
.support .warrper-content-about img {
  aspect-ratio: 1;
  height: 70svw;
}
.about .warrper-content-about p,
.support .warrper-content-about p {
  margin-inline: auto;
}
.about .warrper-content-about .color-white,
.support .warrper-content-about .color-white {
  color: white;
  font-size: var(--fs-500);
}
#support-form {
  display: none;
}

.warrper-content-support {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.warrper-content-support p {
  text-align: right;
  margin-inline: auto;
}

.text-fields-support-form {
  padding: 1rem;
  margin-bottom: 0.5rem;
  width: inherit;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "name" "city" "phone" "email" "note" "agree" "submit";
  gap: 1rem;
}
.text-fields-support-form input {
  min-height: 3rem;
}
.text-fields-support-form label {
  text-align: start;
  display: flex;
  flex-direction: column;
}
.text-fields-support-form label .text-input {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: 100%;
}
.text-fields-support-form .agree-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.text-fields-support-form .agree-wrapper input[type=checkbox] {
  appearance: none; /* מסתיר את הסטייל המובנה */
  -webkit-appearance: none; /* לתמיכה בספארי */
  -moz-appearance: none; /* לפיירפוקס */
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-left: 1rem;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.text-fields-support-form .agree-wrapper input[type=checkbox]:checked {
  background-color: #000; /* רקע כשה־checkbox מסומן */
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8l4 4 8-8' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

.biz_name {
  grid-area: name;
}

.city {
  grid-area: city;
}

.phone {
  grid-area: phone;
}

.email {
  grid-area: email;
}

.note {
  grid-area: note;
}

.agree {
  grid-area: agree;
}

.submit {
  grid-area: submit;
}

/* דף עיר */
.page-city {
  /* סינון: חיפוש + תגיות */
}
.page-city .city-filters {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.page-city .city-filters .search-row input[type=search] {
  width: 0;
  box-sizing: border-box;
  border: 1px solid var(--foreground);
  border-radius: var(--border-radius);
  background-image: url("/assets/image/icon/searchicon.png");
  background-position: right center;
  background-repeat: no-repeat;
  padding: 0.35em 2em 0.35em 3em;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}
.page-city .city-filters .search-row input[type=search]:focus {
  width: 80%;
}
.page-city .city-filters .search-row #result-count {
  white-space: nowrap;
  font-size: 0.9rem;
  opacity: 0.8;
}
.page-city .city-filters .tags-row {
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.page-city .city-filters .tags-row .tag-chip {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--foreground);
  border-radius: var(--border-radius);
  background: transparent;
  cursor: pointer;
}
.page-city .city-filters .tags-row .tag-chip.active {
  background: var(--primary);
  color: var(--background, #fff);
  border-color: var(--primary);
}
.page-city .city-filters .tags-row .tag-chip.reset {
  margin-inline-start: auto;
}
.page-city .city-filters .tags-row .tag-chip:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 2px;
}
.page-city .business-card-section .biz-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

/* כרטיס עסק */
.biz-item {
  border: 1px solid var(--foreground);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image head" "image desc" "image hours" "actions actions" "address address";
  gap: 1rem;
  background: var(--background, #fff);
  justify-items: center;
  align-items: center;
  text-align: center;
  max-width: 400px;
}
.biz-item span,
.biz-item strong,
.biz-item p {
  font-size: var(--fs-300);
}

.biz-head {
  grid-area: head;
  display: grid;
  margin: 0;
  min-height: fit-content;
}

.biz-image {
  grid-area: image;
  aspect-ratio: 1;
  width: 300px;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--border-radius);
}

.biz-hours {
  grid-area: hours;
}

.biz-desc {
  grid-area: desc;
  font-size: 0.95rem;
}

.biz-address {
  width: 100%;
  grid-area: address;
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
}
.biz-address p,
.biz-address a {
  padding: 0;
  line-height: 1.1;
  font-size: var(--fs-300);
}

.biz-actions {
  grid-area: actions;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.biz-actions .btn {
  display: flex;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--foreground);
  border-radius: var(--border-radius);
  text-decoration: none;
}

:root {
  --animation-timing: 500ms ease-in-out;
  --border-radius: 0.3rem;
  --gap: 1rem;
}

/*  Homepage   */
.hero > div {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
}

/* === hero === */
.hero {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-map {
  position: relative;
  height: 40svh;
  object-fit: cover;
  background-color: var(--light-color);
  background: url("/assets/image/img/map.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 0.5rem;
  /* שימוש במסכה */
  -webkit-mask-image: url("/assets/image/img/mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  mask-image: url("/assets/image/img/mask.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
}

.hero-title,
.hero-sub {
  padding: 0 1rem;
  width: fit-content;
}

.marker {
  position: absolute;
  transform: translate(-50%, -100%);
  text-decoration: none;
}

.marker--highlight img {
  width: 5rem;
  height: auto;
}

.marker-label {
  display: none;
  position: absolute;
  top: 1rem;
  right: 0;
  background: var(--green);
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.marker:hover .marker-label {
  display: block;
}

/* === cities === */
.cities {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #c4f2f2 100%);
  padding: 2rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 5svh;
}
.cities ul {
  display: flex;
  flex-wrap: wrap;
}
.cities ul li {
  width: fit-content;
  text-align: center;
}
.cities ul li a {
  display: block;
  min-width: 15svw;
  font-size: var(--fs-600);
}
.cities ul li a:hover, .cities ul li a:focus-visible {
  rotate: 5deg;
}

.shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape svg {
  position: relative;
  display: block;
  width: calc(271% + 1.3px);
  max-height: 115px;
}

.shape-b {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-b svg {
  position: relative;
  display: block;
  width: calc(103% + 1.3px);
  max-height: 115px;
}

.shape-fill {
  fill: #ffffff;
}

/* === Business form === */
.form-create-business-section {
  position: relative;
}

.form-create-business {
  display: grid;
  gap: 1rem;
}
.form-create-business p {
  text-align: center;
}
.form-create-business ::placeholder {
  font-size: 0.6rem;
  text-align: right;
}
.form-create-business .text-fields {
  display: grid;
  justify-items: stretch;
  gap: 1rem;
  grid-template-areas: "biz-name" "city" "categories" "weekend-hours" "address" "phone" "whatsapp" "website" "image" "description" "submit" "status";
}
.form-create-business .biz-name-field {
  grid-area: biz-name;
}
.form-create-business .city-field {
  grid-area: city;
}
.form-create-business .categories-field {
  grid-area: categories;
}
.form-create-business .categories-field select {
  width: 100%;
  min-height: 12rem;
}
.form-create-business .address-field {
  grid-area: address;
}
.form-create-business .phone-field {
  grid-area: phone;
}
.form-create-business .whatsapp-field {
  grid-area: whatsapp;
}
.form-create-business .website-field {
  grid-area: website;
}
.form-create-business .image-field {
  grid-area: image;
}
.form-create-business .description-field {
  grid-area: description;
}
.form-create-business .weekend-hours-field {
  grid-area: weekend-hours;
}
.form-create-business .submit-field {
  grid-area: submit;
}
.form-create-business .form-status {
  grid-area: status;
}
.form-create-business .field-wrapper {
  display: grid;
  gap: 0.5rem;
}
.form-create-business .field-wrapper label {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.form-create-business .description-field textarea {
  min-height: 20svh;
}
@media (min-width: 720px) {
  .form-create-business .text-fields {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    grid-template-areas: "biz-name biz-name" "city address " " image weekend-hours" "categories  categories" " phone  whatsapp" "website  website" "description description" "submit submit" "status status";
  }
}

.chk input[type=checkbox] {
  appearance: none; /* מסתיר את הסטייל המובנה */
  -webkit-appearance: none; /* לתמיכה בספארי */
  -moz-appearance: none; /* לפיירפוקס */
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.chk input[type=checkbox]:checked {
  background-color: #000; /* רקע כשה־checkbox מסומן */
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8l4 4 8-8' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

/* סטטוס שליחה — בוליט */
.form-status:not(:empty) {
  background-color: var(--primary);
  border: 2px solid var(--foreground);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  outline: 2px solid var(--foreground);
  outline-offset: 0.5rem;
  width: fit-content;
  margin: auto;
  padding: 0.5rem;
}

/* grid */
.grid {
  display: grid;
}

/*   gallery  */
.gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  align-items: baseline;
}

.gallery-item {
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--light-brown);
  padding-bottom: 2rem;
  display: grid;
  row-gap: 1rem;
  font-size: inherit;
  grid-template-rows: 1fr 4rem auto;
}

.gallery-image {
  width: 100%;
  min-width: 70svw;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  opacity: 0.9;
}

.gallery-title {
  margin-top: 1rem;
}

.cookie-consent.active {
  bottom: 0;
  display: block;
}

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;
  background-color: #f0f0f0;
  color: var(--dark-color);
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-width: clamp(30svw, 70svw, 50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  padding-block-end: 1rem;
  text-wrap: balance;
  margin-block-end: 5rem;
  transition: display 0.5s;
}
.cookie-consent img {
  justify-content: center;
  object-fit: contain;
  max-width: 20svw;
  max-height: 20svw;
}
.cookie-consent button {
  min-width: 50svw;
  height: 3rem;
}
.cookie-consent .color-light {
  color: var(--light-color);
}
.cookie-consent .flex-column {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
.cookie-consent .btn-accept {
  background-color: var(--primary);
  color: var(--dark-color);
  border-color: inherit;
}
.cookie-consent .btn-accept:hover,
.cookie-consent .btn-accept:focus-visible {
  background-color: var(--primary-hover);
  color: var(--light-color);
  font-weight: 700;
}
.cookie-consent .btn-reject {
  background-color: var(--secondary-color-light);
  color: var(--dark-color);
  border-color: inherit;
}
.cookie-consent .btn-reject:hover,
.cookie-consent .btn-reject:focus-visible {
  background-color: var(--red);
  color: var(--light-color);
  font-weight: 700;
}

@media (prefers-color-scheme: light) {
  .html {
    color: var(--dark-color);
    background-color: var(--red);
  }
}
@media (prefers-color-scheme: dark) {
  html {
    color: var(--light-color);
    background-color: var(--dark-color);
  }
  .biz-item {
    background-color: #201d1d;
  }
  .cookie-consent p {
    color: var(--dark-color);
  }
  .site-footer .social {
    color: var(--cream);
  }
  .copyright {
    color: var(--cream);
  }
  .btn--back {
    border: 2px solid currentColor;
  }
  .shape-fill {
    fill: black;
  }
  .bg-light,
  .about,
  .shipping-container select,
  .shipping-method,
  .modal-message {
    color: var(--dark-color);
  }
}
@media (min-width: 45em) {
  header .nav-list {
    flex-direction: row;
    min-height: 5svh;
    align-items: start;
  }
  .hamburger-menu {
    opacity: 0;
    width: 0;
  }
  .sidebar {
    padding: 1.5em;
    translate: 0;
    width: auto;
    min-height: max-content;
    background-color: inherit;
  }
  a[class=nav-item] {
    color: black;
  }
  .hero {
    grid-template-columns: 2fr 3fr;
  }
  .hero-content {
    background-size: 20%;
  }
  .top-background {
    background-size: contain;
  }
  .svg-title {
    min-height: 20ch;
  }
  .flex-group {
    justify-content: space-evenly;
  }
  .faq-answer {
    text-align: center;
    margin: auto;
    width: 80svw;
  }
  img {
    max-height: 50svh;
    width: auto;
    object-fit: cover;
    margin-right: auto;
    margin-left: auto;
    transition: scale 1s linear;
  }
  img:hover {
    opacity: 0.9;
  }
  ol li {
    grid-template-columns: 50svw;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  /* אפקט hover */
  .gallery-item img:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .cookie-consent img {
    width: 10svw;
    height: 10svw;
  }
  .page-city .business-card-section .biz-list {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  /* form */
  .text-fields-support-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "name   city" "phone  email" "note   note" "agree  agree" "submit submit";
    gap: 1rem;
  }
  button[type=submit] {
    max-width: 50%;
    margin: auto;
  }
  #form {
    padding: 2rem;
    text-align: center;
  }
  #form .text-fields {
    justify-content: center;
    grid-template-areas: "name     phone    email" "message  message  message" "submit   submit   submit ";
    padding: 1rem 0;
  }
  #form input:invalid,
  #form textarea:invalid {
    min-height: 3rem;
  }
  /* צור קשר */
  .contact {
    flex-direction: row-reverse;
    min-height: 60svh;
    align-items: center;
  }
  /* form */
  .form-section {
    min-width: 50svw;
  }
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
  }
  .lightbox.hidden {
    display: none;
  }
  .lightbox-image {
    max-width: 90%;
    max-height: 80%;
    margin: 0 auto;
    object-fit: contain;
  }
  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
  }
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 5rem;
    cursor: pointer;
    z-index: 1001;
  }
  .lightbox-prev {
    left: 1rem;
    padding-right: 10rem;
  }
  .lightbox-next {
    right: 1rem;
    padding-left: 10rem;
  }
  .lightbox-prev:hover,
  .lightbox-next:hover {
    color: #ccc;
  }
  .lightbox-pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
  }
  .lightbox-pagination button {
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    width: 0.5rem;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--light-color);
    background-color: transparent;
    cursor: pointer;
    transition: background-color var(--animation-timing), transform var(--animation-timing);
  }
  .lightbox-pagination button.active {
    background-color: var(--light-color);
    transform: scale(1.2);
  }
  .tags-list .btn-tag {
    min-width: 10ch;
  }
  .tags-list {
    grid-template: auto/auto auto auto auto;
  }
  .faq-question {
    width: 80svw;
  }
  .about .warrper-content-about {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
  }
  .about .warrper-content-about img {
    width: 25svw;
    max-height: 25svw;
    aspect-ratio: 1;
    height: auto;
    border-radius: 10%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .text-fields {
    padding: 1rem;
    margin-bottom: 0.5rem;
    width: inherit;
    grid-gap: 2rem;
    justify-content: center;
    justify-items: center;
    margin: 2rem auto;
    display: grid;
    grid-template-areas: "name" "phone" "email" "message" "submit";
  }
  input:invalid,
  textarea:invalid {
    min-width: 20svw;
    min-height: 3rem;
  }
}
@media (min-width: 35em) {
  :root {
    --fs-300: 1rem;
    --fs-400: 1.125rem;
    --fs-500: 1.5rem;
    --fs-600: 2.25rem;
    --fs-700: 3rem;
  }
}
