/* Bundle 5 - Unique Styles */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

:root {
  --transition-base: 300ms ease-in-out;
}

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

@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.7s ease-out forwards;
  animation-fill-mode: forwards;
}

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

/* Body base - dark theme */
body {
  background-color: #000;
  color: #fff;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Input placeholder */
input::placeholder {
  color: #666;
}

/* Focus states */
input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Button hover states */
button:active {
  transform: scale(0.98);
}