.bg-wrapper {
  background: url("layered-waves-haikei-kopia\ 3.svg") repeat center top/cover;
}

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
}

.hero-section {
  padding: 200px 0px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 250px;
}

.hero-content {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 1000px;
  color: #000;
}

.hero-content p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: inline-flex;
  gap: 20px;
}

.cta-button {
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  background: #111011;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.cta-button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.cta-button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.cta-button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.cta-button:hover svg {
  transform: translateX(4em) rotate(45deg) scale(1.1);
}

.cta-button:hover span {
  transform: translateX(10em);
}

.cta-button:active {
  transform: scale(0.95);
}


@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}


@media (max-width: 768px) {
  .hero-section {
    padding: 250px 20px;
    padding-top: 150px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    padding: 1em 0.8em;
    font-size: 0.9rem;
  }
}
