/* Base Styles */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* CSS Custom Properties */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-base: 300ms ease-in-out;
}

/* Animation Keyframes */
@keyframes card-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.card-animate {
  opacity: 0;
}

.card-animate.card-intro {
  animation: card-fade-in-up 0.6s ease-out forwards;
  animation-fill-mode: forwards;
}

/* Material Icons Size Override */
.material-icons {
  font-size: inherit;
  line-height: inherit;
}