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

body {
  font-family: "Poppins", sans-serif;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
  }
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__content {
    padding: 3rem 2rem;
  }
}
.hero__title {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.3rem;
  }
}
.hero__cta {
  background: #f59e0b;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.hero__cta:hover {
  background: rgb(221.3291338583, 142.4125984252, 9.0708661417);
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}
.hero__cta:active {
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .hero__cta {
    font-size: 1.4rem;
    padding: 1.2rem 4rem;
  }
}

.tales {
  padding: 5rem 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .tales {
    padding: 7rem 0;
  }
}
.tales__heading {
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #1f2937;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .tales__heading {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}
.tales__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .tales__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .tales__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.tale-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.tale-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.tale-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tale-card__image {
    height: 280px;
  }
}
.tale-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tale-card:hover .tale-card__image img {
  transform: scale(1.1);
}
.tale-card__title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  color: #1f2937;
  padding: 1.5rem 1.5rem 0.5rem;
}
.tale-card__description {
  color: #6b7280;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
}

.features {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (min-width: 768px) {
  .features {
    padding: 7rem 0;
  }
}
.features__heading {
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #1f2937;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .features__heading {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}
.features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.feature-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.feature-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.feature-item__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature-item__title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.feature-item__text {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
}
.cta-section__heading {
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-section__heading {
    font-size: 2.8rem;
  }
}
.cta-section__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .cta-section__text {
    font-size: 1.3rem;
  }
}
.cta-section__button {
  background: #f59e0b;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.cta-section__button:hover {
  background: rgb(221.3291338583, 142.4125984252, 9.0708661417);
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}
.cta-section__button:active {
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .cta-section__button {
    font-size: 1.4rem;
    padding: 1.2rem 4rem;
  }
}

.footer {
  padding: 2rem 0;
  background: #1f2937;
  text-align: center;
}
.footer__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.waitlist {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 1.5rem;
}
.waitlist__container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.waitlist__content {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .waitlist__content {
    padding: 3.5rem 3rem;
  }
}
.waitlist__title {
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .waitlist__title {
    font-size: 2.5rem;
  }
}
.waitlist__subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .waitlist__subtitle {
    font-size: 1.1rem;
  }
}
.waitlist__form {
  margin-bottom: 1rem;
}
.waitlist__privacy {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 1.5rem;
}
.waitlist__success {
  text-align: center;
  padding: 2rem 0;
}
.waitlist__success h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.waitlist__success p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group__label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.form-group__input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.form-group__input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-group__input::placeholder {
  color: #9ca3af;
}
.form-group__submit {
  width: 100%;
  background: #f59e0b;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.form-group__submit:hover {
  background: rgb(221.3291338583, 142.4125984252, 9.0708661417);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.form-group__submit:active {
  transform: translateY(0);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}

.back-link {
  display: inline-block;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.back-link:hover {
  color: #4f46e5;
  transform: translateX(-5px);
}

html {
  scroll-behavior: smooth;
}

/*# sourceMappingURL=styles.css.map */
