/*
Coder: klp
Date: 2022/06/12
Site: TNT
File: tnt-site-styles.css

*/
html {
    /*a Google Font*/
    font-family: 'IBM Plex Sans Condensed', sans-serif
}

/*-------- navbar --------*/
img#mastheadIcon{
    width: 60px;
    height: auto;
    margin-right: 20px;
}

a.navbar-brand{
    /*a google font*/
    font-family: 'Boogaloo', cursive;
    font-size: 1.5em;
}

a.navbar-brand span{
    color: #D81827;;
    font-weight: bold;
    /* font-size: 1.1em; */
    font-size:larger
}

.navbar-toggler-icon{
    /*dwr! must go from the styles area to the images area! */
    background-image: url("../images/np_burger_2764339_4E3D2E.svg") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 1px 1px;
}

/*-------- primary content --------*/
div#primaryContent h2{
    /* font-family: 'Yesteryear', cursive; */
    color: #673718;
}

/*-------- footer --------*/
footer{
    font-size: .8em;
}

footer div#footerContent{
    max-width: 500px;
}

footer li a img{
    width: 50px;
    height: auto;
}

/*-------- links --------*/

div#primaryContent a{
    color:#d65c20;
    font-weight: bold;
    text-decoration: none;
}

.active{
    font-weight: bold;
}

/*-------- apps --------*/
.profile {
    border: 2px solid #673718;
    border-radius: 50%;
    /* background-color: #F8F9FA; */
    background-color: #f9f1e5;
    padding: 2px;
    width: 120px;
}

.smaller-size{
    width: 60px;
}

.future {
    opacity: .2;
    cursor: none;
}

 div#apps figure {
    text-align: center;
    cursor: pointer;
    margin-right: 12px;
    margin-bottom: 15px;
}

div#apps figure figcaption {
    padding-top: 5px;
    text-align: center;
    font-size: .8em;
}

/*-------- colors --------*/
.dynamite-red{
    color: #D81827;
}

.coyote-orange{
    color: #d65c20;
}

.sand{
    color: #f7deb9;
}

.coyote-brown{
    color: #673718;
}

.coyote-brown-bg{
    background-color: #673718;
}

.sand-bg{
    background-color: #f7deb9;
}

/*-------- fonts --------*/
.cursive-font-1{
    font-family: 'Boogaloo', cursive !important;
}

.cursive-font-2{
    font-family: 'Yesteryear', cursive !important;
}

/*-------- miscellaneous classes --------*/

/*used to hide links that we ultimately want but are not yet meaningful*/
.hide {
    display: none;
}

.np-icon-small{
    width: 100px;
    height: auto;
}

/*--------- MEDIA QUERIES ----------*/
/*showing the BS5 breakpoints: https://getbootstrap.com/docs/5.0/layout/breakpoints/*/
@media (max-width: 576px) {/*x-small*/
    p, figcaption{
        font-size: .8em;
    }
    nav {
        border-bottom: 4px gray solid;
    }
    .col-lg-4{
        border-bottom: 1px solid lightgrey;
        padding-top: 10px;
    }
}

@media (min-width: 577px) {/*small*/
    /*400px or less*/
    nav {
        border-bottom: 4px red solid;
    }
    .col-lg-4{
        border-bottom: 1px solid lightgrey;
        padding-top: 10px;
    }
}

@media (min-width: 768px) {/*medium*/
    nav {
        border-bottom: 4px orange solid;
    }
}

@media (min-width: 992px) {/*large*/
    nav {
        border-bottom: 4px yellow solid;
    }

    .col-lg-4{
        border-right: 1px solid lightgrey;
        border-bottom: none;
    }

    div#jumbotron{
        background-position: center;
    }

    div#jumbotron2{
        background-position: 0px -150px;
    }
}

/*begin to show inline navigation and remove burger menu icon*/
@media (min-width: 1200px) {/*extra large*/
    nav {
        border-bottom: 4px green solid;
    }
}

@media (min-width: 1400px) {/*extra extra large*/
    nav {
        border-bottom: 4px blue solid;
    }
    div#jumbotron2{
        background-position: 0px -200px;
    }
}