/*
 * Design System: bwatson.vc
 * This is my new site for hosting "cards" for my projects, and my server admin endpoint for server health.
 * Generated by PickCSS (pickcss.com)
 *
 * Usage:
 *   1. Import this file in your main CSS or HTML
 *   2. Reference variables with var(--color-primary), etc.
 *   3. All components using these variables will update automatically
 */

:root {
  /* Colors */
  --color-primary: #0EA5E9;
  --color-secondary: #06B6D4;
  --color-background: #F8FAFC;
  --color-foreground: #0F172A;
  --color-accent: #14B8A6;
  --color-muted: #E0F2FE;
  --color-border: #BAE6FD;

  /* Typography */
  --font-family: Nunito;
  --font-size-base: 1rem;
  --font-size-xs: 0.623rem;
  --font-size-sm: 0.79rem;
  --font-size-lg: 1.267rem;
  --font-size-xl: 1.604rem;
  --font-size-2xl: 2.031rem;
  --font-size-3xl: 2.573rem;
  --font-size-4xl: 3.259rem;
  --font-size-5xl: 4.127rem;
  --line-height: 1.6;
  --font-weight-normal: 400;
  --font-weight-medium: 425;
  --font-weight-semibold: 500;
  --font-weight-bold: 600;

  /* Spacing */
  --spacing-unit: 0.25rem;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;

  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-none: none;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);

  /* Semantic Spacing - Element-specific spacing assignments */
  --button-padding-y: var(--spacing-3);
  --button-padding-x: var(--spacing-6);
  --nav-padding: var(--spacing-4);
  --nav-gap: var(--spacing-8);
  --section-padding-y: var(--spacing-16);
  --section-padding-x: var(--spacing-8);
  --card-padding: var(--spacing-6);
  --card-gap: var(--spacing-4);
  --input-padding-y: var(--spacing-2);
  --input-padding-x: var(--spacing-3);
  --form-gap: var(--spacing-4);
  --badge-padding-y: var(--spacing-1);
  --badge-padding-x: var(--spacing-3);
  --headline-margin: var(--spacing-4);
  --subheadline-margin: var(--spacing-8);
  --paragraph-margin: var(--spacing-4);
  --cta-gap: var(--spacing-3);

  /* Semantic Radius - Element-specific corner assignments */
  --button-radius: var(--radius-md);
  --card-radius: var(--radius-lg);
  --input-radius: var(--radius-sm);
  --badge-radius: var(--radius-full);
  --modal-radius: var(--radius-lg);

  /* Semantic Shadow - Element-specific shadow assignments */
  --button-shadow: var(--shadow-none);
  --card-shadow: var(--shadow-md);
  --modal-shadow: var(--shadow-lg);
  --dropdown-shadow: var(--shadow-md);

  /* Semantic Typography - Element-specific font assignments */
  --nav-link-font-size: var(--font-size-sm);
  --badge-font-size: var(--font-size-xs);
  --button-font-size: var(--font-size-sm);
  --hero-headline-font-size: var(--font-size-5xl);
  --section-headline-font-size: var(--font-size-3xl);
  --card-title-font-size: var(--font-size-lg);
  --label-font-size: var(--font-size-sm);
  --body-font-size: var(--font-size-base);
  --logo-font-size: var(--font-size-base);
  --footer-font-size: var(--font-size-sm);
  --headline-font-weight: var(--font-weight-bold);
  --button-font-weight: var(--font-weight-medium);
  --nav-link-font-weight: var(--font-weight-medium);
  --label-font-weight: var(--font-weight-medium);
  --logo-font-weight: var(--font-weight-semibold);
}

/* ==========================================================================
   Utility Classes - Ready to use with your HTML
   ========================================================================== */

.section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.section--muted {
  background-color: var(--color-muted);
}

.section--center {
  text-align: center;
}

.hero-headline {
  font-size: var(--hero-headline-font-size);
  font-weight: var(--headline-font-weight);
  line-height: 1.2;
  margin-bottom: var(--headline-margin);
}

.section-headline {
  font-size: var(--section-headline-font-size);
  font-weight: var(--headline-font-weight);
  line-height: 1.3;
  margin-bottom: var(--headline-margin);
}

.card-title {
  font-size: var(--card-title-font-size);
  font-weight: var(--headline-font-weight);
  line-height: 1.4;
}

.body-text {
  font-size: var(--body-font-size);
  line-height: var(--line-height);
}

.label-text {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
}

.nav {
  display: flex;
  align-items: center;
  padding: var(--nav-padding);
  gap: var(--nav-gap);
}

.nav-link {
  font-size: var(--nav-link-font-size);
  font-weight: var(--nav-link-font-weight);
}
