/* Custom styles for Anyelo Llanco's Portfolio */

:root {
  --primary: #0f172a;
  --accent: #3b82f6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Navbar blur effect tweak */
header {
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Mobile Navbar utility */
#mobile-menu.active {
  display: block;
}

/* Timeline specific styles if needed */
#experience .relative::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    height: 100%;
    width: 2px;
}
