:root {
  --evergreen: #4a5f38;
  --wheat-beige: #f8f5f0;
  --clay-brown: #7a766f;
  --soft-white: #ffffff;
  --stone-grey: #2d2b2a;
  --light-cream: #eae7e1;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--wheat-beige);
  color: var(--stone-grey);
  line-height: 1.8;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.brand-color {
  color: var(--evergreen);
}

.btn-primary {
  background-color: var(--evergreen);
  border: none;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3b4c2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 95, 56, 0.2);
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--evergreen);
}

.feature-box {
  padding: 2.5rem;
  border-radius: 8px;
  background-color: var(--soft-white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--evergreen);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--stone-grey);
}

.bg-light-custom {
  background-color: var(--soft-white);
}

.cta-section {
  background-color: var(--light-cream);
  padding: 5rem 0;
}

footer {
  background-color: var(--light-cream);
  padding: 3rem 0;
  text-align: center;
  color: var(--clay-brown);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.section-padding {
  padding: 6rem 0;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--clay-brown);
}

.text-evergreen {
  color: var(--evergreen);
}

/* Navbar styles */
.navbar {
  background-color: var(--evergreen);
  position: relative;
  z-index: 100;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--soft-white);
}

.navbar-nav .nav-link {
  color: var(--soft-white);
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-cream);
}

/* Home page specific navbar */
.home-navbar {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
}

/* Page header styles */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/utah-farm.jpg') no-repeat center center/cover;
  height: 50vh;
  color: var(--soft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.header-content {
  max-width: 800px;
  padding: 2rem;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

.page-header p.lead {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* Content image styles */
.content-img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}

.content-img:hover {
  transform: scale(1.02);
}

/* Hero section styles */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/fridge.png') no-repeat center center/cover;
  height: 90vh;
  color: var(--soft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

.hero p.lead {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

