/* Farmers List Coming Soon Styles */
.farmers-coming-soon {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.coming-soon-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,240,240,0.9) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}

.coming-soon-title {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.coming-soon-title span {
  color: #7cda24;
}

.coming-soon-description {
  font-family: "Encode Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.countdown-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 20px;
}

.countdown-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 15px;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.countdown-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #7cda24;
  margin-bottom: 5px;
}

.countdown-label {
  font-size: 0.9em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notification-form {
  max-width: 600px;
  margin: 30px auto;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-input {
  flex: 1;
  min-width: 250px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-family: "Encode Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #7cda24;
}

.form-button {
  padding: 12px 25px;
  background-color: #7cda24;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-button:hover {
  background-color: #68b81e;
  transform: translateY(-2px);
}

.farmer-illustrations {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 40px 0;
}

.farmer-icon {
  width: 120px;
  height: 120px;
  margin: 10px;
  animation: float 3s ease-in-out infinite;
}

.farmer-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.farmer-icon:nth-child(3) {
  animation-delay: 1s;
}

.farmer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.decorative-plant {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.15;
}

.plant-1 {
  top: -30px;
  left: -30px;
  transform: rotate(-15deg);
}

.plant-2 {
  bottom: -30px;
  right: -30px;
  transform: rotate(15deg);
}

.success-message {
  display: none;
  background-color: rgba(124, 218, 36, 0.2);
  color: #4a7c0c;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .coming-soon-title {
    font-size: 2em;
  }
  
  .countdown-box {
    min-width: 100px;
  }
  
  .countdown-number {
    font-size: 2em;
  }
  
  .farmer-icon {
    width: 100px;
    height: 100px;
  }
  
  .decorative-plant {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 480px) {
  .coming-soon-title {
    font-size: 1.8em;
  }
  
  .coming-soon-description {
    font-size: 1em;
  }
  
  .countdown-box {
    min-width: 80px;
    padding: 15px 10px;
  }
  
  .countdown-number {
    font-size: 1.5em;
  }
  
  .farmer-icon {
    width: 80px;
    height: 80px;
  }
}
