/* ==========================================================================
   FOOD HACKERS LAB - CENTRALIZED DESIGN TOKENS
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-primary: #F9B432;
    --color-primary-rgb: 249, 180, 50;
    --color-primary-hover: #e0a324;
    
    --color-secondary: #269B54;
    --color-secondary-rgb: 38, 155, 84;
    --color-secondary-hover: #1d7e43;

    /* Text & Background Palette */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text-main: #262626;
    --color-text-muted: #666666;
    --color-text-light: #CCCCCC;
    
    --color-footer-bg: #262626;
    --color-footer-border: rgba(255, 255, 255, 0.4);

    /* Typography */
    --font-primary: 'Galano Grotesque', Arial, Helvetica, sans-serif;
    --font-alt: 'Galano Grotesque Alt', 'Galano Grotesque', Arial, Helvetica, sans-serif;
    --font-space-grotesk: 'Space Grotesk', sans-serif;

    /* Font Weights */
    --fw-thin: 100;
    --fw-extralight: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;

    /* Transitions & Animations */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.25s ease-in-out;
    --transition-slow: 0.4s ease-in-out;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50rem;
    --radius-circle: 50%;

    /* Layout & Container Dimensions */
    --header-height: 90px;
    
    /* Z-index Scale */
    --z-back: -1;
    --z-normal: 1;
    --z-header: 1000;
    --z-offcanvas: 1050;
    --z-modal: 1060;
}
