/* public_html/assets/css/executive.css */

:root {
    --exec-bg: #050505;
    --exec-card: #141414; /* Slightly brightened card for better depth */
    --exec-border: #2e2e2e; /* Visible border */
    --exec-gold: #d4af37;
    --exec-gold-hover: #b5952f;
    --exec-text: #ffffff;
    --exec-muted: #a3a3a3; /* MUCH lighter grey for high contrast and readability */
}

body.executive-theme { 
    background-color: var(--exec-bg); 
    color: var(--exec-text); 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
}

body.executive-auth {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh;
}

/* --- THE FIX: Force Bootstrap to use our readable light grey --- */
.text-muted {
    color: var(--exec-muted) !important;
}

/* --- AUTHENTICATION CARDS --- */
.executive-card { 
    background: var(--exec-card); 
    border: 1px solid var(--exec-border); 
    border-radius: 12px; 
    padding: 3rem; 
    width: 100%; 
    max-width: 450px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.9); 
}

/* Improve Input Box Visibility */
.executive-card .form-control { 
    background: #0a0a0a; 
    border: 1px solid #3a3a3a; /* Lighter border so the box is clearly visible */
    color: var(--exec-text); 
    border-radius: 6px; 
    padding: 0.8rem 1rem; 
}

.executive-card .form-control:focus { 
    background: #000000; 
    border-color: var(--exec-gold); 
    color: var(--exec-text); 
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25); 
    outline: none;
}

.brand-logo { 
    color: var(--exec-gold); 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}

/* --- DASHBOARD ELEMENTS --- */
.executive-nav { 
    background: rgba(17, 17, 17, 0.9); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--exec-border);
    padding: 1.2rem 2rem; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.stat-card { 
    background: var(--exec-card); 
    border: 1px solid var(--exec-border); 
    border-radius: 12px; 
    padding: 2rem; 
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--exec-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* --- BUTTONS & LINKS --- */
.btn-gold { 
    background: var(--exec-gold); 
    color: #000; 
    border: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    padding: 0.8rem; 
    border-radius: 6px; 
    transition: all 0.3s; 
}

.btn-gold:hover { 
    background: var(--exec-gold-hover); 
    color: #000;
    transform: translateY(-1px);
}

.btn-gold-outline {
    border: 1px solid var(--exec-gold);
    color: var(--exec-gold);
    background: transparent;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-gold-outline:hover {
    background: var(--exec-gold);
    color: #000;
}

.text-gold { color: var(--exec-gold) !important; }

/* The "Lost Clearance?" Link Fix */
.text-gold-hover {
    color: var(--exec-muted);
    transition: color 0.2s;
}
.text-gold-hover:hover {
    color: var(--exec-gold);
}