/**/
/**/
/*Title Bar*/
/**/
/**/
.top-title-bar {
    text-align: center;
}

.top-title-bar h1 {
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    text-align: center;

    border-bottom: 0.75vh solid #A94F2A;
    letter-spacing: 0.6vw;
    font-weight: normal;

    padding-top: 1vh;
    margin: 0;
    font-size: clamp(3.5rem, 7.5vh, 5rem);
}

/*Vertical Phones and Square Tablets/Foldables*/
@media (max-width: 600px) and (orientation: portrait), (max-width: 900px) and (min-aspect-ratio: 4/5) and (max-aspect-ratio: 5/4) {
    .top-title-bar h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: 0.9vw;
    }
}

/*Landscape Phones*/
@media (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
    .top-title-bar h1 {
        font-size: clamp(1.5rem, 6vh, 2.5rem);
    }
}

.top-title-bar h2 {
    font-family: 'Lato', sans-serif;
    color: rgb(255 255 255 / 0.56);
    text-align: center;

    letter-spacing: 0.4vw;
    font-weight: normal;

    padding-top: 1vh;
    margin: 0;
    font-size: clamp(1rem, 2.8vh, 2rem);
}

/**/
/**/
/* Navigation Bar */
/**/
/**/
.bottom-nav {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5vh;
    min-height: 60px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4vw;
    z-index: 100;
    box-shadow: 0 -1vh 2vh rgba(0, 0, 0, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3vw;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 1.5vh, 1.2rem);
    transition: color 0.2s ease-in-out;
}

/*Large Monitor*/
@media (min-width: 1800px) {
    .nav-links a {
        font-size: clamp(1.2rem, 1.8vh, 1.6rem);
    }
}

    .nav-links a:hover {
    color: #FFD700;
}

/*toggle: if I want copyright to be on nav bar*/
/*.nav-copyright {*/
/*    position: absolute;*/
/*    right: 4vw;*/
/*    margin: 0;*/
/*    color: #888;*/
/*    font-size: clamp(0.9rem, 1.4vh, 1.2rem);*/
/*}*/

.site-copyright {
    text-align: center;
    margin: 0 0 3vh 0;
    color: #888;
    font-size: clamp(0.9rem, 1.4vh, 1.2rem);
}


/*Large Monitor*/
@media (min-width: 1800px) {
    .site-copyright {
        font-size: clamp(1.1rem, 1.6vh, 1.4rem);

    }
}
