/* ============================================================
   SAENGER PHOTOGRAPHY - PREMIUM CLIENT PORTAL (FINAL)
   ============================================================ */

/* --- 1. GLOBAL THEME VARIABLES --- */
:root {
    --primaryColor: #777777 !important;    /* Muted Gray for Icons/Actions */
    --background: #0f1113 !important;      /* Deep Darkroom Background */
    --surfacePrimary: #1a1c1e !important;  /* Folder Card Background */
    --sideBarColor: #151719 !important;
    --headerColor: #1a1c1e !important;
}

/* --- 2. THE LOGIN EXPERIENCE --- */
#login {
    background: url('img/bg.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
}

#login form {
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 12px !important;
    padding: 50px 45px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#login form img {
    height: 70px !important;
    width: auto !important;
    margin-bottom: 20px !important;
}

#login form h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 300 !important;
    color: #111 !important;
    margin-bottom: 35px !important;
    letter-spacing: 1px !important;
}

#login .button {
    background-color: #111 !important; 
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 18px !important;
}

/* --- 3. INTERNAL DASHBOARD (THE GALLERY VIEW) --- */

/* Force Global Dark Mode */
body, main, #listing, .dashboard, #sidebar, header {
    background-color: var(--background) !important;
    color: #eeeeee !important;
}

/* Modernize Folder Icons (Mute the Blue) */
.item i.material-icons, .item .icon i {
    color: var(--primaryColor) !important;
    font-size: 52px !important;
}

/* Portfolio Card Styling */
.item {
    background-color: var(--surfacePrimary) !important;
    border: 1px solid #2d2f31 !important;
    border-radius: 12px !important;
    margin: 12px !important;
    padding: 24px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.item:hover {
    background-color: #242628 !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7) !important;
    border-color: #555 !important;
}

/* Typography and Metadata */
.item .name {
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-top: 12px !important;
}

.item .metadata {
    color: #777 !important;
}

/* UI Cleanup */
#sidebar footer, .help, .action#help-action {
    display: none !important;
}

header {
    border-bottom: 1px solid #252729 !important;
}

#search {
    background: #1a1c1e !important;
    border-radius: 6px !important;
}
