/* ===== GENERAL STYLES ===== */
*
{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body 

{
  margin: 0;
  font-family: Cambo, serif;
}

h1 {
  font-family: Playfair Display;
  font-style: italic;
  font-size: 128px;
  color: beige;
}

h4 {
  font-family: Playfair Display;
  font-size: 66px;
  color: beige;
}

h2 {
  font-family: Playfair Display;
  font-size: 85px;
  color: #003A00;
  text-align: center;
  font-style: italic;
  margin-top: 40px;
}

h3 {
  font-family: Playfair Display;
  font-size: 40px;
  color: beige;
  text-align: center;
}

p {
  font-family: Cambo;
  font-size: 18px;
  color: #003A00;
  margin-bottom:20px;
}

ul {
  font-family: Playfair Display;
  font-size: 18px;
  color: beige;
  text-align: left;
  width: fit-content;
  padding-left: 20px;
  margin: 0 auto;
}

a {
  font-family: Cambo;
  font-size: 24px;
  color: black;
  text-decoration: none;
}

/* ===== NAV BAR ===== */
nav {
  background-color: #5c6f57;
  color: white;
  padding: 18px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width:100%;
  align-content: flex-start;
  z-index: 10;
}

nav .links
{
  color: white;
  margin-right: 40px;
}

nav a {
  color: white;
  margin-right: 25px;
}
nav a:hover{
  color:#F5F5DC;
}

/* ===== FULL WIDTH BACKGROUND SECTIONS ===== */
.full-width-bg {
  width: 100%;
}

/* ===== HERO SECTIONS ===== */
#large-title-box {
  background-image: url("images/Landing Page Image.jpg");
  background-size: cover;
  background-position: center;
  min-height: 520px;
  color: white;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

#large-title-box h1 {
  font-size: 110px;
  margin-bottom: 10px;
}

#large-title-box h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

#large-title-box a {
  background-color: #f4b400;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
}
#large-title-box a:hover
{
  color:#5c6f57;
}

#meetyourfarmer {
  background-image: url("images/MeetFarmer.png");
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  color: white;
}

.farmer-img img {
  width: 350px;
  height: auto;
}

#meetyourfarmer h2,
#meetyourfarmer p {
  color: white;
  margin: 0;
  max-width:90%;
  min-width:600px;
}


#twentyweeks {
  background-image: url("images/Second_Big_Page_image.png");
  background-size: cover;
  background-position: center;
  min-height: 520px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text h2 {
  font-size: 50px;
  font-style: italic;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #f4b400;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
.hero-button a:hover{
  color:#6f8c3b;
}

#twentyweeks a:hover{
  color:#6f8c3b;
}

.hero-button a{
  color:white;
}

/* ===== NORMAL CONTENT WRAP ===== */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== WEEKLY BOX ARTICLES ===== */
.week-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

article {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #6f8c3b;
  color: white;
  padding: 20px;
  border-radius: 12px;
}

article img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ===== PRODUCE GRID ===== */
.produce-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;        /* space between images */

  padding: 0 40px;  /* space from left & right edges */
}

.produce-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
  background-color: #5c6f57;
  color: white;
  display: flex;                 /* makes left + right */
  justify-content: space-between;/* pushes apart */
  align-items: center;           /* vertical center */
  padding: 10px 30px;            /* thinner footer */
  font-size: 16px;               /* same size text */
}

/* left side icons */
.footer-left a {
  color: white;
  font-size: 28px;   /* icon size */
  margin-right: 12px;
}

/* right side text */
.footer-right {
  text-align: right;
}

.footer-right p
{
color:white;
  font-size:20px;
}

/* make email white */
.footer-right a {
  color: white;
  text-decoration: none;
}

footer a {
  color: white;
  margin: 0 10px;
}
#twentyweeks h2 {
  color: white;
}
/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
}
#BottomAtCSA 
nav {
  position: relative;
  z-index: 10;
}
footer a:hover{
  color:#F5F5DC;
}
