/* theme.css - The Master Design File */

:root {
    --primary: #00215E;     /* Royal Navy */
    --accent: #C5A059;      /* Centurion Gold */
    --bg-tint: #F5F7FA;
}

/* 1. THE PREMIUM BACKGROUND */
body {
    background-color: var(--bg-tint) !important;
    /* This creates a subtle 'Bank Note' grid pattern */
    background-image: 
        linear-gradient(rgba(0, 33, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 33, 94, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center top;
}

/* 2. THE CLASSY LOGO */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

/* The Symbol (Shield C) */
.brand-logo svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* The Text */
.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 8px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Sidebar Update to match */
.sidebar {
    box-shadow: 4px 0 20px rgba(0,0,0,0.03);
    border-right: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}