/*
Theme Name: Noga Theme
Text Domain: noga-theme
Author: Eliane Castelar
Version: 1.0.0
*/

/* .agenda-title {
  color: red !important;
} */

@font-face {
  font-family: "Mundo Sans Std";
  src:
    url("assets/fonts/mundo-sans-std-regular.woff2") format("woff2"),
    url("assets/fonts/mundo-sans-std-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mundo Sans Std Medium";
  src:
    url("assets/fonts/mundo-sans-std-medium.woff2") format("woff2"),
    url("assets/fonts/mundo-sans-std-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*,
body {
  box-sizing: border-box;
}

body {
  background-color: var(--wp--preset--color--black-01);
}

/* Hide scrollbar — Chrome, Edge, Safari */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar — Firefox */
body {
  scrollbar-width: none;
}

/* Hide scrollbar — IE / old Edge */
body {
  -ms-overflow-style: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.noga-body {
  font-family: var(--wp--preset--font-family--source-sans-3);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 130%;

  @media (max-width: 768px) {
    font-size: 16px;
    max-width: 100%;
  }
}

.noga-subtitle {
  font-family: var(--wp--preset--font-family--source-sans-3);
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 130%;
}
.noga-link {
  font-family: var(--wp--preset--font-family--source-sans-3);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
}
.noga-quote {
  font-family: var(--wp--preset--font-family--instrument-serif);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  line-height: 100%;
}
.noga-label {
  font-family: var(--wp--preset--font-family--instrument-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 100%;
}
.noga-label-small {
  font-family: var(--wp--preset--font-family--instrument-serif);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 100%;
}

.noga-button {
  background-color: var(--wp--preset--color--beige-01);
  color: var(--wp--preset--color--black-01);
  position: absolute;
  padding: 8px 24px;
  border-radius: 4px;
  border: 1px solid var(--wp--preset--color--black-01);
  z-index: 99;
}

@media (max-width: 393px) {
  h2 {
    font-size: 32px !important;
  }
}

.link-hover {
  position: relative;
}

.link-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  bottom: -1px;
  height: 0.5px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.link-hover:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  will-change: transform, opacity;
}

.reveal.is-visible {
  animation: blockReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes blockReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body {
  scroll-snap-type: y proximity;
}

.section-editorial {
  position: relative;
}

.section-card.is-stacking {
  @media (min-width: 767px) {
    scroll-snap-align: start;
    min-height: 100vh;
    position: sticky !important;
    top: 0;
  }
}

.noga-agenda {
  position: relative !important;
  min-height: auto;
  scroll-snap-align: none;
}

.noga-footer {
  scroll-snap-align: start;

  position: sticky !important;
  top: 0;
}
