/* ========================================
   WHMCS Corporate Theme - CSS Variables
   Kurumsal Mavi Renk Paleti
   ======================================== */

:root {
    /* Ana Renkler - Kurumsal Mavi */
    /* Ana Renkler - Narhost Red */
    --primary-color: #e30613;
    --primary-dark: #b90510;
    --primary-light: #ff4d58;
    --primary-accent: #cc0611;

    /* Durum Renkleri */
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #e30613;
    --info-color: #17A2B8;

    /* Gri Tonları */
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;

    /* Metin Renkleri */
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --text-muted: #ADB5BD;
    --text-white: #FFFFFF;

    /* Arka Plan Renkleri */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #212529;
    --bg-primary: #e30613;

    /* Border Renkleri */
    --border-color: #DEE2E6;
    --border-light: #E9ECEF;
    --border-primary: #e30613;

    /* Gölge Efektleri */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-primary: 0 0.5rem 1rem rgba(227, 6, 19, 0.25);

    /* Tipografi */
    --font-family-base: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Inter', sans-serif;

    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 500;
    --font-weight-bold: 700;

    --line-height-base: 1.5;
    --line-height-heading: 1.2;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;

    /* Transition */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}