/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-cream: #faf8f5;
  --color-green: #4a7c59;
  --color-green-dark: #3d6349;
  --color-brown: #5c4033;
  --color-gold: #c9a227;
  --color-text: #333;
  --color-text-light: #666;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--color-green);
  text-decoration: none;
}

a:hover {
  color: var(--color-green-dark);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-green);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('/assets/images/farm2.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: var(--color-green);
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: var(--color-green-dark);
  color: white;
  transform: translateY(-2px);
}

/* About */
.about {
  padding: 80px 20px;
  background: white;
}

.about h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--color-brown);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.features {
  list-style: none;
  margin-top: 30px;
}

.features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
}

/* Products */
.products {
  padding: 80px 20px;
  background: var(--color-cream);
}

.products h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--color-brown);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-card h3 {
  color: var(--color-green);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-card p {
  color: var(--color-text-light);
}

/* Reviews */
.reviews {
  padding: 80px 20px;
  background: var(--color-green);
  color: white;
}

.reviews h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.review-summary {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.review {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--color-gold);
}

.review p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}

.review cite {
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

/* Contact */
.contact {
  padding: 80px 20px;
  background: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--color-brown);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  color: var(--color-green);
  margin-bottom: 10px;
  margin-top: 25px;
  font-size: 1.1rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: var(--color-text-light);
}

.contact-info a {
  color: var(--color-green);
}

.map iframe {
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
  background: var(--color-brown);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
}

.site-footer a:hover {
  color: white;
}

.site-footer p {
  margin: 5px 0;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Could add mobile menu later */
  }

  .hero {
    padding: 80px 20px;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about, .products, .reviews, .contact {
    padding: 60px 20px;
  }
}
