@charset "UTF-8";
:root {
  --logo-brown: rgba(54, 35, 25, 1);
  --logo-orange: rgba(229, 113, 10, 255);
  --logo-peach: rgba(239, 134, 87, 255);
  --logo-light-brown: rgba(132, 52, 17, 255);
  --clr-faq: #f5f8f7;
  --clr-faq-hover: #cead82;
  --primary: var(--logo-light-brown);
  --primary-hover: brown;
  --secondary: rgba(132, 52, 17, 255);
  --secondary-hover: var(--logo-orange);
  --neutral: rgb(202, 202, 135);
  --neutral-hover: rgb(230, 230, 170);
  --light-red: rgb(255, 102, 102);
  --red: rgb(255, 0, 0);
  --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(234, 234, 59);
  --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: rgb(7, 102, 80);
  --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: rgb(187 238 244);
  --blue: rgb(139, 190, 177);
  --dark-blue: rgb(95, 130, 135);
  --light-brown: rgb(234, 226, 198);
  --brown: rgb(173, 169, 145);
  --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);
  --dark-color: black;
  --dark-color-hover: rgb(142, 145, 144);
  --light-color: #f5f8f7;
  --whatsapp: #94d3c4;
  --logo-brown: rgba(54, 35, 25, 1);
  --logo-orange: rgba(229, 113, 10, 255);
  --logo-peach: rgba(239, 134, 87, 255);
  --logo-light-brown: rgba(239, 134, 87, 255);
  --background-1: rgba(151, 151, 149, 1);
  --background-2: rgba(214, 159, 134, 1);
  --background-3: rgba(234, 190, 161, 1);
  --background-4: rgba(194, 194, 192, 1);
  --background-5: rgba(247, 221, 196, 1);
  --background-6: rgba(239, 201, 183, 1);
  --copper-canyon: rgba(139, 57, 19, 1);
  --wild-sand: rgba(244, 244, 244, 1);
  --burnt-sienna: rgba(235, 132, 85, 1);
  --eclipse: rgba(54, 35, 25, 1);
  --star-dust: rgba(151, 151, 149, 1);
  --my-pink: rgba(214, 159, 134, 1);
  --zinnwaldite: rgba(234, 190, 161, 1);
  --gray-nickel: rgba(194, 194, 192, 1);
  --givry: rgba(247, 221, 196, 1);
  --desert-sand: rgba(239, 201, 183, 1);
}

:root {
  direction: rtl;
  --ff-body: "Assistant", sans-serif;
  --ff-heading: "Varela Round", sans-serif;
  --ff-english: "Winky Sans", sans-serif;
}

.amatic-sc-regular {
  font-family: "Amatic SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.varela-round-regular {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}

: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);
}

h2,
h3 {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-400), 5vw, var(--fs-500));
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

h1,
section h1,
article h1,
aside h1,
nav h1 {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-400), 7vw, var(--fs-600));
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

p {
  font-size: clamp(var(--fs-300), 5vw, var(--fs-400));
  font-weight: var(--fw-500);
  line-height: 1.9;
  text-wrap: balance;
  padding: 0 1rem;
}

strong {
  font-weight: var(--fw-700);
  font-family: var(--ff-yad);
  letter-spacing: 0.1rem;
  font-size: var(--fs-300);
  color: black;
}

/* typgraphy */
.section-title {
  color: inherit;
  text-wrap: pretty;
  text-align: center;
  font-size: var(--fs-500);
  letter-spacing: 0.1rem;
  margin: 1rem auto;
  position: relative;
  padding-bottom: 0.5rem;
  height: fit-content;
  width: fit-content;
  max-width: 80%;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1.5px;
  background-color: var(--logo-orange);
  transform: translateX(-50%);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--logo-orange);
  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-600), 50%, var(--fs-700));
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.5;
}

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

.title {
  text-align: center;
  letter-spacing: 0.1rem;
  margin-inline: auto;
  margin-bottom: 1rem;
}

li {
  line-height: 1.5;
}

/*   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: 0.5rem; /* גובה הפס, אם מדובר בפס אופקי */
}

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

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

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

/* 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;
  height: auto;
  width: 100%;
  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   */
.center {
  text-align: center;
}

section,
.section {
  padding: 1rem 0 0 0;
  margin-bottom: 2rem;
}

/*  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);
}

main {
  padding-top: 2rem;
}

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

.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 95%;
  margin: auto;
  justify-content: space-between;
}

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

.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;
  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), rotate var(--animation-timing), transform var(--animation-timing);
}

.btn--primary {
  font-weight: var(--fw-700);
  font-size: var(--fs-500);
  margin: 0 auto;
  background-color: var(--logo-brown);
  color: var(--light-color);
  min-width: 15ch;
  height: auto;
}

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

.btn--secondary {
  background: var(--secondary);
  font-weight: var(--fw-700);
  color: white;
  max-width: 50svw;
  min-width: 15ch;
  font-size: var(--fs-400);
  margin: 1rem auto;
}
.btn--secondary span {
  margin: 0 1rem;
}
.btn--secondary svg {
  fill: white;
}

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

.btn--hero {
  flex: 1;
  font-family: var(--ff-heading);
  font-weight: var(--fw-700);
  font-size: clamp(var(--fs-300), 4vw, var(--fs-500));
  background-color: var(--logo-brown);
  color: var(--light-color);
  height: auto;
  transition: all var(--animation-timing);
}
.btn--hero:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
}

.flex-group:has(.btn--hero:hover) .btn--hero:not(:hover) {
  transform: scale(0.8);
  transition: all var(--animation-timing);
}

.flex-group .btn--hero:hover {
  transform: scale(1.1);
  background-color: var(--orange);
  z-index: 1;
  color: var(--light-color);
  transition: all var(--animation-timing);
}

.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(--logo-orange);
  color: var(--dark-color);
  margin: 2rem auto;
  min-width: max-content;
  max-width: 10svw;
}

.btn--goback {
  z-index: 1;
  position: absolute;
  bottom: 16rem;
  background: var(--logo-orange);
  color: var(--dark-color);
  max-width: min-content;
  aspect-ratio: 1;
  width: 2rem;
  height: auto;
  right: 2%;
  border-radius: 50%;
}

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

.btn--close {
  margin: auto;
  font-size: var(--fs-300);
  min-width: 70%;
}

.btn--close:hover,
.btn--close:focus-visible {
  background-color: var(--logo-peach);
  color: black;
}

.btn-whatsapp {
  aspect-ratio: 1;
  padding: 0;
  width: 3rem;
  height: 3rem;
}

.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: #076650;
  color: white;
  fill: white;
}

.btn--outline {
  outline: 2px solid currentColor;
  width: fit-content;
  margin: auto;
  min-height: 5ch;
  font-size: var(--fs-500);
  margin: 2rem auto 0 auto;
}

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

.btn-form {
  aspect-ratio: 1;
  padding: 0;
  width: 3rem;
  height: 3rem;
}

.btn-form:hover {
  background-color: var(--light-yellow);
  fill: var(--brown);
}

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

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

.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);
  border: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

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

.acacia-deco {
  position: absolute;
  bottom: 85%;
  left: 0;
  z-index: 100;
  max-width: 70svw;
  z-index: 100;
}

.masked-img {
  mask-image: url("/assets/image/img/mask.svg");
  -webkit-mask-image: url("/assets/image/img/mask.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left;
  -webkit-mask-size: cover;
}

: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: black;
  --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-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 6rem);
  background-color: var(--primary);
  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;
}

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

/*   Footer   */
.site-footer {
  --logo-color: currentColor;
  position: relative;
  text-align: center;
  background-color: var(--logo-brown);
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -5px; /* כדי שלא יישאר רווח לבן קטן */
}

.footer-wave img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 60/10;
}
.footer-wave img:hover {
  opacity: 1;
}

.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;
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

a {
  transition: font-size 1s liner, opacity 1s liner;
  transform-origin: center;
}

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

.copyright {
  color: var(--light-color);
  position: absolute;
  bottom: 0;
  margin: auto;
  width: 100%;
  font-size: var(--fs-400);
}

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.8;
}

.fa-linkedin:hover {
  color: #0a66c2;
}

.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;
}

.sticky-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transform: translateY(100%);
  display: none;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.5rem;
  margin-bottom: 6rem;
  font-weight: bold;
  cursor: pointer;
}

.sticky-contact.active {
  display: grid;
}

.sticky-contact .sticky-contact-tel,
.sticky-contact .sticky-contact-form {
  background-color: var(--secondary);
  color: var(--light-color);
  min-height: 3rem;
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  border-radius: 100svh 100svh 0svh 100svh;
  padding: 0 0.5rem;
  margin: 0 0.2rem;
}

.sticky-contact .sticky-contact-form {
  background-color: var(--primary);
  color: black;
  border-radius: 100svh 100svh 100svh 0svh;
  grid-template-columns: 4fr 1fr;
}

/*  Header  */
header {
  position: relative;
  min-height: 10svh;
}
header .page-header-content {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 100;
  position: fixed;
  background: var(--background);
  max-height: 5rem;
}
header .nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 90svh;
  font-weight: var(--fw-500);
  font-size: var(--fs-500);
  color: var(--dark-color);
}
header .logo {
  max-width: 9rem;
  max-height: 5rem;
  width: 9rem;
  height: min-content;
  z-index: 100;
  position: relative;
}
header .logo:focus-visible .sun,
header .logo:hover .sun {
  fill: var(--logo-orange);
  transform: scale(1.2) translateY(300px) translateX(0px); /* הגדלה + הרמה למעלה */
  transform-origin: 4703px 2410px;
  transition: transform 0.4s ease, fill 0.4s ease;
}
header .nav-list a:focus-visible,
header .nav-list a:hover {
  font-weight: var(--fw-500);
}
header nav:has(.nav-item:hover) .nav-item:not(:hover),
header nav:has(.nav-item:hover) .nav-item.active {
  opacity: 0.5;
  color: var(--gray);
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

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

.whatsapp {
  max-width: 3rem;
}

/* form */
:root {
  --outline-color-invalid: var(--secondary);
  --outline-color-valid: var(--primary);
  --border-radius: 1rem;
}

#form-anchor {
  position: relative;
  top: -5svh;
  height: 0;
}

form {
  max-width: 100dvw;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  border-radius: var(--border-radius);
  border: 2px solid var(--logo-orange);
  margin: 1rem;
  padding: 1rem;
  min-height: max-content;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
form h2 {
  line-height: 1.5;
}

.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-bottom: 0.5rem;
  color: var(--dark-color);
  background-color: var(--logo-orange);
  transition: color 600ms ease, font-size 600ms ease, background-color 600ms ease, max-height 600ms ease;
}

button[type=submit]:hover,
button[type=submit]:focus-visible {
  background-color: var(--logo-brown);
  color: var(--light-color);
}

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-visible,
form input:focus-visible {
  border: 0.2rem solid currentColor;
  outline: none;
}

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

form:invalid {
  border-radius: var(--border-radius);
}

.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 .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;
}
.text-fields .file-form {
  grid-area: file;
}
.text-fields .submit {
  grid-area: submit;
}
.text-fields input {
  border-radius: var(--border-radius);
}

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

.success {
  display: flex;
  flex-direction: column;
  background-color: var(--secondary);
  align-items: center;
  max-height: 100svw;
  text-align: center;
  min-height: 100svw;
  justify-content: start;
}

#form-anchor {
  position: relative;
  top: -150px; /* או לפי גובה התפריט שלך */
  height: 0;
}

.contact-us {
  grid-area: contact-us;
  color: currentColor;
  margin: 1rem;
  justify-content: start;
  text-align: start;
  padding: 1rem;
}
.contact-us span {
  display: inline-flex;
  margin: 1rem;
}
.contact-us li {
  border-bottom: 1px solid var(--primary);
  margin-bottom: 0.5rem;
}
.contact-us li i {
  padding-left: 1rem;
}

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

.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-top: 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-answer p {
  width: 100%;
  text-align: start;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: clamp(var(--fs-300), 7vw, var(--fs-500));
}
.faq-answer ul {
  display: grid;
  gap: var(--gap);
}
.faq-answer ul li {
  text-align: start;
}

.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 {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-areas: "about-title" "wrapper-img-about" "wrapper-text-about" "about-advantages";
  justify-items: center;
  gap: 2rem;
  border-radius: var(--border-radius);
}
.about .about-title {
  grid-area: about-title;
  text-align: center;
}
.about .wrapper-img-about {
  grid-area: wrapper-img-about;
  width: 100%;
  max-width: 400px;
}
.about .wrapper-img-about img {
  object-position: right center;
}
.about .wrapper-text-about {
  grid-area: wrapper-text-about;
}
.about .wrapper-text-about p {
  margin-inline: auto;
  text-align: right;
}
.about .about-advantages {
  grid-area: about-advantages;
}
.about .about-advantages .advantages-list {
  line-height: 2;
}
.about .about-advantages .advantages-list li {
  max-width: 80%;
}
.about .about-advantages .advantages-list li::marker {
  content: "✔  ";
  color: var(--blue);
  font-size: 1.5rem;
}
.about .about-advantages .advantages-list li .advantage-heading {
  font-weight: bold;
}

.instructor-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content;
  grid-template-areas: "photo" "name" "bio" "note" "button";
  gap: var(--gap);
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--light-color);
  border-radius: var(--border-radius);
  background-color: var(--light-green2);
  color: var(--dark-color);
  margin-bottom: 2rem;
  justify-items: center;
  max-width: 90svw;
  text-align: center;
}

.instructor-card h3 {
  grid-area: name;
  text-align: center;
}

.instructor-card img {
  grid-area: photo;
  max-width: 150px;
  width: 150px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.instructor-card .bio {
  grid-area: bio;
  margin: 0;
  inline-size: 90%;
}

.instructor-card a {
  grid-area: button;
  align-self: start;
}

.guest-note {
  grid-area: note;
  font-size: var(--fs-300);
  color: var(--grey);
  inline-size: 90%;
}

.instructor-profile {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "header social" "bio bio" "experience experience" "courses courses";
  margin: 0 auto;
  padding: 2rem;
  align-items: center;
  justify-items: center;
  align-items: start;
  gap: var(--gap);
}

.instructor-social {
  grid-area: social;
  text-align: center;
  display: grid;
  grid-template-columns: subgrid;
  gap: 0.5rem;
  justify-items: end;
}
.instructor-social .social {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 0;
  margin-right: 1rem;
  height: 100%;
  justify-content: space-between;
}

.instructor-header {
  grid-area: header;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  justify-content: center;
}

.instructor-bio {
  grid-area: bio;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.instructor-experience {
  grid-area: experience;
}

.instructor-courses {
  grid-area: courses;
}

.instructor-experience,
.instructor-courses {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  color: var(--dark-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 1rem;
  align-items: start;
}

.feedback {
  text-align: center;
  padding: 1rem;
  background-color: var(--blue);
  color: var(--dark-color);
  margin: 2rem 0;
  border-radius: var(--border-radius);
  background-image: url("/assets/image/img/layered-peaks-haikei.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.feedback-card {
  display: flex;
  gap: var(--gap);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  min-width: 80svw;
  height: fit-content;
  justify-items: center;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15); /* לבן שקוף */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* לספארי */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  color: var(--dark-color);
}

.feedback-summary {
  font-size: inherit;
  list-style: none;
  cursor: pointer;
  position: relative;
  width: fit-content;
  margin: 1rem auto;
  background-color: var(--dark-brown);
  color: white;
  min-width: 70%;
}
.feedback-summary::-webkit-details-marker {
  display: none;
}
.feedback-summary::before {
  content: "הצג ביקורת מלאה";
}
.feedback-content[open] .feedback-summary::before {
  content: "הסתר ביקורת";
}
.feedback-summary:hover {
  background-color: var(--blue);
  color: black;
  font-weight: 700;
}

.close-feedback {
  display: flex;
  width: 1ch;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  min-width: 1ch;
  max-width: 1ch;
  margin: 0;
  padding: 0;
}
.close-feedback:hover {
  transform: rotate(360deg);
}

.feedback-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.feedback-name {
  font-weight: bold;
  margin: 1rem auto;
  font-size: inherit;
}

.feedback-date {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.feedback-rating {
  min-height: 5rem;
}

.feedback-text {
  font-size: var(--fs-500);
  padding: 2rem 0;
  font-weight: 500;
}

.lodging {
  display: grid;
  grid-template-areas: "lodging-title" "wrapper-lodging-main-image" "lodging-description" "lodging-type" "lodging-gallery";
  gap: var(--gap);
}

.wrapper-lodging-main-image {
  display: grid;
}

.lodging-title {
  grid-area: lodging-title;
}

.lodging-main-image {
  width: 100%;
  height: 100%;
}

.wrapper-lodging-main-image {
  grid-area: wrapper-lodging-main-image;
}

.lodging .lodging-description {
  grid-area: lodging-description;
}

.lodging-type {
  grid-area: lodging-type;
}

.lodging-gallery {
  grid-area: lodging-gallery;
}

/*  blog  */
.posts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.last-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
}

.blog-list {
  display: grid;
  gap: 2rem;
  min-height: 100svh;
  grid-auto-rows: auto 1fr;
}

.post-card {
  display: grid;
  grid-template-areas: "post-card-img" "post-card-title" "post-card-description" "post-card-button";
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: center;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

.post-card-img {
  grid-area: post-card-img;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-card-title {
  grid-area: post-card-title;
  margin: 0;
  text-align: center;
  max-width: 25ch;
  text-wrap: balance;
}

.post-card-description {
  grid-area: post-card-description;
}

.post-card-button {
  grid-area: post-card-button;
  justify-self: start;
}

.post {
  display: grid;
  justify-content: center;
  justify-items: center;
  grid-template-areas: "post-main-image" "post-title" "post-description" "post-content" "post-external-link" "post-summary" "post-gallery";
  gap: 1.5rem;
}

.post-main-image {
  grid-area: post-main-image;
}
.post-main-image img {
  object-position: center top;
  object-fit: cover;
  max-width: 100%;
  max-height: 30svh;
}

.post-title {
  grid-area: post-title;
  margin: 0;
  text-align: center;
  text-wrap: balance;
  line-height: 1.5;
}

.post-description {
  grid-area: post-description;
  max-width: 65ch;
  margin: auto;
  text-wrap: auto;
}

.post-content {
  grid-area: post-content;
  max-width: 65ch;
}
.post-content ol {
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: center;
}
.post-content ol li {
  counter-increment: step;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  overflow: hidden;
  text-wrap: balance;
  padding: 1rem 4.1rem 1rem 0;
  z-index: 1;
}
.post-content ol li::before {
  content: counter(step) " |";
  position: absolute;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--primary);
  top: 50%;
  right: 0.1em;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.post-summary {
  grid-area: post-summary;
}
.post-summary p {
  margin: auto;
  text-wrap: auto;
}
.post-summary h2 {
  padding: 0.5rem 1rem;
}
.post-summary .line-with-dot {
  position: relative;
  bottom: 0;
  max-width: 80%;
  height: 2px;
  background-color: var(--logo-orange);
  margin: 2rem auto;
}
.post-summary .line-with-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--logo-orange);
  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%;
}

.post-external-link-wrapper {
  grid-area: post-external-link;
}

.post-gallery {
  grid-area: post-gallery;
}
.post-gallery img {
  max-height: 40svh;
  min-width: 80svw;
  object-fit: cover;
}

.services-list h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.services {
  display: grid;
  gap: 2rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "service-card-image" "service-card-title" "service-card-button";
  gap: 1rem;
  border-radius: 0.5rem;
  justify-items: center;
  border: 2px solid var(--primary);
  padding: 1rem;
}

.service-card-image-wrapper {
  display: grid;
  grid-area: service-card-image;
}

.service-card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  outline-offset: -0.4rem;
}

.service-card-title {
  grid-area: service-card-title;
  margin: 0;
  white-space: nowrap;
  font-size: var(--fs-500);
}

.service-card-button {
  grid-area: service-card-button;
  justify-self: start;
}

.service {
  display: grid;
  grid-template-areas: "service-main-image" "service-title" "service-description" "service-content" "service-price" "service-external-link" "service-contact" "service-gallery" "service-back";
  gap: 1.5rem;
}

.service-main-image-wrapper {
  grid-area: service-main-image;
}

.service-main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-title {
  grid-area: service-title;
  margin: 0;
  text-align: center;
}

.service-description {
  grid-area: service-description;
}

.service-content {
  grid-area: service-content;
}

.service-price {
  grid-area: service-price;
}

.service-external-link-wrapper {
  grid-area: service-external-link;
}

.service-contact {
  grid-area: service-contact;
}

.service-back {
  grid-area: service-back;
}

.service-gallery {
  grid-area: service-gallery;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 2rem;
  margin-block: 2rem;
  min-height: 50svh;
  justify-items: center;
}
.gallery-list .gallery-card {
  width: fit-content;
  border: 1px solid inherit;
  border-radius: var(--border-radius);
  overflow: hidden;
  color: black;
  transition: transform 0.3s ease;
}
.gallery-list .gallery-card:hover {
  transform: scale(1.02);
}
.gallery-list .gallery-card:nth-child(3n+1) {
  background: var(--background-1);
}
.gallery-list .gallery-card:nth-child(3n+2) {
  background: var(--background-2);
}
.gallery-list .gallery-card:nth-child(3n) {
  background: var(--background-3);
}
.gallery-list .gallery-card:nth-child(4n) {
  background: var(--background-4);
}
.gallery-list .gallery-card .gallery-card-a {
  display: flex;
}
.gallery-list .gallery-card .gallery-card-a h2 {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
}
.gallery-list .gallery-card .gallery-card-a img {
  max-width: 80svw;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.gallery-page {
  display: grid;
  justify-items: center;
  gap: var(--gap);
  min-height: 80svh;
}

.client-page h1,
.client-page h2 {
  text-align: center;
}

.client-header {
  grid-area: client-header;
  display: grid;
  align-content: space-evenly;
  min-block-size: 20vh;
  gap: 1rem;
}

.client-featured-image {
  grid-area: client-featured-image;
}
.client-featured-image img {
  aspect-ratio: 1;
  width: 100%;
  margin-bottom: 2rem;
  min-height: 30vh;
}

.client-why-us {
  grid-area: client-why-us;
}

.client-services {
  grid-area: client-services;
}

.feedback {
  grid-area: client-feedback;
}

.client-logos {
  grid-area: client-logos;
}

.client-gallery {
  grid-area: client-gallery;
  min-height: 300px;
}

.client-extra {
  grid-area: client-extra;
  inline-size: 80%;
}

.client-why-us {
  text-align: center;
}
.client-why-us .why-us-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
}
.client-why-us .why-us-item {
  background-color: var(--neutral);
  color: black;
  height: auto;
  width: 40svw;
  padding: 1.5rem 0;
  max-width: 40svw;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s ease;
}
.client-why-us .why-us-item:hover {
  transform: translateY(-4px);
}
.client-why-us .why-us-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.client-why-us .why-us-item p {
  margin: 0;
}

.success {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  color: white;
}

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

/*  Homepage   */
.homepage-grid h1 {
  text-align: start;
  width: 100%;
  align-content: center;
  margin-bottom: 1rem;
}
.homepage-grid h1 span {
  font-size: var(--fs-600);
  color: var(--logo-orange);
  font-weight: var(--fw-700);
}

.homepage-hero-grid {
  grid-area: homepage-hero-grid;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "hero-video" "hero-content" "hero-buttons";
  align-items: end;
}

.hero-video {
  grid-area: hero-video;
}

.hero-content {
  grid-area: hero-content;
  display: grid;
  padding: 0;
  justify-content: center;
  align-content: space-between;
  justify-content: center;
  align-content: flex-start;
  height: auto;
  margin-inline: auto;
  width: 90%;
}

.hero-buttons {
  grid-area: hero-buttons;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 8/7;
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: transparent;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.video {
  padding: 0;
}

.home-gallery {
  grid-area: home-gallery;
}

.feedback-section {
  grid-area: feedback;
}

.faq-section {
  grid-area: faq;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.slide {
  opacity: 0;
  transition: opacity 1s linear;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
}

.slide.fade-in {
  opacity: 1;
  z-index: 1;
}

.slide.fade-out {
  opacity: 0;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-image {
  max-width: 95svw;
  margin: auto;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.slide-text {
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  background-color: rgba(46, 44, 44, 0.32);
  color: #fff;
  max-width: 95svw;
  margin: auto;
  border-radius: var(--border-radius);
  height: fit-content;
  width: auto;
  display: flex;
  justify-content: center;
  isolation: isolate;
  mask: linear-gradient(to bottom, #000 80%, transparent);
  -webkit-mask: linear-gradient(to bottom, #000 80%, transparent);
  min-height: 5%;
}
.slide-text h2 {
  font-size: clamp(var(--fs-400), 5vw, var(--fs-500));
}

/*   רשימת לוגו לקוחות  */
.logo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 2rem 0;
}
.logo-list .logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  max-height: 80px;
}
.logo-list .logo-item img {
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

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

/*   gallery  */
.gallery {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--gap);
  grid-auto-flow: dense; /* עוזר לסדר את הרווחים */
  padding: 1rem;
}

.gallery-item {
  position: relative;
  width: auto;
  height: auto;
}

.gallery-item-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-size: 1.5rem;
  font-family: var(--ff-heading);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
}

.gallery-image {
  position: relative;
  min-width: 80svw;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

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

/* כל תמונה חמישית תהיה רחבה */
.gallery-item:nth-child(5n) {
  grid-column: span 2;
}

/* כל תמונה שלישית תהיה גבוהה */
.gallery-item:nth-child(3n) {
  grid-row: span 2;
}

/* כל תמונה שביעית תהיה גם רחבה וגם גבוהה */
.gallery-item:nth-child(7n) {
  grid-column: span 2;
  grid-row: span 2;
}

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

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  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 {
  max-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 .flex-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row;
}
.cookie-consent .btn-accept {
  background-color: var(--secondary);
  color: white;
  border-color: inherit;
}
.cookie-consent .btn-accept:hover,
.cookie-consent .btn-accept:focus-visible {
  background-color: var(--blue);
  color: var(--dark-color);
  font-weight: 700;
}
.cookie-consent .btn-reject {
  background-color: var(--primary);
  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);
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --foreground: white;
    --background: black;
  }
  html {
    color: var(--light-color);
    background-color: var(--dark-color);
  }
  .cookie-consent p {
    color: var(--dark-color);
  }
  .site-footer {
    color: var(--dark-color);
  }
  .modal-message {
    color: var(--dark-color);
  }
  .form-section {
    background-color: #151514;
  }
}
/* מחשב + מצב מוחשך */
@media (prefers-color-scheme: dark) and (min-width: 769px) {
  .signup-wrapper p {
    color: var(--foreground);
  }
}
@media (min-width: 45em) {
  #whatsapp-link {
    left: 1%;
    top: 12svh;
  }
  header .nav-list {
    flex-direction: row;
    min-height: 100%;
    font-size: var(--fs-300);
    color: currentColor;
  }
  header .page-header-content {
    justify-content: flex-end;
  }
  header .logo {
    padding: 1rem 0 1rem 2rem;
  }
  .hamburger-menu {
    opacity: 0;
    width: 0;
  }
  .sidebar {
    padding: 1.5em;
    translate: 0;
    width: auto;
    min-height: max-content;
    background-color: inherit;
  }
  .nav-item a {
    color: black;
  }
  .slide-text {
    justify-content: flex-start;
    padding-right: 1rem;
  }
  .homepage-grid h1 {
    text-align: center;
    align-content: center;
  }
  .homepage-grid .homepage-hero-grid {
    grid-template-columns: 60% 1fr;
    grid-template-areas: "hero-content  hero-video" "hero-buttons  hero-video";
    column-gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
  }
  .homepage-grid .hero-content {
    margin: 0;
    gap: 1rem;
    justify-content: center;
    align-content: space-evenly;
    text-align: center;
    width: 100%;
  }
  .homepage-grid .hero-video {
    height: 100%;
    align-content: center;
  }
  .gallery-item-caption {
    opacity: 0;
    font-size: 3rem;
  }
  .gallery-item:hover .gallery-item-caption {
    opacity: 1;
  }
  .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 {
    width: auto;
    object-fit: cover;
    transition: scale 1s linear;
  }
  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;
  }
  /* client-page */
  .client-page {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    grid-template-areas: " client-header client-featured-image  " " client-header client-featured-image  " "  client-why-us client-why-us" " client-logos client-logos" " client-services client-services" " client-feedback client-feedback" " faq faq" " client-gallery client-gallery" " client-extra client-extra ";
  }
  .client-why-us .why-us-item {
    max-width: 20svw;
    justify-content: space-around;
    aspect-ratio: 1;
  }
  /* form */
  .form-section {
    min-width: 50svw;
    width: fit-content;
    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: 2rem;
  }
  .btn--primary {
    min-width: 10svw;
  }
  /* צור קשר */
  .contact {
    flex-direction: row-reverse;
    min-height: 50svh;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    margin-bottom: 0;
    padding: 0;
  }
  /* גלרייה  */
  .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);
  }
  .gallery-page-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  .gallery-page-gallery > div {
    overflow: hidden;
    position: relative;
  }
  .gallery-page-gallery > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 32svw;
    max-width: 20svw;
    aspect-ratio: 3/2;
    object-position: center top;
    border-radius: 0;
  }
  .gallery-page-gallery > div:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(4) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(5) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(6) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(7) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(8) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(9) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(10) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(11) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(12) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(13) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(14) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(15) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(16) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(17) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(18) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(19) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(20) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(21) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(22) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(23) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(24) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(25) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(26) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(27) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(28) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(29) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(30) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(31) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(32) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(33) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(34) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(35) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(36) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(37) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(38) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(39) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(40) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(41) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(42) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(43) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(44) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(45) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(46) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(47) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(48) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(49) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(50) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(51) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(52) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(53) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(54) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(55) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(56) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(57) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(58) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(59) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(60) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(61) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(62) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(63) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(64) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(65) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(66) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(67) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(68) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(69) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(70) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(71) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(72) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(73) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(74) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(75) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(76) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(77) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(78) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(79) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(80) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(81) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(82) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(83) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(84) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(85) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(86) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(87) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(88) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(89) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(90) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(91) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(92) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(93) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(94) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(95) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(96) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(97) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(98) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(99) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(100) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(101) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(102) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(103) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(104) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(105) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(106) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(107) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(108) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(109) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(110) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(111) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(112) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(113) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(114) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(115) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(116) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(117) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(118) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(119) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(120) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(121) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(122) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(123) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(124) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(125) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(126) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(127) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(128) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(129) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(130) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(131) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(132) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(133) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(134) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(135) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(136) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(137) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(138) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(139) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(140) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(141) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(142) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(143) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(144) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(145) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(146) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(147) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(148) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(149) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(150) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(151) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(152) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(153) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(154) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(155) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(156) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(157) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(158) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(159) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(160) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(161) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(162) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(163) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(164) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(165) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(166) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(167) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(168) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(169) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(170) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(171) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(172) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(173) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(174) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(175) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(176) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(177) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(178) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(179) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(180) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(181) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(182) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(183) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(184) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(185) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(186) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(187) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(188) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(189) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(190) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(191) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(192) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(193) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(194) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(195) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(196) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .gallery-page-gallery > div:nth-child(197) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(198) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(199) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-page-gallery > div:nth-child(200) {
    grid-column: span 3;
    grid-row: span 1;
  }
  .tags-list .btn-tag {
    min-width: 10ch;
  }
  .tags-list {
    grid-template: auto/auto auto auto auto;
  }
  .about {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "about-title wrapper-img-about" "wrapper-text-about wrapper-img-about" "about-advantages  about-advantages";
    margin-bottom: 3rem;
  }
  .feedback .scroll-x {
    flex-wrap: wrap;
    row-gap: var(--gap);
    justify-content: center;
  }
  .feedback-card {
    min-width: 20svw;
    max-width: 20svw;
  }
  .image-title-description {
    display: grid;
    grid-auto-columns: 2fr 1fr;
    gap: 2rem;
    grid-template-areas: "retreat-text image";
    align-items: center;
  }
  .post-card {
    display: grid;
    grid-template-areas: "post-card-img post-card-title" "post-card-img post-card-description" "post-card-img post-card-button";
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    justify-items: center;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
  }
  .post-card-img {
    max-height: 20svw;
    min-height: 20svh;
    max-width: 20svw;
    aspect-ratio: 1;
  }
  .content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-bottom: 5rem;
    line-height: 2;
    justify-items: center;
  }
  .content-block p {
    direction: rtl;
  }
  .content-block .block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius, 0);
  }
  /* בלוקים אי-זוגיים: טקסט משמאל, תמונה מימין */
  .content-block:nth-child(odd) {
    direction: rtl;
  }
  /* בלוקים זוגיים: תמונה משמאל, טקסט מימין */
  .content-block:nth-child(even) {
    direction: ltr;
  }
  .service {
    grid-template-areas: "service-title service-main-image" "service-description service-main-image" "service-content service-main-image" "service-price service-main-image" "service-external-link service-main-image" "service-contact service-contact" "service-gallery service-gallery" "service-back service-back";
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .gallery-list .gallery-card .gallery-card-a img {
    max-width: 25svw;
  }
  .services {
    grid-auto-flow: column;
    justify-content: center;
  }
  .service-contact {
    justify-self: flex-start;
  }
  .service-card {
    grid-template-columns: 1fr;
    grid-template-areas: "service-card-image" "service-card-title" "service-card-button ";
    grid-template-columns: 20svw;
    padding: 2rem;
    font-size: var(--fs-300);
  }
  .service-card img {
    max-width: 20svw;
    height: auto;
    width: 100%;
    aspect-ratio: 1;
  }
  .footer-wave img {
    aspect-ratio: 100/20;
  }
  .sticky-contact {
    visibility: hidden;
  }
  .site-footer {
    padding-bottom: 3rem;
  }
  .acacia-deco {
    bottom: 70%;
    max-width: 40svw;
  }
}
@media (min-width: 35em) {
  :root {
    --fs-300: 1rem;
    --fs-400: 1.125rem;
    --fs-500: 1.5rem;
    --fs-600: 2.25rem;
    --fs-700: 3rem;
  }
}
