/*
Coder: klp
Date: 3/25/25
Site: tnt
App: EnglishFNameSimCP2025-03-26

*/
/*-------- navbar --------*/
img#mastheadIcon, nav img{
    width: 60px;
    height: auto;
    margin-right: 20px;
}

#mastheadIcon {
    filter: brightness(0) saturate(100%) invert(85%) sepia(30%) saturate(500%) hue-rotate(330deg) brightness(95%) contrast(90%);
}

div#jumbotron{
    background-image: url('../images/Designer.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 150px;
}

div#jt-text{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Dancing Script', cursive;
}

div#jt-text h1, div#jt-text h4{
    text-shadow: 0px 2px 2px black;
}

#aiImg {
    filter: grayscale(100%);
    opacity: 0.2;
}

div#introDiv, footer p{
    max-width: 800px;
}

.text-custom-color1{
    color: #4C009E !important;
}

.bg-custom-color1{
    background-color: #4C009E;
}

.googleFont1{
    font-family: 'Dancing Script', cursive;
}

.googleFont2{
    font-family: 'Dosis', sans-serif;
}

a{
    text-decoration: none;
    font-weight: bold;
}

/*-------- colors --------*/


/*-------- 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: 345px) {
    a#mainLink {
        font-size: 0.95em;
    }

    img#mastheadIcon {
        width: 50px; /* Adjust the size of the masthead icon */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 400px) {
    table {
        width: 100%; /* Ensure the table fits within the viewport */
        font-size: 0.75rem; /* Reduce font size for better fit */
    }
}

@media (max-width: 500px) {
    #introDiv,
    #aiImg,
    #aboutDiv {
        display: none;
    }
}

@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;
    }

}

@media (min-width: 768px) {/*medium*/
    nav {
        border-bottom: 4px orange solid;
    }
}

@media (min-width: 992px) {/*large*/
    nav {
        border-bottom: 4px yellow solid;
    }
    div#jumbotron{
        background-position: center;
    }
}

/*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;
    }
}