/* Makai Analytics - Custom Styles */

/* Tailwind CSS will be loaded via CDN in the base template */

:root {
  /* Brand Colors */
  --makai-purple: #7d00cc;
  --makai-purple-light: #9933dd;
  --makai-purple-dark: #6600aa;

  --ocean-cyan: #009ccc;
  --ocean-cyan-light: #33b3dd;
  --ocean-cyan-dark: #007da3;

  /* Button Blues - Darker, textured */
  --button-blue: #0a4d7a;
  --button-blue-hover: #083a5c;
  --button-blue-active: #062e47;

  /* Neutrals */
  --bg-white: #ffffff;
  --bg-gray-50: #f9fafb;
  --bg-gray-100: #f3f4f6;
  --border-gray: #e5e7eb;
  --text-gray: #6b7280;
  --text-dark: #1f2937;
}

/* Custom button styles with texture */
.btn-makai {
  background: linear-gradient(135deg, var(--button-blue) 0%, var(--button-blue-hover) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-makai:hover {
  background: linear-gradient(135deg, var(--button-blue-hover) 0%, var(--button-blue-active) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-makai:active {
  transform: translateY(0);
}

/* Purple accent button */
.btn-makai-purple {
  background: linear-gradient(135deg, var(--makai-purple) 0%, var(--makai-purple-dark) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(125, 0, 204, 0.3), 0 2px 4px -1px rgba(125, 0, 204, 0.2);
}

.btn-makai-purple:hover {
  background: linear-gradient(135deg, var(--makai-purple-light) 0%, var(--makai-purple) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(125, 0, 204, 0.3), 0 4px 6px -2px rgba(125, 0, 204, 0.2);
}

/* Cyan accent button */
.btn-makai-cyan {
  background: linear-gradient(135deg, var(--ocean-cyan) 0%, var(--ocean-cyan-dark) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 156, 204, 0.3), 0 2px 4px -1px rgba(0, 156, 204, 0.2);
}

.btn-makai-cyan:hover {
  background: linear-gradient(135deg, var(--ocean-cyan-light) 0%, var(--ocean-cyan) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 156, 204, 0.3), 0 4px 6px -2px rgba(0, 156, 204, 0.2);
}

/* Card styles */
.card-makai {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card-makai:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Input styles */
.input-makai {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-gray);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.input-makai:focus {
  outline: none;
  border-color: var(--makai-purple);
  box-shadow: 0 0 0 3px rgba(125, 0, 204, 0.1);
}

/* Link styles */
.link-makai {
  color: var(--makai-purple);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.link-makai:hover {
  color: var(--makai-purple-light);
  text-decoration: underline;
}

/* Badge styles */
.badge-purple {
  background: rgba(125, 0, 204, 0.1);
  color: var(--makai-purple-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-cyan {
  background: rgba(0, 156, 204, 0.1);
  color: var(--ocean-cyan-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Ocean wave background accent (optional for headers) */
.ocean-gradient {
  background: linear-gradient(135deg, var(--ocean-cyan-light) 0%, var(--ocean-cyan) 50%, var(--makai-purple) 100%);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
