/* =====================================================
   SPECIALTEA LOUNGE & CAFE - Design System
   Chalkboard-themed tea lounge in Miami, FL
   ===================================================== */

@font-face {
  font-family: "Hobo Std";
  src: url('/assets/fonts/HoboStd.otf') format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ===================
     COLOR PALETTE
     =================== */

  /* Chalkboard Backgrounds */
  --color-chalkboard:       #2b2b2b;
  --color-chalkboard-dark:  #1a1a1a;
  --color-chalkboard-light: #3a3a3a;
  --color-slate:            #4a4a4a;

  /* Chalk Text */
  --color-chalk:            #f0ece4;
  --color-chalk-dim:        #c8c0b4;
  --color-chalk-faint:      #8a8478;
  --color-chalk-bright:     #ffffff;

  /* Tea Green Accents */
  --color-tea-green:        #7fa650;
  --color-tea-green-light:  #9bc26a;
  --color-tea-green-dark:   #5e8035;
  --color-matcha:           #8db96e;

  /* Warm Accents */
  --color-amber:            #d4a04a;
  --color-amber-dim:        #b8883a;
  --color-terracotta:       #c17a4a;
  --color-terracotta-light: #d49060;

  /* Utility */
  --color-overlay:          rgba(26, 26, 26, 0.85);
  --color-overlay-heavy:    rgba(26, 26, 26, 0.95);
  --color-chalk-dust:       rgba(240, 236, 228, 0.06);

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

  /* Font Families */
  --font-display: 'Hobo Std', 'Comic Sans MS', cursive;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Font Sizes - Desktop */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-hero: 6rem;
  --text-hero-sm: 3.5rem;

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

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

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ===================
     LAYOUT
     =================== */

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;

  /* ===================
     BORDERS & RADIUS
     =================== */

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  --border-thin: 1px;
  --border-medium: 2px;
  --border-thick: 4px;

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

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-chalk-glow: 0 0 20px rgba(240, 236, 228, 0.08);
  --shadow-green-glow: 0 0 20px rgba(127, 166, 80, 0.2);

  /* ===================
     TRANSITIONS
     =================== */

  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* ===================
     Z-INDEX SCALE
     =================== */

  --z-behind: -1;
  --z-base: 0;
  --z-above: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-gate: 2000;
  --z-gate-content: 2001;
}

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

@media (max-width: 768px) {
  :root {
    --text-hero: 3.5rem;
    --text-7xl: 3rem;
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }
}

@media (max-width: 480px) {
  :root {
    --text-hero: 2.5rem;
    --text-7xl: 2.25rem;
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
  }
}
