@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded/Unbounded-Light.woff2") format("woff2"),
       url("../fonts/Unbounded/Unbounded-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded/Unbounded-Bold.woff2") format("woff2"),
       url("../fonts/Unbounded/Unbounded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --site-padding: 4rem;
  --color-black: #000;
  --color-white: #F6EBDF;
  --color-text: #4D2914;
  --color-background: #F6EBDF;
  --color-mobile-menu-background: #7A7926;
  --font-family-sans: "Unbounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;

  --font-size: 20px;
  --letter-spacing: 0.05em;
  --header-bar-height: 3.5rem;
  --header-logo-width: 20rem;
  --header-logo-max-width: 20rem;


}

/* media for 768 */
@media screen and (max-width: 1500px) {
  :root {
    --site-padding: 2rem;
    --header-logo-width: 25%;
  }

}

@media screen and (max-width: 820px) {
  :root {
    --site-padding: 0.75rem;
    --header-logo-width: 75%;
    --font-size: 18px;
  }
}

html {
  font-family: var(--font-family-sans);
  font-size: var(--font-size);
  line-height: 1.5em;
  letter-spacing: var(--letter-spacing);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

::selection {
  color: var(--page-background, #EC9A0F);
  background:var(--page-text, var(--color-text));
}
img {
  width: 100%;
}
body {
  margin: 0;
  color: var(--page-text, var(--color-text));
  background: var(--page-background, var(--color-background));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  word-break: break-word;
  hyphens: auto;
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

.site-shell {
  padding: var(--site-padding);

  transition: padding .3s ease-in-out;
}

.site-shell--main {
  flex: 1 0 auto;

}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}


button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}



.header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-height: var(--header-bar-height, 3.5rem);
  margin-bottom: 4rem;
  position: relative;
  word-break: keep-all;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1 1 0;
}
.menu a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  left: -0.35em;
  right: -0.35em;
  top: 50%;
  height: 3px;
  background: var(--menu-strike-color, currentColor);
  transform: translateY(-50%) scaleX(1);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
}
.menu a:hover::after,
.menu a:focus-visible::after {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}
.menu a[aria-current] {
  text-decoration: none;
}

.site-header__menu {
  justify-content: flex-start;
}

.site-header__logo {
  flex: 0 0 auto;
  justify-content: center;
  position: fixed;
  top: var(--site-padding);
  min-height: var(--header-bar-height, 3.5rem);
  width: var(--header-logo-width, 20rem);
  max-width: var(--header-logo-max-width, 20rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  transition: all .3s ease-in-out;
}

.multiply{
  mix-blend-mode: multiply;
}

.site-header__logo-mark {
  width: 100%;
  aspect-ratio: 2184 / 387;
  display: inline-block;
  background-color: var(--page-logo, currentColor);
  -webkit-mask: url("../images/Logo_YveAlon.svg") center/contain no-repeat;
  mask: url("../images/Logo_YveAlon.svg") center/contain no-repeat;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 820px) {



  .site-header__logo{
    justify-content: flex-start;
    left: var(--site-padding);
    transform: none;

  }
}

.site-header__claim {
  flex: 0 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  white-space: nowrap;
  margin: 0;
}

.site-header-outer {
  background: var(--site-header-background, var(--page-background, var(--color-background)));
}

.site-header__hero {

}

.site-header__hero img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1400px) {
  .site-header__claim {
    width: 12ch;
    text-wrap: auto;
    flex: 0 1 12ch;
  }
}

.site-header__menu-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: right;
  padding: 0;
  z-index: 35;
  width: 100px;
  height: 100px;
}

.site-header__mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
  color: var(--page-text, var(--color-white));
  background: var(--page-mobile-menu, var(--color-mobile-menu-background));
  padding: calc(var(--site-padding) + var(--header-bar-height, 3.5rem) + 0.5rem) var(--site-padding) var(--site-padding) var(--site-padding);
  z-index: 25;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.site-header__mobile-claim {
  max-width: 12ch;
  margin-bottom: 5rem;
  line-height: 1.2rem;
  color: currentColor;
}

.site-header__mobile-menu {
  display: grid;
  gap: 1rem;
}

.site-header__mobile-menu .site-header__menu-item {
  display: block;

}

.site-header.is-menu-open .site-header__mobile-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

.site-header__menu .site-header__menu-item {
  display: none;
}

.site-header__menu .site-header__menu-item:first-child {
  display: inline-flex;
}

.site-header__menu .site-header__menu-item:nth-child(2) {
  display: inline-flex;
}

@media screen and (min-width: 1400px) {
  .site-header__menu .site-header__menu-item:nth-child(-n+3) {
    display: inline-flex;
  }


}

@media screen and (max-width: 820px) {
  .site-header {
    position: static;
  }

  .site-header__menu,
  .site-header__claim {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
    margin-left: auto;
    position: fixed;
    right: var(--site-padding);
    z-index: 45;
  }


  .main {

  }
}

.grid {
  --columns: 12;
  --gutter: var(--site-padding);
  display: grid;
  grid-gap: var(--site-padding);
  grid-template-columns: 1fr;
}


.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

@media screen and (min-width: 60rem) {

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}


hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

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

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.video--native {
  padding-bottom: 0;
  background: transparent;
}
.video--native video {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  padding: var(--site-padding);
  line-height: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2rem;

}

.footer__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}



.footer__menu {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  flex: 0 0 auto;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .footer__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__menu{
    flex-direction: column;
    gap: 0.75rem;
  }
}

.footer__menu-item {
  display: inline-flex;
}
.footer__copyright {

}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-padding{
  margin-bottom: var(--site-padding);
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}




.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
