/* ==========================================================================
   Lokality Design System - Base & Brand Tokens
   Refined palette directly aligned with taste/ assets (lokality_logo_w_bg.png, sr.png, s2.jpeg, ss.jpeg)
   ========================================================================== */

@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 Core Palette (from Lokality Logo Pin & taste/sr.png) */
  --brand-primary: #128054;
  --brand-primary-hover: #0D6843;
  --brand-primary-light: #EAF6F0;
  --brand-primary-subtle: #F2F9F5;
  --brand-primary-glow: rgba(18, 128, 84, 0.2);

  /* Deep Forest Neutral (Wordmark and Primary Text) */
  --brand-dark: #0D1F18;
  --brand-dark-soft: #18332A;

  /* Restrained Awning Accent (used sparingly for highlight pills/notices) */
  --brand-accent: #D97706;
  --brand-accent-light: #FEF7EE;
  --brand-accent-subtle: #FDF3E6;

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

  /* Neutrals & Surfaces (Clean, disciplined, high-end) */
  --bg-page: #F7FAF8;
  --bg-surface: #FFFFFF;
  --bg-surface-soft: #F2F6F4;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAFCFA;

  /* Borders */
  --border-subtle: #E3E9E5;
  --border-card: #DEE6E1;
  --border-focus: #128054;

  /* Typography Colors */
  --text-primary: #0D1F18;
  --text-secondary: #475C53;
  --text-muted: #6B8076;
  --text-light: #94A69F;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(13, 31, 24, 0.04);
  --shadow-sm: 0 2px 6px 0 rgba(13, 31, 24, 0.05), 0 1px 2px -1px rgba(13, 31, 24, 0.04);
  --shadow-md: 0 8px 20px -4px rgba(13, 31, 24, 0.07), 0 3px 8px -2px rgba(13, 31, 24, 0.04);
  --shadow-lg: 0 16px 32px -6px rgba(13, 31, 24, 0.08), 0 6px 16px -4px rgba(13, 31, 24, 0.04);
  --shadow-wa: 0 8px 24px -2px rgba(37, 211, 102, 0.35);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

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

  /* Responsive Dimensions */
  --container-max-width: 1200px;
}

/* Reset & Base */
*, *::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;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main App Wrapper: Fluid and fully responsive across mobile & web */
.app-container {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  line-height: 1.15;
  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;
}

/* Utility Section Container with fluid padding */
.content-wrapper {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 480px) {
  .content-wrapper {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .content-wrapper {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .content-wrapper {
    padding: 0 40px;
  }
}
