/**
 * Theme Name: Leinot Farms
 */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.wrapper {
  display: block;
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

.content-home {
  display: block;
  position: absolute;
  top: 238px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 631px;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 780px) {
  .content-home {
    max-width: calc(100% - 100px);
    margin: 0 auto;
    top: 140px;
  }
  .content-home p {
    font-weight: 500;
  }
  .content-home.active {
    opacity: 0;
  }
}
.content-home p {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

p,
span,
a,
input,
button,
textarea,
td {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}

.footer {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  padding: 32px 48px;
  background-color: #F2EFE8;
  height: 150px;
}
@media (max-width: 780px) {
  .footer {
    padding: 24px;
    height: auto;
  }
}
.footer .footer-left {
  display: block;
  position: relative;
}
.footer .footer-left .footer-logo {
  display: block;
  position: relative;
  padding-top: 4px;
}
.footer .footer-left .footer-copy {
  display: block;
  position: absolute;
  bottom: 0;
}
.footer .footer-left .footer-copy span {
  font-size: 10px;
  color: #33312F;
  font-weight: 400;
  letter-spacing: 1px;
}
.footer .footer-right {
  display: grid;
  grid-template-columns: max-content max-content;
  place-content: baseline;
  justify-content: right;
  column-gap: 90px;
}
@media (max-width: 780px) {
  .footer .footer-right {
    grid-template-columns: 1fr;
    row-gap: 40px;
    width: auto;
  }
}
.footer .footer-right .contact {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20px 20px 20px;
  text-align: end;
}
.footer .footer-right .contact span, .footer .footer-right .contact a {
  font-size: 12px;
  color: #33312F;
  font-weight: 400;
}
.footer .footer-right .contact span {
  margin: 0;
  padding: 0;
  margin-bottom: 2px;
}
.footer .footer-right .contact a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}
.footer .footer-right .contact a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.header {
  display: block;
  position: relative;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid white;
  z-index: 1002;
}
.header .logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .logo img {
  min-width: 188px;
}
.header .contact-link {
  display: block;
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
}
@media (max-width: 780px) {
  .header .contact-link {
    display: none;
  }
}
.header .contact-link span {
  color: white;
  font-size: 14px;
}
.header .contact-link span:hover {
  cursor: pointer;
}

.dropdown {
  display: grid;
  width: 100%;
  height: auto;
  position: absolute;
  top: 128px;
  right: 48px;
  grid-template-columns: max-content max-content;
  column-gap: 90px;
  justify-content: end;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 780px) {
  .dropdown {
    grid-template-columns: 1fr;
    row-gap: 40px;
    right: 24px;
    width: auto;
  }
}
.dropdown.active {
  opacity: 1;
  pointer-events: all;
}
.dropdown .contact {
  display: grid;
  grid-template-columns: 1fr;
  text-align: end;
}
.dropdown .contact span, .dropdown .contact a {
  font-size: 14px;
  color: white;
  font-weight: 400;
}
.dropdown .contact span {
  margin: 0;
  padding: 0;
  margin-bottom: 2px;
}
.dropdown .contact a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}
.dropdown .contact a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: #D2D2D2;
  opacity: 0%;
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease-in-out;
}
.overlay.active {
  opacity: 50%;
}

.hamburger {
  position: absolute;
  display: none;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1000;
}
@media (max-width: 780px) {
  .hamburger {
    display: block;
  }
}

.hamburger .line {
  width: 24px;
  height: 2px;
  background-color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 3px 0px;
  transform-origin: center;
  will-change: transform;
}
.hamburger .line--white {
  background-color: white;
}

.line {
  display: block;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

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