/*
Coder: klp
Date: 6/2/22
Site: tnt
App: Skeleton App Styles

*/
/*-------- navbar --------*/
img#mastheadIcon{
    width: 60px;
    height: auto;
    margin-right: 20px;
}

/*-------- jumbotron --------*/
div#jumbotron{
    background-image: url('../images/greece-ruins-temple-of-poseidon-sounio-view-hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 200px;
}

div#jt-text{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Manrope', sans-serif;
}

div#jt-text h1{
    font-family: 'Cinzel Decorative', serif;
}



div#jt-text h1, div#jt-text h4{
    text-shadow: 0px 2px 2px black;
}

/*-------- introDiv, footer --------*/
div#introDiv, footer p{
    max-width: 800px;
}

figure#introFig{
    width: 40%;
}

img#introFigImg{
    width: 100%;
    height: auto;
}

div#twoColumnApp{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

div#badInputDiv{
    display:none;
}

/*-------- google fonts --------*/
.googleFont1{
    font-family: 'Cinzel Decorative', serif;
}

.googleFont2{
    font-family: 'Roboto Condensed', sans-serif;
}

/*-------- colors --------*/
.text-custom-color1{
    color:#768971;
}

.text-custom-color2{
    color: #B1505D
}

.text-custom-color3{
    color: #DAD2B3;
}

.bg-custom-color1{
    background-color:#768971;
}

.bg-custom-color2{
    background-color: #B1505D;
}

.bg-custom-color3{
    background-color: #DAD2B3;
}



/*-------- footer --------*/
footer{
    font-size: .8em;
}

footer div#footerContent{
    max-width: 500px;
    padding-bottom: 10px;
}

footer li a img{
    width: 50px;
    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;
    }
}

@media (min-width: 577px) {/*small*/
    /*400px or less*/
    nav {
        border-bottom: 4px red solid;
    }

    /*div1 of a row: (left)*/
    div#div1{
        padding-bottom: 10px;
        border-bottom: 1px solid lightgray;
    }
}

@media (min-width: 768px) {/*medium*/
    nav {
        border-bottom: 4px orange solid;
    }
    div#div1{
        padding-right: 20px;
        border-right: 1px solid lightgray;
        border-bottom: none;
    }
}

@media (min-width: 992px) {/*large*/
    nav {
        border-bottom: 4px yellow solid;
    }

    /*adjusts the position of the jtron image; may need adjustments in location or query area*/
    div#jumbotron{
        background-position: 0px -120px;
    }
}

/*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;
    }

    /*adjusts the position of the jtron image; may need adjustments in location or query area*/
    div#jumbotron{
        background-position: 0px -200px;
    }
}