@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #0f4c81;
  --secondary-color: #e63946;
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 255, 255, 255;
  --background-end-rgb: 255, 255, 255;
}

body {
  font-family: 'Inter', sans-serif;
  color: rgb(var(--foreground-rgb));
  background: rgb(var(--background-start-rgb));
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #09375b;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #b71c1c;
}

/* Fix for mobile menu */
.mobile-menu-active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

/* Hide canvas elements that Next.js might have left behind for some reason */
canvas {
  display: none !important;
}
