/* ==========================================================================
   PONTOTEL DESIGN SYSTEM - GLOBAL VARIABLES
   ========================================================================== */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=Roboto+Mono&display=swap');

/* ==========================================================================
   COLOR SYSTEM
   ========================================================================== */

/* Primary Brand Colors - Yellow */
:root {
    --color-pontotel-yellow: #FCCC31;
    --color-pontotel-yellow-light: #FDD65F;
    --color-pontotel-yellow-dark: #E8B81E;
    --color-pontotel-yellow-contrast: #000000;

    /* Secondary Brand Colors - Purple */
    --color-pontotel-purple: #79397D;
    --color-pontotel-purple-light: #9556A0;
    --color-pontotel-purple-dark: #5A2B5E;
    --color-pontotel-purple-contrast: #FFFFFF;

    /* System Colors */
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-error: #F44336;
    --color-info: #2196F3;

    /* Grayscale */
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    --color-gray-400: #BDBDBD;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;
    --color-gray-900: #212121;

    /* Backgrounds */
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #FAFAFA;
    --color-bg-dark: #1A1A1A;
}

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

:root {
    /* Font Families */
    --font-family-primary: 'Hanken Grotesk', Tahoma, sans-serif;
    --font-family-monospace: 'Roboto Mono', 'Courier New', monospace;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-md: 1.125rem;
    /* 18px - Pontotel body */
    --font-size-lg: 1.25rem;
    /* 20px */
    --font-size-xl: 1.5rem;
    /* 24px */
    --font-size-2xl: 2rem;
    /* 32px */
    --font-size-3xl: 2.5rem;
    /* 40px */
    --font-size-4xl: 3rem;
    /* 48px */

    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

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

:root {
    --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 */
}

/* ==========================================================================
   BORDER RADIUS
   ========================================================================== */

:root {
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
}

/* ==========================================================================
   SHADOWS
   ========================================================================== */

:root {
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY STYLES
   ========================================================================== */

body,
p,
li {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-md);
    /* 18px */
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
}

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

:root {
    --transition-standard: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}