/**
 * Ora Ventures Theme
 *
 * Light-mode-first consulting firm aesthetic.
 * Warm beige backgrounds, bold accent colors, Aspekta typography.
 */

/* =============================================================================
   FONT FACES
   ============================================================================= */

@font-face {
  font-family: "Aspekta";
  src: url("/fonts/AspektaVF.woff2") format("woff2-variations");
  font-weight: 50 1000;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   ORA THEME TOKENS
   ============================================================================= */

[data-theme="ora"] {
  /* ==========================================================================
     COLORS — Light mode default
     ========================================================================== */

  /* Backgrounds — warm beige */
  --st-bg: #FAF7F2;
  --st-bg-surface: #F3EDE4;
  --st-bg-surface-hover: #EDE5D8;
  --st-bg-elevated: #FFFFFF;

  /* Text — dark */
  --st-text: #1A1A1A;
  --st-text-muted: #5C5C5C;
  --st-text-subtle: #999999;
  --st-text-light: #FFFFFF;

  /* Accent — coral */
  --st-accent: #E85D4A;
  --st-accent-light: #F07A6A;
  --st-accent-dark: #C74A39;
  --st-accent-glow: rgba(232, 93, 74, 0.15);

  /* Ora-specific bold accents */
  --ora-coral: #E85D4A;
  --ora-navy: #1B2D4F;
  --ora-sage: #6B8F71;
  --ora-ochre: #D4983B;

  /* Borders */
  --st-border: rgba(26, 26, 26, 0.08);
  --st-border-strong: rgba(26, 26, 26, 0.16);

  /* ==========================================================================
     SPACING
     ========================================================================== */

  --st-space-xs: 0.5rem;     /* 8px */
  --st-space-sm: 1rem;       /* 16px */
  --st-space-md: 2rem;       /* 32px */
  --st-space-lg: 4rem;       /* 64px */
  --st-space-xl: 7.5rem;     /* 120px */
  --st-space-2xl: 10rem;     /* 160px */

  /* ==========================================================================
     BORDER RADIUS
     ========================================================================== */

  --st-radius-sm: 4px;
  --st-radius-md: 8px;
  --st-radius-lg: 16px;
  --st-radius-xl: 24px;
  --st-radius-full: 999px;

  /* ==========================================================================
     TYPOGRAPHY
     ========================================================================== */

  /* Font Families — Aspekta variable */
  --st-font-display: "Aspekta", system-ui, -apple-system, sans-serif;
  --st-font-sans: "Aspekta", system-ui, -apple-system, sans-serif;

  /* Type scale */
  --st-text-hero: clamp(3rem, 8vw, 5.5rem);
  --st-text-h1: clamp(2.25rem, 5vw, 3.5rem);
  --st-text-h2: clamp(1.75rem, 3.5vw, 2.5rem);
  --st-text-h3: clamp(1.25rem, 2vw, 1.5rem);
  --st-text-body-lg: 1.125rem;
  --st-text-body: 1rem;
  --st-text-small: 0.875rem;
  --st-text-caption: 0.75rem;

  /* ==========================================================================
     SHADOWS
     ========================================================================== */

  --st-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --st-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --st-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);

  /* ==========================================================================
     ANIMATION TIMING
     ========================================================================== */

  --st-duration-fast: 200ms;
  --st-duration-normal: 400ms;
  --st-duration-slow: 600ms;
  --st-duration-reveal: 800ms;

  --st-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --st-ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --st-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* =============================================================================
   GLOBAL RESETS FOR ORA THEME
   ============================================================================= */

[data-theme="ora"] {
  background: var(--st-bg);
  color: var(--st-text);
  font-family: var(--st-font-sans);
  font-size: var(--st-text-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* =============================================================================
   RESPONSIVE TOKEN OVERRIDES
   ============================================================================= */

@media (max-width: 1024px) {
  [data-theme="ora"] {
    --st-space-lg: 3rem;
    --st-space-xl: 5rem;
  }
}

@media (max-width: 768px) {
  [data-theme="ora"] {
    --st-space-lg: 2rem;
    --st-space-xl: 3.5rem;
  }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
  [data-theme="ora"] *,
  [data-theme="ora"] *::before,
  [data-theme="ora"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
