/* Custom Styles for NOVARE biopharmaceutical portal */

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

:root {
  --pfizer-blue: #0000C9;
  --pfizer-deep: #001489;
  --novare-teal: #107C6F;
  --novare-badge: #18639E;
  --novare-sky: #00A3E0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Smooth transitions */
.transition-pfizer {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card hover glow */
.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
}

/* Custom button pulse */
.btn-pulse {
  box-shadow: 0 0 0 0 rgba(0, 0, 201, 0.4);
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 201, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 201, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 201, 0);
  }
}

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

/* Filter buttons */
.filter-btn {
  transition: all 0.2s ease;
}
.filter-btn.active {
  background-color: #0000C9 !important;
  color: #ffffff !important;
  border-color: #0000C9 !important;
}

/* Interactive chromatogram graph styling */
.chromatogram-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-chart 2s ease forwards;
}

@keyframes draw-chart {
  to {
    stroke-dashoffset: 0;
  }
}
