/* CSS Custom Properties - Variables */

/* ========================================
   COLOR PALETTE - Rustic-Chic Mediterranean
   ======================================== */

/* Earth tones from restaurant interior */
:root {
    /* Primary colors */
    --color-sea-blue: #2E86AB;         /* Adriatic Sea - primary brand color */
    --color-sea-blue-light: #4A9DCC;   /* Lighter sea blue */
    --color-sea-blue-dark: #1F6A8A;    /* Darker sea blue */
    --color-beige: #F5F0E8;            /* Warm wall/stone background */
    --color-tan: #D4C4A8;              /* Natural stone, wood accents */
    --color-brown: #8B7355;            /* Darker wood, slate color */
    --color-brown-dark: #5C4A3A;       /* Darkest wood, text primary */

    /* Vibrant food accents */
    --color-green: #7CB342;            /* Fresh herbs, vegetables */
    --color-red: #C62828;              /* Tomato, meat accents */
    --color-yellow: #FBC02D;           /* Cheese, pasta accents */

    /* UI colors */
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray-light: #F5F5F5;
    --color-gray: #E0E0E0;
    --color-gray-medium: #9E9E9E;
    --color-gray-dark: #616161;

    /* Text colors */
    --color-text-primary: #2C2C2C;     /* Primary text */
    --color-text-secondary: #5A5A5A;   /* Secondary text */
    --color-text-muted: #7A7A7A;       /* Muted text */
    --color-text-light: #FFFFFF;       /* Light text on dark backgrounds */

    /* Background colors */
    --color-background: #FAF8F5;       /* Main background */
    --color-background-alt: #FFFFFF;   /* Alternate background */

    /* Status colors */
    --color-success: #7CB342;          /* Open/Available */
    --color-error: #C62828;            /* Closed/Error */
    --color-warning: #FBC02D;          /* Warning */

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

    /* Font families */
    --font-display: 'Playfair Display', serif;      /* Headings */
    --font-body: 'Lato', sans-serif;                 /* Body text */
    --font-script: 'Dancing Script', cursive;        /* Handwritten accents */

    /* Font sizes */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    --font-size-6xl: 3.75rem;     /* 60px */
    --font-size-7xl: 4.5rem;      /* 72px */

    /* Mobile font sizes (larger for readability) */
    --font-size-mobile-base: 1.125rem;  /* 18px */
    --font-size-mobile-lg: 1.25rem;     /* 20px */

    /* Line heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;

    /* Font weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;

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

    /* Spacing scale */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-2xl: 3rem;      /* 48px */
    --spacing-3xl: 4rem;      /* 64px */
    --spacing-4xl: 6rem;      /* 96px */
    --spacing-5xl: 8rem;      /* 128px */

    /* Section spacing */
    --section-spacing: var(--spacing-4xl);    /* 96px */
    --section-spacing-mobile: var(--spacing-3xl);  /* 64px */

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

    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--spacing-lg);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);

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

    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* ========================================
       Z-INDEX LAYERS
       ======================================== */

    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}
