/* Page Structure */
#page-head {
height: var(--header-height);
background-color: black;
}

.header-inner {
    padding: var(--standard-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap; /* keeps mobile-friendly layout */
    gap: 0px;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo img {
    height: 100%;
    width: auto;
    display: block;
    max-width: 100%;
    padding-right: 0.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.logo-text h1 {
    font-size: 1.85rem !important;
}

.logo-text h2 {
    font-size: 1rem !important;
}

.logo-text {
    justify-content: space-between;
}

/* Mobile adjustments */
@media (max-width: 1000px) {
    .header-inner {
        display: flex;
        flex-direction: row;       /* align children in a row */
        align-items: center;       /* vertically center */
        width: 100%;
        gap: 0rem;                 /* optional spacing between items */
    }

    .header-login-container {
        margin-left: auto;         /* push to far right */
        display: flex;             /* keep login buttons in a row */
        gap: 0.5rem;
    }

    .site-logo {
        height: 100%;
    }

    .site-logo img {
        height: 100%; /* constrained by max-height of container */
        display: block;
    }

    .title {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .logo-text h1 {
        font-size: 1.5rem !important;
    }

    .logo-text h2 {
        font-size: 0.82rem !important;
    }

}


#page-navigation{
}

#breadcrum{
}

#page-body{
}

#page-footer{
}
