/* Valensy RH - Styles globaux */

/* Reset de base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Styles pour améliorer le rendu */
#root {
  min-height: 100vh;
}

/* Animations personnalisées (déjà dans Tailwind mais en backup) */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Amélioration de la lisibilité */
::selection {
  background-color: #C6A87C;
  color: white;
}
