/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #fff;
}

:root {
  --light-brown: #4a2c2b;
  --dark-brown: #3f2524;
  /* --gold: #df8d12; */
  --gold: #e88c36;
  --light-gold: #f98948;
  --white: #fff;
  --new-gold: #e88c36;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
}

.container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.button-style {
  background: var(--light-gold);
  padding: 10px;
  border-radius: 5px;
  color: var(--white);
  font-size: 1rem;
}

/**************
 Header 
***************/
header {
  width: 100%;
  height: 60vh;
}

header .hidden {
  display: none;
}


/* Banner */

header .banner {
  background-color: var(--dark-brown);
  width: 100%;
  padding: 5px 0;
}

header .banner .banner-links {
  display: flex;
  justify-content: flex-end;
  font-size: 0.9rem;
}

header .banner .banner-links li {
  padding: 0 5px;
}

header .banner ul li a .fa-solid {
  margin-right: 5px;
  color: var(--gold);
}

/* Nav */

header .nav {
  background-color: var(--light-brown);
  padding: 5px 0;
}

header .nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

header .nav .logo img {
  width: 300px;
}

header .nav .menu .mobile-menu {
  display: none;
}

header .nav .menu .menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .nav .menu .menu-list li a {
  padding: 0 15px;
  color: var(--white);
}

header .special-news-banner {
  text-align: center;
  background-color: var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 0;
}

/* .donate-btn {
    text-align: center;
    width: 100%;
} */

/* Hero */

header .hero {
    background-image: linear-gradient(
        rgba(52, 31, 30, 0.8),
        rgba(52, 31, 30, 0.6)
      ),
      url("../img/hero-img2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  width: 100%;
}

header .hero .hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 60%;
  padding: 20px;
  height: 40vh;
  margin: 0 auto;
  color: var(--white);
}


header .hero .hero-container .section-headers,
header .hero .hero-container .section-paragraph {
  color: #fff;
}

header .hero .hero-container .hero-logo .subtitle {
  font-family: "Parisienne", cursive;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 20px 0;
}

header .hero .hero-container .hero-logo img {
  width: 700px;
}

header .hero .hero-container .hero-text {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 3px;
  margin: 20px 0;
  font-size: 1.4rem;
}

header .hero .hero-container .major-tagline {
  margin-bottom: 40px;
}


.division-bar {
  height: 10px;
  background-color: var(--gold);
  width: 100%;
}

/**************
Sections
***************/
.main-section-style {
  text-align: center;
}

.main-section-style .section-headers .tilde {
  color: var(--gold);
}

.main-section-style .section-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 10px;
}

.main-section-style .section-mini-heading {
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 10px;
}

.main-section-style .section-paragraph {
  font-size: 0.9rem;
  color: #808080;
  margin-bottom: 25px;
}


.farm-text {
  background-color: var(--white);
  /* background-image: url("../img/veggies.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -675px -560px; */
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 60px;
  text-align: center;
  z-index: 2;
}

.farm-text .veggies-bckgrd {
  position: absolute;
  object-fit: contain;
  object-position: left bottom;
  z-index: 0;
  left: -65%;
  top: -120px;
}

.farm-text .flex-container {
  display: flex;
  justify-content: flex-end;
}

.farm-text .section-box {
  display: flex;
  flex-direction: column;
  width: 60%;
  position: relative;
  z-index: 2;
}

.farm-text .hunger-section {
  width: 100%;
}

.crop-section {
  width: 100%;
}

.crop-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 0;
  gap: 10px;
}

.crop-container .crop-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  margin-bottom: 20px;
}

.crop-container .crop-card img {
  margin-bottom: 10px;
  width: 30%;
}

.crop-container .crop-card h3 {
  font-weight: 500;
}

.crop-container .crop-card .crop-desc {
  color: #808080;
  font-size: .9rem;
}


.section-headers {
  font-family: "Parisienne", cursive;
  font-weight: 600;
  color: #000;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: 20px 0 5px;
}

.testimonial-section {
  position: relative;
  z-index: 5;
}

.testimonial-section a {
  color: var(--gold);
}

.testimonial-section .section-head {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.4;
  margin: 20px 0;
}

.testimonial-section .testimonial-card-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  flex-direction: row;
  gap: 20px;
}

.testimonial-section .testimonial-card {
  background: rgba(188, 188, 188, 0.5);
  padding: 40px;
  border-radius: 10px;
  margin: 20px 0;
  width: 30%;
}

.testimonial-section .testimonial-card .card-text {
  font-size: 0.9rem;
  color: #808080;
}

.testimonial-section .testimonial-card .sign-section {
  text-align: right;
  margin-top: 10px;
}

.testimonial-section .testimonial-card .signature {
  font-family: "Parisienne", cursive;
  font-weight: 500;
  font-size: 1.5rem;
  color: #000;
}

.testimonial-section .testimonial-card .signature .tilde {
  color: var(--gold);
  font-weight: 800;
}

.testimonial-section .testimonial-card .business-title {
  font-weight: 400;
  font-size: 0.9rem;
  color: #808080;
}

.subscribe-section {
  background-color: var(--white);
  width: 100%;
  text-align: center;
  z-index: 5;
  position: relative;
}

.subscribe-section .column-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-section .column-box .right-side {
  width: 60%;
}

.subscribe-section .column-box .left-side {
  width: 40%;
  margin-bottom: 80px;
}

.subscribe-section .section-headers .tilde {
  color: var(--gold);
}

.how-it-works-section .section-tagline {
  margin-bottom: 30px;
}

.how-it-works-section .sub-card-container {
  display: flex;
  flex-direction: row;
}

.sub-card {
  padding: 40px;
  color: var(--white);
  font-size: 0.9rem;
  width: 50%;
}

.sub-card .number {
  color: var(--white);
  font-family: "Parisienne", cursive;
  font-weight: 600;
  font-size: 2rem;
  margin-right: 20px;
}

.sub-card h4 {
  color: var(--white);
}

.sub-card h2 {
  color: var(--new-gold);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.card-1 {
  background: #4a2c2b;
}

.card-2 {
  background: #3f2524;
}

.card-3 {
  background: #341f1e;
}

.large-card {
  background: #2b1513;
  height: 100%;
  padding: 50px 0;
}

.large-card .section-headers {
  color: var(--white);
}

.large-card .section-headers .tilde {
  color: var(--gold);
}

.large-card .section-mini-heading {
  color: var(--white);
}

.large-card .section-paragraph {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 25px;
}

.large-card .major-tagline {
  color: var(--white);
  margin-bottom: 40px;
}

.large-card .about-us-btn {
  padding: 12px;
}

.bulk-order-section {
  padding: 100px 0 0;
}

.bulk-order-section .bulk-order-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.bulk-order-section p.call-us {
  margin: 20px 0;
}

.bulk-order-section p.call-us span {
  color: var(--new-gold);
}

.bulk-order-section img {
  width: 70%;
  margin: 0 auto;
}

.bulk-order-section .img-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap; 
  padding: 40px 0;
  row-gap: 40px;
}

.bulk-order-section .img-container .img-card {
  width: 25%;
  margin: 10px;
}

.bulk-order-section .img-container img {
  filter: saturate(0);
  width: 200px;
  height: 100px;
  object-fit: contain;
}

.bulk-order-section .map {
  background-color: var(--new-gold);
}

.bulk-order-section .map img {
  width: 100%;
}

.newsletter-signup {
  background-color: var(--new-gold);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  width: 100%;
}

.newsletter-signup p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 5px 0 10px;
}

.newsletter-signup p.bold-text {
  font-weight: 400;
}

.newsletter-signup input {
  padding: 12px;
  width: 75%;
  border-radius: 5px;
}

.newsletter-signup .email-signup-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap:10px;
  padding: 10px 0;
}

.newsletter-signup .email-signup-box .sign-up-btn {
  background-color: var(--dark-brown);
  padding: 12px 15px;
  border-radius: 5px;
}

footer {
  background-color: #3f2524;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
}

footer .footer-nav {
  padding: 50px 0;
  margin: 0 auto;
  width: 55%;
}

footer .footer-nav .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--new-gold);
  font-family: "Parisienne", cursive;
  font-weight: 100;
  font-size: 1rem;
  letter-spacing: 2px;
}

footer .footer-nav .info-text {
  color: var(--white);
  text-align: center;
  font-size: 0.9rem;
  margin: 20px 0;
}

footer .footer-nav .nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

footer .copyright-info-bar {
  background-color: #341f1e;
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-align: center;
  margin: 0 auto;
}

footer .copyright-info-bar .copyright {
  width: 100%;
  color: var(--white);
}

footer .copyright-info-bar .terms-container {
  width: 100%;
}

footer .copyright-info-bar .terms-container ul {
  display: inline-block;
  padding: 10px 0;
}

footer .copyright-info-bar ul li {
  color: var(--white);
  display: inline-block;
}

footer .copyright-info-bar ul li a {
  color: var(--new-gold);
  margin: 0 4px;
}

footer .copyright-info-bar .dedicated {
  width: 100%;
  color: var(--white);
}

footer .copyright-info-bar .dedicated a {
  color: var(--new-gold);
}

/**************
 Media Queries
***************/

@media only screen and (max-width: 992px) {

      header .mobile-nav {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgb(0, 0, 0);
      cursor: pointer;
      animation: fade .1s;
      z-index: 100;
      overflow: hidden;
    }

    .no-scroll {
  overflow: hidden;
  height: 100vh;
}

    header .mobile-nav .close-btn {
      position: absolute;
      color: var(--white);
      font-size: 4rem;
      right: 50px;
      top: 50px;
      padding: 30px;
      cursor: pointer;
      z-index: 200;
    }

    header .mobile-nav .menu-nav {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
            overflow: hidden;
    }

    header .mobile-nav .menu-nav li {
      margin: 20px 0;
      font-size: 2rem;
    }

    header .nav .menu .mobile-menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .nav .menu .mobile-menu .fa-bars {
    color: var(--white);
    font-size: 2.8rem;
    margin-right: 20px;
  }

  header .nav .menu .menu-list {
    display: none;
  }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}


.mobile-nav.hidden {
  display: none;
}


.mobile-nav.showing {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}


.mobile-nav.hiding {
  display: block;
  animation: fadeOut 0.3s ease forwards;
} 

    header .nav .menu .mobile-menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .nav .menu .mobile-menu .fa-bars {
    color: var(--white);
    font-size: 2.8rem;
    margin-right: 20px;
  }

  header .nav .menu .menu-list {
    display: none;
  }

    header .hero .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 20px;
    height: 100%;
  }

  header .hero .hero-logo {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  header .hero .hero-logo img {
    width: 400px;
    display: block;
    margin: 0 auto;
  }

  header .hero .hero-container .hero-logo .subtitle {
    font-family: "Parisienne", cursive;
    font-weight: 700;
    color: #debd72;
    letter-spacing: 3px;
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 20px 0;
  }

  .testimonial-section .testimonial-card-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 0px;
  }

  .testimonial-section .testimonial-card {
    background: rgba(188, 188, 188, 0.3);
    padding: 40px;
    border-radius: 10px;
    margin: 10px 0;
    width: 100%;
  }

  .subscribe-section .column-box {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.subscribe-section .column-box .right-side {
  width: 100%;
}

.subscribe-section .column-box .left-side {
  width: 100%;
}

.bulk-order-section .bulk-order-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
}

@media only screen and (max-width: 660px) {
  /**************
     Header 
     ***************/

  .container {
    width: 100%;
    padding: 0 10px;
  }

  /* Nav */
  header .nav .nav-container {
    width: 100%;
    padding: 0 20px;
  }

  header .nav .logo img {
    width: 250px;
  }



  header .hero {
    background-image: linear-gradient(
        rgba(52, 31, 30, 0.5),
        rgba(52, 31, 30, 0.5)
      ),
      url("../img/hero-img2.jpg");
  }



  .main-section-style {
    text-align: center;
  }

  .main-section-style .section-headers .tilde {
    color: var(--gold);
  }

  .main-section-style .section-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .main-section-style .section-mini-heading {
    text-transform: uppercase;
    font-size: 1em;
    margin-bottom: 10px;
  }

  .main-section-style .section-paragraph {
    font-size: 0.9rem;
    color: #808080;
    margin-bottom: 25px;
  }

  .farm-text {
    background-color: var(--white);
    width: 100%;
    padding-top: 100px;
    text-align: center;
  }

  .farm-text .section-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 2;
    justify-content: center;
  }

  .section-headers {
    font-family: "Parisienne", cursive;
    font-weight: 600;
    color: #000;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin: 20px 0 5px;
  }

  .testimonial-section {
    position: relative;
    z-index: 5;
  }

  .testimonial-section a {
    color: var(--gold);
  }

  .testimonial-section .section-head {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.4;
    margin: 20px 0;
  }

  .testimonial-section .testimonial-card-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 0px;
  }

  .testimonial-section .testimonial-card {
    background: rgba(188, 188, 188, 0.3);
    padding: 40px;
    border-radius: 10px;
    margin: 10px 0;
    width: 100%;
  }

  .testimonial-section .testimonial-card .card-text {
    font-size: 0.9rem;
    color: #808080;
  }

  .testimonial-section .testimonial-card .sign-section {
    text-align: right;
    margin-top: 10px;
  }

  .testimonial-section .testimonial-card .signature {
    font-family: "Parisienne", cursive;
    font-weight: 500;
    font-size: 1.5rem;
    color: #000;
  }

  .testimonial-section .testimonial-card .signature .tilde {
    color: var(--gold);
    font-weight: 800;
  }

  .testimonial-section .testimonial-card .business-title {
    font-weight: 400;
    font-size: 0.9rem;
    color: #808080;
  }

.how-it-works-section .sub-card-container {
  display: flex;
  flex-direction: column;
}

  .sub-card {
    padding: 40px;
    color: var(--white);
    font-size: 0.9rem;
    width: 100%;
  }

  .sub-card .number {
    color: var(--white);
    font-family: "Parisienne", cursive;
    font-weight: 600;
    font-size: 2rem;
    margin-right: 20px;
  }

  .sub-card h2 {
    color: var(--new-gold);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .card-1 {
    background: #4a2c2b;
  }

  .card-2 {
    background: #3f2524;
  }

  .card-3 {
    background: #341f1e;
  }

  .large-card {
    background: #2b1513;
    height: 100%;
    padding: 50px 0;
  }

  .large-card .section-headers {
    color: var(--white);
  }

  .large-card .section-headers .tilde {
    color: var(--gold);
  }

  .large-card .section-mini-heading {
    color: var(--white);
  }

  .large-card .section-paragraph {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 25px;
  }

  .large-card .major-tagline {
    color: var(--white);
    margin-bottom: 40px;
  }

  .large-card .about-us-btn {
    background: var(--light-gold);
    padding: 12px;
    border-radius: 10px;
    display: block;
    width: 28%;
    margin: 0 auto;
  }

  .bulk-order-section {
    padding: 100px 0 0;
  }

  .bulk-order-section p.call-us {
    margin: 20px 0;
  }

  .bulk-order-section p.call-us span {
    color: var(--new-gold);
  }

  .bulk-order-section img {
    width: 70%;
    margin: 0 auto;
  }

  .bulk-order-section .img-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .bulk-order-section .img-container img {
    filter: saturate(0);
    width: 200px;
    height: 100px;
    object-fit: contain;
  }

  .bulk-order-section .map {
    background-color: var(--new-gold);
  }

  .newsletter-signup {
    background-color: var(--new-gold);
    color: var(--white);
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    width: 100%;
  }

  .newsletter-signup p {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    padding: 10px 0;
  }

  .newsletter-signup p.bold-text {
    font-weight: 400;
  }

  .newsletter-signup input {
    padding: 12px;
    width: 75%;
    border-radius: 5px;
  }

  .newsletter-signup .email-signup-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 30px;
  }

  .newsletter-signup .email-signup-box .sign-up-btn {
    background-color: var(--dark-brown);
    padding: 15px;
    border-radius: 5px;
  }

  footer {
    background-color: #3f2524;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
  }

  footer .footer-nav {
    padding: 50px 0;
    width: 100%;
  }

  footer .footer-nav .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var(--new-gold);
    font-family: "Parisienne", cursive;
    font-weight: 100;
    font-size: 1rem;
    letter-spacing: 2px;
  }

  footer .footer-nav .info-text {
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
    margin: 20px 0;
  }

  footer .footer-nav .nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  footer .copyright-info-bar {
    background-color: #341f1e;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    text-align: center;
  }

  footer .copyright-info-bar .copyright {
    width: 100%;
    color: var(--white);
  }

  footer .copyright-info-bar .terms-container {
    display: flex;
    width: 100%;
  }

  footer .copyright-info-bar .terms-container ul {
    display: inline-block;
    padding: 10px 0;
  }

  footer .copyright-info-bar ul li {
    color: var(--white);
    display: inline-block;
  }

  footer .copyright-info-bar ul li a {
    color: var(--new-gold);
    margin: 0 4px;
  }

  footer .copyright-info-bar .dedicated {
    width: 100%;
    color: var(--white);
  }

  footer .copyright-info-bar .dedicated a {
    color: var(--new-gold);
  }
}
