@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #414042;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dvora-container {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .dvora-container {
    width: 90%;
  }
}

.flex {
  display: flex;
}
.flex.flex-center {
  align-items: center;
  justify-content: center;
}
.flex.flex-between {
  align-items: center;
  justify-content: space-between;
}
.flex.flex-start {
  align-items: flex-start;
}
.flex.flex-end {
  align-items: flex-end;
}
.flex.flex-column {
  flex-direction: column;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #414042;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.arrow-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.arrow-link:hover {
  color: #ffc600;
}
.arrow-link:hover::after {
  transform: translateX(4px);
}
.arrow-link.arrow-link--light {
  color: #fff;
}
.arrow-link.arrow-link--light:hover {
  color: #ffc600;
}
.arrow-link.arrow-link--accent {
  color: #ffc600;
}
.arrow-link.arrow-link--accent:hover {
  color: #f0bd0c;
}

.pull-quote {
  position: relative;
  padding: 40px 0;
  margin: 40px 0;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 120px;
  font-weight: 700;
  color: #ffc600;
  line-height: 1;
  opacity: 0.3;
}
.pull-quote .pull-quote__text {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  color: #414042;
  font-style: italic;
  padding-left: 60px;
}
@media (max-width: 800px) {
  .pull-quote .pull-quote__text {
    font-size: 20px;
    padding-left: 40px;
  }
}
.pull-quote .pull-quote__attribution {
  margin-top: 20px;
  padding-left: 60px;
  font-size: 14px;
  font-weight: 600;
  color: #9e9e9e;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 800px) {
  .pull-quote .pull-quote__attribution {
    padding-left: 40px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(65, 64, 66, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}

.announcement-bar {
  background-color: #414042;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}
.announcement-bar p {
  margin: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}
@media (min-width: 800px) {
  .header-inner {
    padding: 20px 0;
  }
}

.logo {
  z-index: 2;
}
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo a img {
  height: auto;
  max-height: 50px;
  width: auto;
}
@media (min-width: 800px) {
  .logo a img {
    max-height: 60px;
  }
}
.logo .custom-logo-link {
  display: flex;
}

.main-nav.desktop,
.header-actions.desktop {
  display: none;
}
@media (min-width: 800px) {
  .main-nav.desktop,
  .header-actions.desktop {
    display: flex;
  }
}

.main-nav.desktop {
  align-items: center;
  gap: 25px;
}
.main-nav.desktop a,
.main-nav.desktop button {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  text-decoration: none;
  color: #414042;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.main-nav.desktop a:hover,
.main-nav.desktop button:hover {
  -webkit-text-stroke: 1px #414042;
  text-stroke: 1px #414042;
}

.primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}
.primary-menu li {
  margin: 0;
}
.primary-menu a {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  text-decoration: none;
  color: #414042;
  font-weight: 400;
  transition: all 0.2s ease;
}
.primary-menu a:hover {
  -webkit-text-stroke: 1px #414042;
  text-stroke: 1px #414042;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown.is-open .nav-dropdown-toggle .material-icons {
  transform: rotate(180deg);
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  color: #414042;
  font-weight: 400;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 0.2s ease;
}
.nav-dropdown-toggle .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.nav-dropdown-toggle:hover {
  -webkit-text-stroke: 1px #414042;
  text-stroke: 1px #414042;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: #ffffff;
  min-width: 200px;
  padding: 15px 0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 13px;
  color: #414042;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.nav-dropdown-menu a:hover {
  background-color: #f5f5f5;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-contact,
.btn-contact-mobile {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  color: #414042;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #414042;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-weight: 500;
}
.btn-contact:hover,
.btn-contact-mobile:hover {
  background-color: #414042;
  color: #ffffff;
}

.btn-signup,
.btn-signup-mobile {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  color: #ffffff;
  background-color: #ffc600;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.btn-signup:hover,
.btn-signup-mobile:hover {
  background-color: #f0bd0c;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #414042;
  z-index: 2;
}
@media (min-width: 800px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle .material-icons {
  font-size: 28px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding-top: 80px;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
@media (min-width: 800px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav-inner {
  padding: 30px 20px;
}

.mobile-nav-section {
  margin-bottom: 20px;
}

.mobile-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(65, 64, 66, 0.1);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  color: #414042;
  font-weight: 500;
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: left;
}
.mobile-nav-dropdown-toggle .material-icons {
  transition: transform 0.3s ease;
}
.mobile-nav-dropdown-toggle[aria-expanded=true] .material-icons {
  transform: rotate(180deg);
}

.mobile-nav-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-dropdown.is-open {
  max-height: 1000px;
}
.mobile-nav-dropdown a {
  display: block;
  padding: 12px 0 12px 20px;
  color: #414042;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}
.mobile-nav-dropdown a:hover {
  color: #ffc600;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-list li {
  margin: 0;
  border-bottom: 1px solid rgba(65, 64, 66, 0.1);
}
.mobile-menu-list a {
  display: block;
  padding: 15px 0;
  color: #414042;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.mobile-menu-list a:hover {
  color: #ffc600;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(65, 64, 66, 0.1);
}

body.stop-scroll {
  overflow: hidden;
  height: 100vh;
}

/*# sourceMappingURL=main.css.map */
