/* ==========================================================================
   Lokality Design System - Base & Brand Tokens
   Extracted directly from Lokality Brand Assets (lokality_logo.png & lokality_logo_brand.png)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand Primary Palette (From Lokality Pin Logo) */
  --brand-green: #1F9158;          /* Vibrant Emerald Pin Green */
  --brand-green-hover: #167946;    /* Deep Emerald on hover */
  --brand-green-light: #EBF7EE;    /* Soft Mint Green background */
  --brand-green-subtle: #F2FAF5;   /* Ultra-light green wash */
  
  /* Brand Wordmark & Typography Colors */
  --brand-dark: #0B3029;           /* Deep Forest Green from Brand Wordmark */
  --brand-dark-soft: #14433A;      /* Medium Deep Forest */

  /* Brand Secondary / Awning & Sun Rays Accents */
  --brand-amber: #F8A92C;          /* Awning Sun Gold */
  --brand-amber-hover: #E5951E;
  --brand-amber-light: #FEF7EA;    /* Gentle Warm Cream */
  --brand-orange: #E86326;         /* Awning Warm Orange */
  --brand-orange-light: #FDF2EB;

  /* WhatsApp Brand Color */
  --wa-green: #25D366;
  --wa-green-hover: #20BA5A;
  --wa-dark: #075E54;
  --wa-light: #E7FCE8;

  /* Neutrals & Surfaces */
  --bg-page: #F4F7F5;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-tint-warm: #FAF8F4;         /* Warm background for final CTA & quotes */
  --border-subtle: #E8EDE9;
  --border-card: #E4EAE6;
  --border-warm: #F0E6D2;

  --text-primary: #0B3029;
  --text-secondary: #4A5E55;
  --text-muted: #72857C;
  --text-light: #9BB0A7;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(11, 48, 41, 0.04);
  --shadow-sm: 0 2px 5px 0 rgba(11, 48, 41, 0.06), 0 1px 2px -1px rgba(11, 48, 41, 0.04);
  --shadow-md: 0 6px 14px -3px rgba(11, 48, 41, 0.07), 0 2px 6px -2px rgba(11, 48, 41, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(11, 48, 41, 0.08), 0 4px 10px -4px rgba(11, 48, 41, 0.04);
  --shadow-wa: 0 8px 24px -2px rgba(37, 211, 102, 0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Dimensions */
  --app-max-width: 520px;          /* Matches mobile app experience in image.png */
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* Centered App Container matching image.png */
.app-container {
  width: 100%;
  max-width: var(--app-max-width);
  background-color: #FFFFFF;
  min-height: 100vh;
  box-shadow: 0 0 35px rgba(11, 48, 41, 0.07);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
