/* ==========================================================================
   AcadsVue Schools - Design System
   "Light Blue & Slate" Theme
   ========================================================================== */

:root {
    /* Color System - Light Blue Palette */
    --bg-base: #F0F6FC;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-elevated: #E0F2FE;
    --accent-blue: #0284C7;
    --accent-blue-dark: #0369A1;
    --accent-sky: #38BDF8;
    --accent-navy: #0F172A;
    --accent-indigo: #4338CA;
    --gradient-primary: linear-gradient(135deg, #38BDF8 0%, #0284C7 50%, #0369A1 100%);
    --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
    --gradient-accent: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --border-blue: #BAE6FD;
    --border-focus: rgba(2, 132, 199, 0.4);
    --shadow-sm: 0 2px 8px rgba(2, 132, 199, 0.06);
    --shadow-md: 0 10px 30px -5px rgba(2, 132, 199, 0.12);
    --shadow-lg: 0 20px 45px -10px rgba(2, 132, 199, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-ui: 'Lora', Georgia, 'Times New Roman', serif;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
    --font-brand: 'BeauRivage-Regular', cursive;
}

/* Local Offline Font-Face Declarations */
@font-face {
    font-family: 'BeauRivage-Regular';
    src: url('../fonts/BeauRivage-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lora', Georgia, serif !important;
    background-color: var(--bg-base);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

/* Hide Scrollbars Globally While Retaining Scroll Capability */
* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    display: none !important;
}

.brand-acads-vue {
    font-family: 'BeauRivage-Regular', cursive !important;
}

#page-content-wrapper {
    position: relative;
    z-index: 1;
    overflow-y: auto;
    flex: 1;
    background-color: var(--bg-base);
}

.saas-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid var(--border-blue);
    padding: 0.8rem 2rem !important;
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
}
