@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');

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

::-webkit-scrollbar-track {
  background: #091e3a;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #aa7c11;
}

html {
  scroll-behavior: smooth;
}

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

/* Glassmorphism utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-panel-dark {
  background: rgba(9, 30, 58, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gold text glow */
.gold-glow {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Custom Animations */
@keyframes pulse-gold {
  0%, 100% {
    background-color: #d90429;
  }
  50% {
    background-color: #ef233c;
  }
}

.animate-pulse-gold {
  animation: pulse-gold 3s infinite ease-in-out;
}

/* Hero Background and Overlay */
.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 32, 96, 0.95) 0%, rgba(9, 30, 58, 0.8) 100%);
}

/* Document checkmark animation */
.check-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.check-item:hover {
  transform: translateX(6px);
}
