/* HAMK Apps - Custom Light Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border-subtle: #e2e8f0;
  --primary-accent: #4f46e5;
  --primary-accent-hover: #4338ca;
}

body {
  font-family: var(--font-sans);
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Subtle background grid pattern */
.bg-grid-pattern {
  background-image: radial-gradient(#e2e8f0 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

/* Radial ambient light glow */
.hero-glow {
  background: radial-gradient(circle at 50% 10%, rgba(99, 102, 241, 0.12) 0%, rgba(244, 247, 254, 0) 70%);
}

.card-glow:hover {
  box-shadow: 0 20px 35px -10px rgba(99, 102, 241, 0.12), 0 8px 16px -6px rgba(0, 0, 0, 0.04);
}

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

.product-card:hover {
  transform: translateY(-4px);
}

/* Badge pulse */
.status-indicator {
  position: relative;
}

.status-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  animation: pulse-ring 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Active filter tab */
.filter-btn.active {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

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

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
