/* advai.custom.css */

/* общий фон и текст */
body {
  @apply bg-white text-gray-900;
}
.dark body {
  @apply bg-dark-bg text-dark-ink;
}

/* форма в хиро */
.hero-form {
  @apply bg-white/20;
}
.dark .hero-form {
  @apply bg-dark-paper/40 border-gray-600;
}

/* инпуты */
.hero-form input,
.hero-form textarea {
  @apply bg-white/80 text-ink placeholder-gray-500;
}
.dark .hero-form input,
.dark .hero-form textarea {
  @apply bg-dark-paper/70 text-dark-ink placeholder-gray-400 border-gray-600;
}

/* кнопки */
.hero-btn {
  @apply bg-brand text-white;
}
.dark .hero-btn {
  @apply bg-brand/90;
}

/* ссылки в футере */
.footer-link {
  @apply text-gray-600;
}
.dark .footer-link {
  @apply text-gray-400;
}
