/* 
   Hotel JM Ferreira - Design Tokens
   This file contains all the design tokens including color palette, 
   typography, spacing, and transition constants.
*/


:root {
  /* Color Tokens */
  --color-primary: #1D6F7D;       /* Teal - Background & brand identity */
  --color-accent: #C47817;        /* Orange/Gold - Primary actions and emphasis */
  --color-white: #FFFFFF;         /* White - Text & clean spaces */
  --color-black: #000000;         /* Black - Deep contrast */
  
  /* Lighter/Darker variants for interactions */
  --color-primary-dark: #144E58;
  --color-primary-light: #268C9E;
  --color-accent-dark: #A5630F;
  --color-accent-light: #DF8C21;
  --color-gray-dark: #1A1A1A;
  --color-gray-medium: #888888;
  --color-gray-light: #F4F6F6;

  /* Font Families */
  --font-family-title: 'Fraunces', Georgia, serif;
  --font-family-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-button: var(--font-family-body);

  /* Font Sizes & Line Heights (Tokens as requested) */
  --font-size-hero: 68px;
  --line-height-hero: 1.0;        /* 100% */
  
  --font-size-body: 24px;
  --line-height-body: 1.0;        /* 100% */

  --font-size-button: 18px;
  --font-weight-button: 700;      /* Bold */

  /* Extra typographic utility sizes for readability */
  --font-size-h2: 42px;
  --font-size-h3: 28px;
  --font-size-base: 16px;
  --font-size-small: 14px;
  
  --line-height-base: 1.5;

  /* Spacing System */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --spacing-section: 96px;

  /* Layout Boundaries */
  --max-width-container: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Elevation (Shadows) */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}
