/* Custom Styling for Bento Portfolio */

:root {
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

/* Custom Typography Utilities */
.font-display {
  font-family: var(--font-display);
}

body {
  font-family: var(--font-sans);
}

/* Bento Card Style and Premium Transitions */
.bento-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02), 
              0 1px 2px -1px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: rgba(99, 102, 241, 0.25); /* Subtle Indigo Glow */
  box-shadow: 0 12px 30px -10px rgba(99, 102, 241, 0.08),
              0 4px 20px -10px rgba(0, 0, 0, 0.03);
}

/* Social Buttons Hover */
.social-btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
}

/* Terminal Cursor Blink */
.terminal-cursor {
  border-right: 2px solid #a5b4fc;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: #a5b4fc }
}

/* Glassmorphism for Navigation */
nav {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* FAQ Trigger Icon rotation */
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: #6366f1;
}

/* Custom Scrollbar for Terminal */
#terminal-body::-webkit-scrollbar {
  width: 4px;
}
#terminal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
#terminal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
#terminal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
