/* ==========================================================
   THE WARSMITH
   Layout
========================================================== */

.app {
    display: flex;
    min-height: 100vh;
}

/* ===========================
   Sidebar
=========================== */

.sidebar {

    width: 280px;

    height: 100vh;

    position: sticky;

    top: 0;

    background: var(--dark-iron);

    display: flex;

    flex-direction: column;

    border-right: 1px solid var(--gunmetal);

    padding: 32px 20px;

}

.sidebar-header {
    text-align: center;

    margin-bottom: 36px;

    padding-bottom: 32px;

    border-bottom: 1px solid var(--gunmetal);
}

/* ===========================
   Sidebar Branding
=========================== */

.sidebar-icon {

    width: 84px;

    height: 84px;

    display: block;

    margin: 0 auto 8px;

    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(0,0,0,.35);

}
/* ===========================
   Navigation
=========================== */

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;

    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 14px 18px;

    color: var(--bright-steel);

    text-decoration: none;

    border-radius: var(--border-radius);

    transition: var(--transition-speed);

    font-weight: 600;
}

.nav-item:hover {
    background: var(--gunmetal);

    color: var(--forge-orange);
}

.nav-item.active {
    background: var(--gunmetal);

    color: var(--forge-orange);
}

.nav-item span {
    width: 24px;

    text-align: center;

    font-size: 1.1rem;
}

/* ===========================
   Footer
=========================== */

.sidebar-footer {
    border-top: 1px solid var(--gunmetal);

    padding-top: 20px;

    display: flex;
    flex-direction: column;

    gap: 6px;

    margin-top: auto;
}

.sidebar-footer strong {
    color: var(--bright-steel);
}

.sidebar-footer small {
    color: var(--steel);
}

/* ===========================
   Main Content
=========================== */

.content {
    flex: 1;

    padding: 24px 48px 48px;

    overflow-y: auto;
}
/* ===========================
   Material Symbols
=========================== */

.material-symbols-rounded {

    font-size: 20px;

    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;

}
/* ============================
   Page Header
============================ */

.page-header {
    text-align: center;
    padding-top: 0rem;
}

.page-wordmark {
    display: block;
    width: min(550px, 90%);
    height: auto;
    margin: 0 auto 0.25rem;
}