/* stylesheet by Noah Sisson */


/* GLOBAL STYLES */
a {
    color: #ffffff;
}
a :visited {
    color: #cfcfcf;
}
a :active {
    color: #82b2e7;
}
a:hover{
    color: #333;
}


/* styles for top section including nav bar */
.navBar {
    background-color: #333;
    color: #ffffff;
    padding: 2em;
    height: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.navDivider {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5em;
    margin-left: 1em;
    margin-right: 1em;
}

.subNav-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
.topSect {
    background-image: url(../media/mountains.jpg);
    background-position: 50% 20%;
    background-size: cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
}
.bannerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
}

.bannerItem {
    margin-left: 3em;
    padding: 2.5em;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Amaranth', sans-serif;
    font-size: 22px;
    text-align: left;
    border-radius: 50px;
}
.bannerItem2 {
    margin-right: 3em;
    padding: 2.5em;
    border-radius: 50px;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Amaranth', sans-serif;
    font-size: 22px;
    text-align: right;

}
.bannerItem:hover{
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.5);
}
.bannerItem2:hover{
    background-color: #ffffff;
    color: rgba(0, 0, 0, 0.5);
}



/* styles for horizonbtal scroller section */
.horizScroller { /* container for the entire section */
    background-color: #333;
    color: #ffffff;
    height: 30vh;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 1em;
    display: flex;
    flex-direction: column;
}
.horizTitle { /* title for the section */
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    padding: .5em;
}
.scrollContainer { /* container for project items */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}
.horizItem { /* flex items for project items contained by scrollContainer*/
    background-color: #c94d4d;
    color: #ffffff;
    padding: 1em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: left;  
    text-align: left;
    font-size: 1em;
    font-weight: bold;
    font-family: 'Amaranth', sans-serif;
    min-width: 250px;
    height: 20vh;
}
.horizTop { /* horizItem is divided into two sections, horizTop and horizBottom. horizTop contains the project title and icon */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}
.horizBottom { /* horizItem is divided into two sections, horizTop and horizBottom. horizBottom contains project description and project buttons */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-wrap: wrap;
    font-weight: lighter;
    align-items: right;
}
.porjDesc { /* yes i know i spelled project wrong */
    display: flex;
    flex-direction: row;
}
.projDesc p {
    margin: 0;
}
.projDesc h2 {
    text-align: right;
    white-space: wrap;
    margin: 0;
}

.projButtons { /* container for project buttons */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.buttonWrap { /* button items contaimed by projButtons */
    max-width: 50%;
}


/* styles for footer section */
.footerSect {
    background-color: #333;
    color: #ffffff;
    padding: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 10vh;
}
