@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --navy-900: #0B132B;
  --blue-primary: #2563EB;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
}

/* UI/UX Pro Max Glassmorphism */
.glass-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.text-navy-900 {
  color: var(--navy-900);
}

/* Premium Buttons */
.btn-primary {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  left: 100%;
}
