/* 
* DreamNoos - Main CSS Styles
* This file contains additional styles for the DreamNoos website
*/

/* General Overrides and Enhancements */
body {
  background-color: #fafafa;
  scroll-behavior: smooth;
}

/* Dream Form Styling */
.dream-form {
  margin-top: 2rem;
  position: relative;
}

.dream-form textarea {
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.dream-form textarea:focus {
  box-shadow: 0 5px 20px rgba(108, 99, 255, 0.15);
  border-color: #6c63ff;
}

.dream-form button {
  background: linear-gradient(135deg, #6c63ff 0%, #8b6cfd 100%);
  border: none;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
  transition: all 0.3s ease;
}

.dream-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
  background: linear-gradient(135deg, #8b6cfd 0%, #6c63ff 100%);
}

/* Hero section enhancements */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #3498db, #8e44ad);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.svg");
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.05;
  z-index: -1;
}

/* Symbol Search Box */
.symbol-search-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
  background-image: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.05) 0%,
    rgba(245, 169, 220, 0.05) 100%
  );
}

.popular-symbols {
  margin-top: 1rem;
}

.popular-symbols a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: #f5f5f5;
  border-radius: 20px;
  color: #6c63ff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.popular-symbols a:hover {
  background-color: #6c63ff;
  color: #fff;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #6c63ff 0%, #8b6cfd 100%);
  color: white;
  padding: 4rem 0;
  margin: 3rem 0 0;
}

.cta h2 {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }

  .symbol-search-box {
    padding: 1.5rem;
  }
}
