@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
@font-face {
  font-family: 'Orbitron';
  src: url('/fonts/Orbitron-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}
/* Cyberpunk Effects */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.scanlines {
  position: relative;
  overflow: hidden;
}

.scanlines::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: scanline 4s linear infinite;
  pointer-events: none;
}

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

::-webkit-scrollbar-track {
    background: #1f2937;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Animation classes */
.skill-card:hover i {
    animation: bounce 0.5s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* Cyberpunk effects */
.glow-text {
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.hud-border {
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.cyberpunk-btn {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}

.cyberpunk-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  transition: 0.5s;
}

.cyberpunk-btn:hover::before {
  left: 100%;
}

/* Timeline animations */
.timeline-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Form input focus effects */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}