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

:root {
  --primary-navy: #0B192C;
  --primary-blue: #1E3E62;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-cyan: #00D2D3;
  --bg-dark: #070F1E;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #070F1E;
  color: #E2E8F0;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism */
.glass-card {
  background: rgba(18, 30, 49, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-hover:hover {
  background: rgba(26, 43, 70, 0.85);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-nav {
  background: rgba(7, 15, 30, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0B192C;
}
::-webkit-scrollbar-thumb {
  background: #24416B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* Glow effects */
.gold-glow {
  box-shadow: 0 0 25px -5px rgba(212, 175, 55, 0.35);
}

.cyan-glow {
  box-shadow: 0 0 25px -5px rgba(0, 210, 211, 0.35);
}

/* Mobile Safe Areas for iPhone X / 12 / 13 / 14 / 15 / 16 (Notch & Home Indicator) */
.bottom-nav-safe {
  padding-bottom: calc(0.35rem + env(safe-area-inset-bottom, 0px));
}

.safe-top-padding {
  padding-top: env(safe-area-inset-top, 0px);
}

/* Touch Targets: minimum 44px - 48px */
.touch-target {
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Mobile Bottom Sheet Modal */
@media (max-width: 640px) {
  .mobile-bottom-sheet {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Animations */
@keyframes pulseSlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.animate-pulse-slow {
  animation: pulseSlow 8s ease-in-out infinite;
}

/* Print styles for checklist export */
@media print {
  body {
    background-color: #fff !important;
    color: #000 !important;
  }
  nav, footer, .no-print, button:not(.print-keep), .md\\:hidden {
    display: none !important;
  }
  .print-area {
    display: block !important;
    color: #000 !important;
  }
  .glass-card {
    background: #fff !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    color: #111 !important;
  }
}
