@import 'components/hero.css';
@import 'components/features.css';
@import 'components/buttons.css';
@import 'components/nav.css';
@import 'components/logo.css';
@import 'components/footer.css';
@import 'components/sections.css';
@import 'components/language-selector.css';
@import 'components/forms.css';
@import 'components/suggestion-form.css';
@import 'components/toast.css';

:root {
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --background-color: #f8fafc;
  --text-color: #1e293b;
  --text-color-light: #64748b;
  --border-color: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-top: 4rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#qludus-kutu-img{
animation: 2s linear infinite alternate bounce ;

}
@keyframes bounce {
  from{
    transform: translateY(0);
  }
  to{
    transform: translateY(-30px);
  }
}

#download{
  background-image: url('../img/background.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


#spinner img{
  animation: spin 15s linear infinite;

}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}