@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --color-bg: white;
    --color-fg: black;
}  

.hideOnProduction{
    display: none;
}

/* clear existing link formatting */
a{
    text-decoration: none;
    color: var(--color-fg);
}

/* class for typical links */
.normalLink{
    color: blue;
    text-decoration: none;
}

.normalLink:hover{
    color: lightblue;
    text-decoration: underline;
}

.normalLink:visited{
    color: purple;
}

/* * {border:1px dotted red} */

nav{
    margin-top: 1em;
    display: flex;
    flex-direction: row;

    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;

    /* debug */
    /* background-color: aquamarine; */
}

.youAreHereNav{
    text-decoration: underline red;
}

.navRight{
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    margin-bottom: 2em;
}

#logo img{
    width: 120px;
    height: 120px;
    color: none !important;
    border-radius: 5em;
    box-shadow: 0px 0px 4px gray;
}

#navSpacer{
    flex-grow: 1;
}

/* .navLeft{
    
} */

#navLinks{
    display: flex;
    flex-direction: row;

    font-family: "Zilla Slab", Helvetica, Arial, sans-serif;
    font-size: larger;
    font-weight: 500;
    padding-bottom: .5em;
    padding-top: .8em;
}

.navLink{
    margin-right: 1em;
    margin-left: 1em;
}

#navButtons{
    display: flex;
    flex-direction: row;
}

.navButton{
    font-family: "Zilla Slab", Helvetica, Arial, sans-serif;
    font-weight: 500;
    /* background-color: blueviolet; */
    /* background-color: orange; */
    background-color: #69b5e9;
    border-radius: .4em;
    margin-left: .5em;
    margin-right: .5em;
    margin-bottom: .6em;
    margin-top: .5em;
    
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: .5em;
    padding-right: .5em;

    box-shadow: 0px 0px 4px gray;

}

.navButton:hover{
    background-color: #4ea8e4
}

.buttonText{
    color: white;
}

#hamburgerMenuLines{
    margin-top: 2px;
}

.hmLine{
    width: 13px;
    height: 2px;
    background-color: black;
    margin-top: 3px;
    border-radius: 1em;

    outline-style: solid;
    outline-color: black;
    outline-width: .4px;
}


/* body */

/* --> Banner */

#afterNavBanner img{
    width: 100%;
}

/* Dev Menu */
#devMenu{
    display: flex;
    justify-content: center;
}
#devMenuContent{
    border-radius: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em;
    background-color: lightgray;
    padding-left: 15em;
    padding-right: 15em;
    padding-bottom: 1em;
}
#devMenuTitle{
    font-family: "Zilla Slab", Helvetica, Arial, sans-serif;
}
/* Path Bar */
.pathBar{
    background-color: lightgray;
    border-radius: 1em;
    width: 99%;
    padding-top: .5em;
    padding-bottom: .5em;
    margin-left: 1em;
    margin-right: 1em;
}
.pathBarContent{
    margin-left: 1em;
    display: flex;
    justify-content: left;
}
.pBArrow{
    margin-left: .5em;
    padding-top: .2em;
    margin-right: .5em;
}
.pBGroup a{
    display: flex;
}
.pBLocationEntry{
    font-family: "Zilla Slab", Helvetica, Arial, sans-serif;
    margin-top: -.2em;
    font-weight: lighter;
    margin-left: .1em;
}
.pBIcon{
    /* margin-top: .1em; */
}
/* Arrows - https://www.w3schools.com/howto/howto_css_arrows.asp */
.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
  
.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
  
.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
  
.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
  
.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
/* footer */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: lightgray;
    color: black;
    text-align: center;
}

#footerColumns{
    display: flex;
    justify-content: space-around;
}

/* darkmode color adjustment */
@media (prefers-color-scheme: dark) {
    :root {
      --color-bg: rgb(27, 27, 27);
      --color-fg: white;
    }
    .footer{
        background-color: darkgray;
    }
}
@media (prefers-color-scheme: light) {
    :root {
      --color-bg: white;
      --color-fg: black;
    }
}
body{
    background-color: var(--color-bg);
}
.adaptiveColorText{
    color: var(--color-fg);
}