/* Master Styles */
body {
    font-family: "Architects Daughter", cursive;
    margin: 0px;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
}

/* Nav Styles */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 38px;
}

.left-side {
    display: flex;
}

.nav-wrapper > .left-side > div {
    margin-right: 20px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #8a8a8a;
    text-decoration:none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid black;
}

.nav-link-wrapper a:hover {
    color: black;
}

.active-nav-link {
    border-bottom: 1px solid black;
}

.active-nav-link a {
    color: black !important;
}

/* Portfolio Styles */

.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.portfolio-item-wrapper {
    position: relative;
}

.portfolio-img-background {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-text-wrapper {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
}

.logo-wrapper img {
    width: 50%;
    margin-bottom: 20px;
}

.img-text-wrapper .subtitle {
    transition: 1s;
    font-weight: 600;
    color: transparent;
}


.img-text-wrapper:hover .subtitle {
    font-weight: 600;
    color: lightseagreen;
}

.img-darken {
    transition: 1s;
    filter: brightness(10%);
}

/* About Page */
.two-column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profile-image-wrapper img {
width: 100%;
}

.profile-content-wrapper {
    padding: 30px;
}

.profile-content-wrapper h1 {
    color: lightseagreen;
}

/* CV Page */
.Title {
    font-size: 10px;
    font-size: 8vw;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    display: inline-block;
    color: black;
    font-size: 3.5rem;
}

.Title-sub {
    font-size: .34em;
    letter-spacing: .16em;
    font-weight: 400;
    text-transform: none;
    display: block;
    margin-top: 1.2rem;
    padding-top: 1.6rem;
    border-top: .45em solid
}

.l-Header {
    margin-top: 6.4rem;
    margin-bottom: 3.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.l-Header-col {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
    padding: 38px;
    font-size: 1.5em;
    color: black;
    font-weight: 400;
}

.u-link {
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: lightseagreen;
}

.u-link:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0em;
    width: 100%;
    height: 2px;
    background-color: lightseagreen
}

.u-link:hover:before {
    background-color: black
}

.u-link2 {
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: lightseagreen;
}

.u-link2:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0em;
    width: 100%;
    height: 2px;
    background-color: lightseagreen
}

.u-link2:hover:before {
    background-color: black
}

.u-shadow {
    text-shadow: 4px 4px 0 lightseagreen;
    transition: text-shadow .2s ease-in-out
}

a:hover .u-shadow {
    text-shadow: -4px -4px 0 lightseagreen
}

.l-Section {
    margin-top: 1.5rem;
    padding-top: 5px;
    border-top: 1px solid grey;
    padding: 38px;
}

.l-Section+.l-Section {
    border-top: 1px solid grey;
}

.l-Header,
.l-Header-col {
    margin-top: 0
}

h3,
.h3,
.l-Section-title,
.l-Section-content {
    margin-top: 1.8rem
}

.l-Header-col:last-child:not(:first-child) {
    text-align: right;
}

