/* 
   💎 BLIOOFY BRANDING SYSTEM
   Official centralized assets for the Neural Elite identity
*/

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

:root {
    --brand-orange: #ff6b00;        /* Orange Primary */
    --brand-orange-light: #ff8c00;  /* Orange Light */
    --brand-orange-dark: #ff5500;   /* Orange Dark */
    --brand-font: 'Outfit', sans-serif;
}

/* --- OFFICIAL BRAND SYMBOL (PORTAL CONCEPT) --- */
.brand-symbol {
    width: 32px;
    height: 32px;
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Outer Arc */
.brand-symbol::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 28px;
    border: 3.5px solid var(--brand-orange);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    top: 2px;
}

/* Inner Arc */
.brand-symbol::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 18px;
    border: 2.5px solid var(--brand-orange-light);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    top: 9px;
}

/* Central Point */
.brand-symbol .portal-core {
    width: 6px;
    height: 6px;
    background: var(--brand-orange-light);
    border-radius: 50%;
    position: absolute;
    top: 15px;
}

/* --- LOGO TEXT --- */
.brand-logo-text {
    font-family: var(--brand-font);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: inherit;
    margin: 0;
    line-height: 1;
}

/* Size Variants */
.brand-logo-sm { font-size: 18px; }
.brand-logo-md { font-size: 24px; }
.brand-logo-lg { font-size: 32px; }
.brand-logo-xl { font-size: 48px; }

/* Font Utilities for Headlines */
.font-brand {
    font-family: var(--brand-font) !important;
}

.text-brand {
    color: var(--brand-orange) !important;
}

/* --- BRAND ICONS SYSTEM --- */
.brand-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Navigation Icons Specifics */
.nav-icon-custom {
    width: 26px;
    height: 26px;
    color: var(--text-muted);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.active .nav-icon-custom {
    color: var(--brand-orange);
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* Stroke animations for a 'portal' feel */
.nav-icon-custom path, 
.nav-icon-custom circle, 
.nav-icon-custom rect, 
.nav-icon-custom line {
    stroke: currentColor;
    transition: stroke 0.2s ease;
}

.active .nav-icon-custom .accent-path {
    stroke: var(--brand-orange-light);
}
