/* Nature elements page specific styles */
.nature-elements-form {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.nature-elements-form h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.nature-elements-form p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.nature-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.nature-option {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nature-option:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #16786c;
  transform: translateY(-2px);
}

.nature-option:active {
  transform: translateY(0);
}

.nature-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nature-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nature-option span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nature-elements-form {
    padding: 1.5rem 1rem;
  }
  
  .nature-elements-form h1 {
    font-size: 1.5rem;
  }
  
  .nature-options {
    gap: 0.8rem;
  }
  
  .nature-option {
    padding: 1rem;
  }
  
  .nature-image {
    width: 60px;
    height: 60px;
  }
  
  .nature-option span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nature-elements-form h1 {
    font-size: 1.3rem;
  }
  
  .nature-options {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .nature-option {
    padding: 0.8rem;
  }
  
  .nature-image {
    width: 50px;
    height: 50px;
  }
  
  .nature-option span {
    font-size: 0.9rem;
  }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
  .nature-elements-form {
    padding: 3rem 1rem;
  }
  
  .nature-elements-form h1 {
    font-size: 2.2rem;
  }
  
  .nature-options {
    gap: 1.5rem;
  }
  
  .nature-option {
    padding: 2rem;
  }
  
  .nature-image {
    width: 100px;
    height: 100px;
  }
  
  .nature-option span {
    font-size: 1.2rem;
  }
} 