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

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Color Palette */
  --color-primary: #2563eb;       /* Sleek tech blue */
  --color-primary-hover: #1d4ed8; /* Darker blue */
  --color-secondary: #0891b2;     /* Cyan accent */
  --color-accent: #f59e0b;        /* Warm trust yellow */
  
  --color-bg-dark: #0f172a;       /* Deep Slate */
  --color-bg-card: rgba(30, 41, 59, 0.7);
  --color-text-light: #f8fafc;
  --color-text-muted: #94a3b8;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  background-color: #0b0f19;
  color: #e2e8f0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Glassmorphism Class */
.glass-panel {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px 0 rgba(37, 99, 235, 0.15);
}

/* Animated Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-border-btn {
  position: relative;
  background: linear-gradient(#0b0f19, #0b0f19) padding-box,
              linear-gradient(135deg, #3b82f6, #06b6d4) border-box;
  border: 2px solid transparent;
}

/* Custom Hero Layout Overlay */
.hero-gradient-overlay {
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0) 60%),
              radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, rgba(15, 23, 42, 0) 50%);
}

/* Custom Scrollbar for premium look */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0b0f19;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid #0b0f19;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Button interactive shine animation */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(35deg);
  transition: all 0.6s ease;
}

.btn-shine:hover::after {
  left: 130%;
}

/* Schema NAP Section Styling */
.nap-item {
  transition: transform 0.2s ease;
}
.nap-item:hover {
  transform: translateX(4px);
}
