/* z6k Theme - Auto-generated, do not edit manually */

:root {
  /* colors */
  --color-background: #ffffff;
  --color-border: #e2e8f0;
  --color-error: #ef4444;
  --color-primary: #051d51;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #64748b;
  --color-success: #22c55e;
  --color-surface: #f8fafc;
  --color-surface-elevated: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-warning: #f59e0b;

  /* fontSizes */
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-sm: 0.875rem;
  --font-size-xl: 1.25rem;
  --font-size-xs: 0.75rem;

  /* fonts */
  --font-body: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* radii */
  --radius-full: 9999px;
  --radius-lg: 0.5rem;
  --radius-md: 0.375rem;
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-xl: 0.75rem;

  /* shadows */
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);

  /* spacing */
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-lg: 1.5rem;
  --space-md: 1rem;
  --space-sm: 0.5rem;
  --space-xl: 2rem;
  --space-xs: 0.25rem;

}


/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 var(--space-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin: 0 0 var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface-elevated);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-lg);
}

/* Cards */
.card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 0 var(--space-sm);
}

.card-body {
  color: var(--color-text-muted);
  margin: 0;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-cols-3, .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
}

.section-hero {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.section-hero h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-md);
}

.section-hero .subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-hero .cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Nav Cards Section */
.section-nav-cards {
  padding: var(--space-2xl) var(--space-md);
}

.section-nav-cards .grid {
  max-width: 1000px;
  margin: 0 auto;
}

.nav-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.nav-card:hover {
  text-decoration: none;
}

.nav-card .card {
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-card:hover .card {
  transform: translateY(-2px);
}

/* Footer */
.section-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

/* Utility classes */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
