/**
 * CSS Variables - Slot45 Indonesia
 * Color Palette: Rose (#BE185D), Navy (#0F172A), Gold (#F59E0B)
 */

:root {
    /* Primary Colors */
    --color-primary: #BE185D;
    --color-primary-dark: #9D174D;
    --color-primary-light: #DB2777;
    --color-primary-rgb: 190, 24, 93;

    /* Secondary Colors */
    --color-secondary: #0F172A;
    --color-secondary-dark: #080D18;
    --color-secondary-light: #1E293B;
    --color-secondary-rgb: 15, 23, 42;

    /* Accent Colors */
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;
    --color-accent-light: #FCD34D;
    --color-accent-rgb: 245, 158, 11;

    /* Background Colors */
    --color-bg: #F9F7F4;
    --color-bg-dark: #EDE9E4;
    --color-bg-light: #FFFFFF;
    --color-bg-card: #FFFFFF;
    --color-bg-header: #0F172A;
    --color-bg-footer: #060913;

    /* Text Colors */
    --color-text: #1A1A2E;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    --color-text-white: #FFFFFF;
    --color-text-on-primary: #FFFFFF;
    --color-text-on-secondary: #FFFFFF;

    /* Typography */
    --font-family-heading: 'Exo 2', 'Segoe UI', sans-serif;
    --font-family-body: 'Nunito', 'Helvetica Neue', sans-serif;
    --font-family-mono: 'Courier New', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

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

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --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.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 10px 40px rgba(190, 24, 93, 0.2);
    --shadow-glow-primary: 0 0 30px rgba(190, 24, 93, 0.5);
    --shadow-glow-accent: 0 0 30px rgba(245, 158, 11, 0.5);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --header-height: 70px;
    --header-top-bar: 40px;
    --total-header-height: 110px;
    --footer-min-height: 200px;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}
