@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Source+Sans+Pro:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --earth-red: #c44536;
  --sage-green: #9caf88;
  --warm-cream: #f7f3e9;
  --deep-forest: #2d3b2d;
  --soft-brown: #8b7355;
  --golden-harvest: #d4a574;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.7;
  background: var(--warm-cream);
  color: var(--deep-forest);
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(157, 175, 136, 0.15), rgba(157, 175, 136, 0.25)),
    url("background-pattern.svg");
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background-color: var(--warm-cream);
}

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

.hero h1 {
  font-family: "Crimson Text", serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--deep-forest);
  letter-spacing: -1px;
}

.hero .tagline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 2rem;
  color: var(--earth-red);
  font-weight: 400;
  font-style: italic;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--soft-brown);
  line-height: 1.6;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sage-green);
  font-size: 0.9rem;
  animation: gentle-bounce 3s infinite;
  cursor: pointer;
}

@keyframes gentle-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.section {
  padding: 4rem 2rem;
}

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

.section-title {
  font-family: "Crimson Text", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--deep-forest);
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--soft-brown);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.chef-focus {
  background: var(--sage-green);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.chef-focus h2 {
  color: white;
  margin-bottom: 2rem;
}

.chef-text {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.farm-image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.varieties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.variety-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(45, 59, 45, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--earth-red);
  align-items: center;
}

.variety-card:nth-child(even) {
  direction: rtl;
}

.variety-card:nth-child(even) .variety-content {
  direction: ltr;
}

.variety-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 59, 45, 0.12);
}

.variety-content h3 {
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

.flavor-profile {
  background: var(--warm-cream);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--golden-harvest);
}

.flavor-profile h4 {
  color: var(--earth-red);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variety-description {
  color: var(--soft-brown);
  font-size: 1rem;
  line-height: 1.6;
}

.variety-image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(45, 59, 45, 0.1);
}

.harvest-info {
  background: var(--deep-forest);
  color: var(--warm-cream);
  padding: 4rem 2rem;
  text-align: center;
}

.harvest-info h2 {
  color: var(--warm-cream);
  margin-bottom: 3rem;
}

.harvest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.harvest-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.harvest-item h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  color: var(--golden-harvest);
  margin-bottom: 1rem;
}

.contact-section {
  background: var(--earth-red);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  color: white;
  margin-bottom: 2rem;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 2;
}

.contact-info a {
  color: var(--golden-harvest);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer {
  background: var(--deep-forest);
  color: var(--warm-cream);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .variety-card {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }

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

/* Our Growing Process Section */
.growing-process {
  background: white;
  padding: 5rem 2rem;
}

.growing-process .section-title {
  margin-bottom: 1rem;
}

.growing-process .section-subtitle {
  margin-bottom: 4rem;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--sage-green),
    var(--golden-harvest)
  );
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
  text-align: right;
}

.step-image {
  flex: 1;
  max-width: 400px;
  margin: 0 3rem;
}

.step-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(45, 59, 45, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 59, 45, 0.2);
}

.step-content {
  flex: 1;
  max-width: 400px;
  margin: 0 3rem;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--earth-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(196, 69, 54, 0.3);
}

.step-title {
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--soft-brown);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Mobile responsiveness for timeline */
@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: column !important;
    text-align: left !important;
    padding-left: 80px;
  }

  .process-step .step-content {
    text-align: left !important;
  }

  .step-number {
    left: 30px !important;
    transform: translateX(-50%);
  }

  .step-image,
  .step-content {
    margin: 0;
    max-width: 100%;
  }

  .step-image {
    margin-bottom: 1.5rem;
  }

  .step-image img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .growing-process {
    padding: 3rem 1rem;
  }

  .process-step {
    padding-left: 60px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: 20px !important;
  }

  .process-timeline::before {
    left: 20px;
  }
}
