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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(180deg, #F0E4D0 0%, #E8DCC4 100%);
  color: #1C1A14;
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.farm-sign {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.sign-title {
  font-family: 'Amatic SC', cursive;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #F0E4D0;
  text-shadow: 2px 2px 4px rgba(28, 26, 20, 0.3);
  border: 2px solid #A08060;
  border-radius: 4px;
  padding: 20px 40px;
  background: rgba(180, 104, 64, 0.1);
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.farm-fence {
  width: 100%;
  max-width: 600px;
  height: 80px;
  margin: 40px 0;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.fence-rail {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 1.2s ease-out 0.8s forwards;
}

.fence-post {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 1.5s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.farm-tagline {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: #C8A878;
  margin-top: 24px;
  animation: fadeIn 0.8s ease-out 1s forwards;
  opacity: 0;
}

/* Seasonal Sections */
.seasonal-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(28, 26, 20, 0.1);
}

.seasonal-section:last-of-type {
  border-bottom: none;
}

.seasonal-section.spring {
  background: linear-gradient(135deg, rgba(122, 154, 96, 0.05) 0%, transparent 100%);
}

.seasonal-section.summer {
  background: linear-gradient(135deg, rgba(200, 168, 120, 0.05) 0%, transparent 100%);
}

.seasonal-section.autumn {
  background: linear-gradient(135deg, rgba(176, 104, 64, 0.05) 0%, transparent 100%);
}

.seasonal-section.winter {
  background: linear-gradient(135deg, rgba(122, 154, 96, 0.08) 0%, transparent 100%);
}

.content-block {
  flex: 1;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.season-label {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 400;
  color: #C8A878;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.body-text {
  color: #1C1A14;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* Tree Stage Illustrations */
.tree-stage {
  width: 80px;
  height: 120px;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.tree-trunk,
.tree-branch,
.tree-leaf {
  opacity: 0;
  animation: drawTree 0.6s ease-out forwards;
}

.tree-trunk {
  animation-delay: 0s;
}

.tree-branch {
  animation-delay: 0.2s;
}

.tree-leaf {
  animation-delay: 0.4s;
}

@keyframes drawTree {
  from {
    opacity: 0;
    stroke-width: 0;
  }
  to {
    opacity: 1;
    stroke-width: auto;
  }
}

/* Footer */
.footer {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(28, 26, 20, 0.2);
}

.footer-text {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: #9A8A6A;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .sign-title {
    font-size: 32px;
    padding: 16px 32px;
  }

  .farm-fence {
    height: 60px;
  }

  .seasonal-section {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
  }

  .tree-stage {
    width: 60px;
    height: 100px;
  }

  .body-text {
    font-size: 15px;
  }
}
