@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto+Mono:wght@400;500;700&display=swap');
@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  
  --color-brand-indigo: #6366f1;
  --color-brand-emerald: #10b981;
  --color-brand-amber: #f59e0b;
}

:root {
  background-color: #09090b;
  color: #fafafa;
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #09090b;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Glowing Aura Background Elements */
.glow-spot {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Custom Utilities */
.glass-panel {
  background: rgba(18, 18, 22, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-hover:hover {
  background: rgba(24, 24, 27, 0.65);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7);
}

.subtle-grid {
  background-size: 40px 40px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.pulse-glow {
  animation: pulseGlow 8s infinite ease-in-out;
}

/* Print Overrides - Make the resume print beautifully */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .no-print {
    display: none !important;
  }
  
  .print-only {
    display: block !important;
  }
  
  .resume-paper {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    color: black !important;
    background: white !important;
  }
  
  .resume-paper h1, 
  .resume-paper h2, 
  .resume-paper h3, 
  .resume-paper h4, 
  .resume-paper p, 
  .resume-paper li,
  .resume-paper span {
    color: black !important;
  }
  
  .resume-paper a {
    color: black !important;
    text-decoration: underline !important;
  }
  
  @page {
    size: A4;
    margin: 1.5cm;
  }
}
