﻿/*
    dashboard-theme.css - A sleek, modern dashboard theme with a gold and 
    black color scheme, featuring angled elements for a dynamic look. 
    Designed for data visualization and user interfaces in web applications.

    copyright (c) 2009-2026 Software Factories of America. 
    All rights reserved.
*/

/* main layout */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Georgia, "Times New Roman", serif;
    /*background: linear-gradient( 180deg, #6a6965 0%, #2a2a2a 55%, #000000 100% );*/
}

.dashboard-bg {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 100vh;
}

.left-nav {
    position: relative;
    width: 320px;
    padding: 1.5rem;
    background: linear-gradient(to bottom, #000, #000);
    /*border-right: 2px solid white;*/
    background-color: whitesmoke;
}

.dashboard-main {
    position: relative;
    z-index: 1;
    padding: 55px 80px;
    background: whitesmoke;
    background: linear-gradient(to bottom, #000, #000);
}

.logo {
    font-size: clamp(2.4rem, 3vw, 3.8rem);
    white-space: nowrap;
    color: #f3c84b;
    margin: 0 0 24px 0;
}

.angled {
    transform: skewY(-20deg);
    transform-origin: top left;
}

.unangled {
    transform: skewY(20deg);
}

.dashboard-main {
    flex: 1;
    padding: 2rem;
}

.metric-tile {
    border: 2px solid white;
    padding: 1rem;
    text-align: center;
}

.gold-gradient {
    background: linear-gradient(to bottom, #FACD5D, #F4B10B 50%, #CC9712);
}

.green-gradient {
    background: linear-gradient(to bottom, #3EBD13, #1D5908 50%, #2C6E15);
}

/* Gold Highlight Line */
.title-line {
    width: 500px;
    height: 2px;
    margin-bottom: 20px;
    background: linear-gradient( 90deg, #f0c84b, rgba(240,200,75,.2) );
}

/* hello world title*/
.page-title {
    color: #f0c84b;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,215,0,.25);
}

/* Main content area */
.dashboard-main {
    flex: 1;
    padding-top: 50px;
    padding-left: 80px;
}

/* Navigation Buttons */
.nav-button {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 250px;
    height: 58px;
    margin-bottom: 18px;
    padding-left: 25px;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    background: linear-gradient( 180deg, rgba(20,20,20,.95), rgba(0,0,0,.95) );
    border: 2px solid rgba(255,255,255,.8);
    transform: skewX(0)skewY(-12deg);
    box-shadow: 0 0 15px rgba(0,0,0,.4);
}

/* Keep Text Straight */
    .nav-button span,
    .nav-button i,
    .nav-button svg {
        transform: skewX(0)skewY(0);
    }

/* Gold Dividers */
.gold-divider {
    height: 2px;
    width: 300px;
    margin-bottom: 40px;
    background: linear-gradient( 90deg, transparent, #f0c84b, #f0c84b, transparent );
}

.gold-divider-angle {
    height: 2px;
    width: 260px;
    margin-bottom: 40px;
    background: linear-gradient( 90deg, transparent, #f0c84b, #f0c84b, transparent );
    transform: skewX(0)skewY(-12deg);
}

/* gold title */
.logo {
    color: #f0c84b;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255,215,0,.2);
}

.gold-divider,
.title-line {
    position: relative;
    height: 2px;
    background: linear-gradient( 90deg, #f3c84b, rgba(243, 200, 75, 0.2), transparent );
}

    .gold-divider::before,
    .title-line::before {
        content: "✦";
        position: absolute;
        left: -10px;
        top: -15px;
        color: #ffd84d;
        font-size: 24px;
        text-shadow: 0 0 10px #ffd84d;
    }

.hero-header {
    margin-bottom: 1rem;
}

.hero-header-angle {
    margin-bottom: 1rem;
    transform: skewX(0)skewY(-12deg);
}

.hero-logo {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-logo-angle {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
    transform: skewX(0)skewY(-12deg);
}

.copyright-angle {
    font-family: Tahoma, sans-serif;
    font-size: 10px;
    color: #888;
    transform: skewX(0)skewY(-12deg);
}

