/**********************************************************************
 *
 *   style.css
 *   Copyright Skedzy Inc  (c) 2025
 *
 *   Interested in open source, linux development and support to fill
 *   your business needs? See Skedzy.com or contact info@skedzy.com.
 *
 *   This code may be copied, modified and redistributed
 *   as long as it bears the above Skedzy Inc copyright and business
 *   notice.
 *
 *********************************************************************/

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

*,
*:after,
*::before {
/*    -moz-box-sizing: border-box; */
    box-sizing: border-box;
}

/**********************************************************************
 *
 *   specify Happy Monkey font
 *
 *********************************************************************/

@font-face {
    font-family: 'Happy Monkey';
    src: url('HappyMonkey-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/*   assign global colors   */

:root {
    /*   black   */
    /*   white   */
    /*   yellow  */
    --light-green: #99ffcc;
    --logo-green:  #009448;
    --logo-green-trans: #00944844;
    --dark-green:  #005b35;
    --navy-blue: #141e46;
    --sub-blue: #343e66;
}

/**********************************************************************
 *
 *   window greater than 800px wide 
 *
 *********************************************************************/

body {
    background-color: white;
    /* text-align:center; */
    font-family: 'Happy Monkey';
    font-size: 1.2rem;
/*    border-style: solid;
    border-color: black;
    border-width: 5px;
*/
}

h1, h2 {
/*    margin-left: 10%;
    margin-right: 40%; */
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
}
    
main {
    margin-left: 10%;
    margin-right: 30%;
    text-align: justify;
/*    border-style: solid;
    border-width: 5px;
    border-color: blue;
*/
}

p {
    margin-top: 1rem;
}

main ol {
    margin-left: 2rem;
    text-align: justify;
}

main ul {
    margin-left: 2rem;
    text-align: justify;
    list-style-type: none;
}

main li {
    margin-top: 0.8rem;
}

img {
    padding: 0px;
    margin: 0px;
}

nav {
   background-color: var(--navy-blue);
   box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
   width: 100%;
   list-style: none;
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

nav li {
   height: 50px;
}

nav a {
   height: 100%;
   padding: 0 30px;
   text-decoration: none;
   display: flex;
   align-items: center;
   color: var(--light-green);
   justify-content: flex-end;
}

nav a:hover {
    background-color: var(--sub-blue);
    color: white;
}

nav li:first-child {
   margin-right: auto;
}

.jane-link {
    margin: 8px 10px;
    height: 70%;
    padding: 0 20px;
    border: 1px solid white;
    border-radius: 20px;
    background-color: var(--navy-blue);
    color: var(--light-green);
    font-size: 1.4rem;
}

.onpar-logo {
    width: 200px;
    margin: 20px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 200px;
    z-index: 999;
    background-color: rgba(20, 30, 70, 0.7);
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* background-color: rgba(255,255,255, 0.4); */
    backdrop-filter: blur(5px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    /* display: flex; */
    flex-direction: column;
    /* align-items: left; */
    align-items: flex-start;
    justify-content: flex-start; 
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-icon-box {
    padding: 0 20px;
    display: none;
    margin-right: auto;
    align-items: center;
}

.menu-icon {
    height: 20px;
    aspect-ratio: 1.618;
    background:
	linear-gradient(var(--light-green) 50%, #0000 0)
	top/100% 40% repeat-y;
}

.white-on-navy-section {
    width: 100%;
    background: var(--navy-blue);
    color: white;
    padding: 50px 75px;
    font-size: 2rem;
}

.navy-on-white-section {
    width: 100%;
    background: white;
    color: var(--navy-blue);
    padding: 50px 100px;
    text-align: left;
    font-size: 1.5rem;
}

.white-on-sub-blue-section {
    width:100%;
    background: var(--sub-blue);
    color: white;
    padding: 50px 100px;
    text-align: center;
    font-size: 1.2rem;
}

.white-on-sub-blue-section a {
    color: var(--light-green);
}
 


/**********************************************************************
 *
 *   mobile device,  window width 800px or less
 *
 *********************************************************************/

@media (max-width: 800px) {

    .hideOnMobile {
	display: none;
    }
    
    .menu-icon-box {
	display: flex;
    }
	
    .white-on-navy-section {
	padding: 20px 20px;
    }

    .navy-on-white-section {
	padding: 30px 50px;
    }

    .white-on-sub-blue-section {
	padding: 20px 20px;
    }


}

/**********************************************************************
 *
 *   diagnostic panel
 *
 *********************************************************************/

.diag-show {
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    background-color: blue;
    color: white;
    border: solid 2px black;
    border-radius: 10px;
}

.diag-overlay {
    display: none;
    position: fixed;
    top: 100px;
    left: 100px;
    width: 500px;
    height: 800px;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content; center;
    align-items: center;
    z-index: 1000;
}

.diag-content {
    margin: auto;
    background-color: var(--light-green);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 90%;
}

.diag-content p {
    margin-top: 0rem;
}

.diag-control {
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    color: #777;
    top: 10px;
    right: 10px;
}

.diag-control span:hover {
    color: #222;
}


/**********************************************************************
 *
 *   fallback for browsers that do not support 3d transforms
 *
 *********************************************************************/

.no-csstransforms3d .sb-pusher,
.no-js .sb-pusher {
    padding-left: 300px;
}


/**********************************************************************
 *
 *   @
 *
 *********************************************************************/

/**********************************************************************
 *
 *   @
 *
 *********************************************************************/

