/* ===================================
   GrowBit HR - Global Theme Styles
   Segoe UI Font & Dark Blue Theme
   =================================== */

/* Font Face Declarations */
@font-face {
    font-family: 'Segoe UI';
    src: url('/storage/fonts/segoeuithis.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/storage/fonts/segoeuithisi.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/storage/fonts/segoeuithibd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/storage/fonts/segoeuithisz.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Theme Colors - BestEdu Blue-Green Gradient Theme */
:root {
    /* Primary Colors - Blue-Green Gradient Theme */
    --primary-dark: #0ea5e9;
    --primary: #06b6d4;
    --primary-light: #10b981;
    --primary-lighter: #34d399;
    --primary-lightest: #6ee7b7;
    
    /* Secondary Colors */
    --secondary-dark: #0c4a6e;
    --secondary: #0891b2;
    --secondary-light: #14b8a6;
    
    /* Accent Colors */
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    
    /* Success Colors */
    --success: #10b981;
    --success-light: #34d399;
    
    /* Orange Accent for CTAs */
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e55a2b;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
    --gradient-primary-light: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.05);
    --shadow-md: 0 4px 6px rgba(30, 58, 95, 0.1);
    --shadow-lg: 0 10px 25px rgba(30, 58, 95, 0.15);
    --shadow-xl: 0 20px 40px rgba(30, 58, 95, 0.2);
    
    /* Font Family */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

/* Global Font Styles */
body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-primary);
    font-weight: 600;
}

p, span, a, li, label, input, textarea, select, button {
    font-family: var(--font-primary);
}

/* Override any other font declarations */
.navbar-brand,
.count-title,
.pricing-title,
.section-title,
.modal-title,
.card-title {
    font-family: var(--font-primary);
}

/* Primary Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-primary-light);
    box-shadow: var(--shadow-md);
}

/* Outline Button Styles */
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Link Styles */
a {
    color: var(--primary);
}

a:hover {
    color: var(--primary-light);
}

/* Form Focus States */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Badge Styles */
.badge.bg-primary {
    background: var(--primary) !important;
}

/* Progress Bar */
.progress-bar {
    background: var(--gradient-primary);
}

/* Selection Color */
::selection {
    background: var(--primary-lighter);
    color: white;
}

::-moz-selection {
    background: var(--primary-lighter);
    color: white;
}

