/* Accurecord Corporate Storefront - Custom Styles */

/* CSS Variables */
:root {
  --primary-blue: #2563eb;
  --secondary-blue: #3b82f6;
  --accent-green: #10b981;
  --neutral-gray: #6b7280;
  --bg-white: #ffffff;
  --text-dark: #1f2937;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Smooth transitions */
a, button {
  transition: all 0.3s ease;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--neutral-gray);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Mobile menu transitions */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
  max-height: 500px;
}

/* Focus styles for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  nav, footer {
    display: none;
  }
  
  body {
    background: white;
  }
}

