@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  html {
    @apply scroll-smooth;
  }
  
  body {
    @apply bg-gradient-to-b from-slate-50 to-slate-100 dark:from-slate-950 dark:to-slate-900 text-slate-900 dark:text-slate-100 transition-colors duration-300;
  }

  header {
    @apply bg-white dark:bg-slate-900 border-b-2 border-slate-200 dark:border-slate-700;
  }
}

@layer components {
  .card {
    @apply bg-white dark:bg-slate-800 rounded-xl shadow-lg dark:shadow-slate-900 hover:shadow-2xl dark:hover:shadow-slate-800 transition-all duration-300;
  }

  .card-dark {
    @apply bg-slate-50 dark:bg-slate-800 border border-slate-200 dark:border-slate-700;
  }

  .text-primary {
    @apply text-slate-900 dark:text-slate-100;
  }

  .text-secondary {
    @apply text-slate-600 dark:text-slate-400;
  }

  .text-tertiary {
    @apply text-slate-500 dark:text-slate-500;
  }

  .input-field {
    @apply border-2 border-slate-300 dark:border-slate-600 bg-white dark:bg-slate-800 text-slate-900 dark:text-slate-100 placeholder-slate-500 dark:placeholder-slate-400 focus:outline-none focus:border-blue-500 dark:focus:border-blue-400;
  }
}
