/* Design Tokens & Theme Variables for Nativa Eco-Retreat */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - Premium Organic Eco-Retreat */
  --color-primary: #1e3d30;       /* Forest Green (Deep, premium, natural) */
  --color-primary-rgb: 30, 61, 48;
  --color-primary-light: #2c5443; /* Medium Forest Green */
  --color-primary-dark: #12251d;  /* Dark Forest Green */
  
  --color-secondary: #c98e67;     /* Terracotta Warm Sand (Elegant accent) */
  --color-secondary-rgb: 201, 142, 103;
  --color-secondary-light: #d6a482;
  --color-secondary-dark: #b0734c;
  
  --color-sage: #889e90;          /* Soft Sage Green */
  --color-sage-light: #b4c4bb;
  
  --color-bg-primary: #fcfbfa;    /* Linen Off-White (Warm background) */
  --color-bg-secondary: #f4efe9;  /* Soft Warm Gray */
  --color-bg-tertiary: #ebe3d9;   /* Deeper Warm Sand Gray */
  --color-bg-glass: rgba(252, 251, 250, 0.8);
  --color-border: #e5ded5;
  
  --color-text-main: #2b302d;     /* Charcoal/Slate Green (High readability) */
  --color-text-muted: #5e6661;    /* Muted Slate Green */
  --color-text-light: #fcfbfa;    /* White/Linen light text */
  
  --color-success: #3e7b5c;
  --color-warning: #d9913c;
  --color-danger: #b33e3e;
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Spacing System */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2.5rem;    /* 40px */
  --space-xxl: 4rem;     /* 64px */
  --space-section: 6rem; /* 96px */
  
  /* Layout Grid & Boundaries */
  --max-width: 1280px;
  --header-height: 80px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows - Premium and Subtle */
  --shadow-sm: 0 2px 8px rgba(30, 61, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(30, 61, 48, 0.08);
  --shadow-lg: 0 16px 40px rgba(30, 61, 48, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(30, 61, 48, 0.06);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dark Mode Overrides */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg-primary: #121815;
    --color-bg-secondary: #1a221e;
    --color-bg-tertiary: #232e29;
    --color-bg-glass: rgba(18, 24, 21, 0.8);
    
    --color-text-main: #f4efe9;
    --color-text-muted: #b4c4bb;
    --color-border: #2c3832;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
  }
}
