/* Auto-generated by scripts/build-base-css.ts — do not edit by hand. */

/*
 * Chivo Base — Design System Foundation
 *
 * Three-layer CSS model:
 *   1. chivo-base.css  — design system foundation (this file, package-owned)
 *   2. styles.css      — theme personality (user-owned after init)
 *   3. custom.css      — user overrides (always user-owned)
 */

/* =========================================================================
 * CSS Custom Properties
 * ========================================================================= */

:root {
  /* Default theme values - will be overridden by ProfileThemeService */
  --chivo-bg: #ffffff;
  --chivo-text: #111827;
  --chivo-text-secondary: #4b5563;
  --chivo-accent: #2563eb;
  --chivo-border: #e5e7eb;
  --chivo-link: #2563eb;

  /* Content overlay for readability */
  --chivo-content-bg: #ffffff;


  /* Typography */
  --chivo-font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Layout */
  --chivo-border-radius: 0.25rem;
  --chivo-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --chivo-bg: #111827;
    --chivo-text: #f3f4f6;
    --chivo-text-secondary: #9ca3af;
    --chivo-border: #374151;
    --chivo-content-bg: #111827;
  }
}

/* =========================================================================
 * Base Resets
 * ========================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--chivo-bg);
  background-image: var(--chivo-bg-image);
  background-size: var(--chivo-bg-size);
  background-position: var(--chivo-bg-position);
  background-repeat: var(--chivo-bg-repeat);
  background-attachment: var(--chivo-bg-attachment);
  background-blend-mode: var(--chivo-bg-blend-mode);
  color: var(--chivo-text);
  font-family: var(--chivo-font-family);
  min-height: 100vh;
}

a:hover {
  text-decoration: underline;
}

a:not([class]) {
  color: var(--chivo-link);
}

a:not([class]):hover {
  filter: brightness(0.85);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================================
 * Utility classes
 * ========================================================================= */

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
