/* *****************************************************
    Devatnet Brand Styling
    Colors matched to devatnet.co / devatnet.com
***************************************************** */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Primary - Devatnet Blue/Teal */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    --primary-950: #082f49;

    /* Primary colors */
    --primary: #0284c7;
    --primary-lifted: #0369a1;
    --primary-accented: #075985;

    /* Secondary colors */
    --secondary: #4b5563;
    --secondary-lifted: #374151;
    --secondary-accented: #1f2937;

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #0ea5e9;
    --info-lifted: #0284c7;
    --info-accented: #0369a1;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #eab308;
    --warning-lifted: #ca8a04;
    --warning-accented: #a16207;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: #1f2937;
    --grayscale-lifted: #374151;
    --grayscale-accented: #4b5563;

    /* Neutral colors */
    --neutral: #6b7280;
    --neutral-lifted: #4b5563;
    --neutral-accented: #374151;

    /* Text colors */
    --text-inverted: var(--white);
    --text-muted: #9ca3af;
    --text-lifted: #6b7280;
    --text-accented: #4b5563;
    --text: #1f2937;

    /* Border colors */
    --border-muted: #e4e4e7;
    --border: #d0d5dd;
    --border-lifted: #9ca3af;
    --border-accented: #4b5563;

    /* Background colors */
    --bg: var(--white);
    --bg-muted: #f9fafb;
    --bg-lifted: #f3f4f6;
    --bg-accented: #e4e4e7;
    --bg-inverted: #1f2937;

    /* Yellow accents - Devatnet */
    --yellow-200: #fef08a;
    --yellow-300: #facc15;
    --teal-300: #38bdf8;
    --teal-400: #0ea5e9;

    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* Font override to Inter */
body,
.main-content,
.navbar,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Navbar branding */
.navbar {
    background: linear-gradient(135deg, #0284c7, #0369a1, #0c4a6e) !important;
}

/* Primary buttons */
.btn-primary {
    background-color: #0284c7 !important;
    border-color: #0284c7 !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #0369a1 !important;
    border-color: #0369a1 !important;
}

/* Links */
a {
    color: #0284c7;
}
a:hover {
    color: #0369a1;
}

/* Footer */
.footer-upper {
    background-color: #1f2937 !important;
}
.footer-lower {
    background-color: #111827 !important;
}
