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

body {
  font-family: sans-serif;
  background-color: #FFF7ED;
}

.navbar {
  background-color: #7C3AED;
  padding: 1rem 0;
  padding-left: 25%;
}

.logo {
  font-family: 'Itim', cursive;
  font-size: 3.5rem;
  color: #ffffff;
}

.hero {
  background-color: #7C3AED;
  min-height: 94.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  margin-bottom: 4rem;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 10rem;
  width: 70%;
}

.hero-image {
  max-width: 65%;
  height: auto;
  flex-shrink: 0;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.play-badge img {
  height: 60px;
  width: auto;
}

.feature {
  background-color: #FFF7ED;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 70%;
}

.feature-image {
  max-width: 45%;
  height: auto;
  flex-shrink: 0;
}

.feature-text {
  font-family: 'Joan', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #1a1a1a;
}

.footer {
  background-color: #7C3AED;
  margin-top: 6rem;
}

.footer-image {
  width: 100%;
  display: block;
}

.link{
  text-decoration: none;
  color:#7C3AED;
  font-weight: bold;
}

.footer-link {
  display: block;
  text-align: center;
  color: #ffffff;
  font-family: 'Joan', serif;
  font-size: 1.2rem;
  padding-bottom: 1rem;
  text-decoration: none;
  opacity: 0.8;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero-text {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: 'Joan', serif;
}

@media (max-width: 768px) {
  .navbar {
    padding-left: 1.5rem;
  }

  .hero {
    min-height: unset;
    padding: 3rem 1.5rem;
  }

  .hero-content {
    flex-direction: column;
    width: 100%;
    padding-bottom: 3rem;
    align-items: center;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
  }

  .feature-content {
    flex-direction: column;
    width: 100%;
  }

  .feature-image {
    max-width: 100%;
    width: 100%;
    order: -1;
  }
}
