/* Master Styles */
body {
    font-family: "Lato", sans-serif;
    margin: 0px;
    background-color:rgb(247, 247, 247);
}

h1, h2 {
    margin: 0px;
    text-transform: uppercase;
    font-size: large;
    font-style: italic;
    font-weight: 500;
    color: rgb(24, 22, 22);
}

h3 {
    margin: 0px;
    text-transform: uppercase;
    font-weight: 300;
}

p {
    line-height: 1.7em;
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding-left: 0px;
}

li {
    line-height: 150%;
}


/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: none;
    overflow-y: scroll;
    scrollbar-color: #5488a0 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: none;
    display: none;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #5488a0;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }



/* Layout in Grid, elements in flexbox */
.container {
    display: grid;
    grid-template-columns: 1fr;
}


/*----------------------------------------------- Nav Styles ---------------------------------------------------------*/

.nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    background-color: #f1f1f1;
    height: 10vh;
}

.nav-wrapper > .logo > img {
    height: 6vh;
}

.left-side,
.right-side{
    padding: 0vh 3vw 0vh 3vw;
}

.right-side, .socials {
    display: flex;
    flex-direction: row;
}

.right-side > .nav-link-wrapper {
    padding: 0px 5px 0px 5px;
}

.socials a {
    padding: 3px 6px 0px 6px;
}



.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;
}

.right-side > .nav-link-wrapper:hover {
    border-bottom: 1px solid black;
}

.right-side > .nav-link-wrapper a:hover {
    color: black;
}

.active-nav-link {
    border-bottom: 1px solid black;
}

.active-nav-link a {
    color: black !important;
}

.brand a {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: large;
    font-weight: 800;
    color: black;
    text-decoration: none;
}

.fa {
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #8a8a8a;
}


/* ---------------------------------------------Side Bar------------------------------------- */
.sidebar {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.sidebar-links > .nav-link-wrapper {
    padding: 20px;
    font-size:x-large;
}

.sidebar-links > .socials {
    padding-left: 25px;
}

.close {
    display: block;
    width: 25px;
    height: 3px;
}

.x-close {
    color: white;
    font-weight: 1000;
    cursor: pointer;
    padding-left: 5vw;
}

.hamburger-container {
    display: none;
    padding-right: 3vw;
}

.hamburger {
    cursor: pointer;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px auto;
    transition: all 0.3s ease;
}

@media(max-width:968px){
    .hamburger-container{
        display: flex;
    }
    .right-side{
        display: none;
    }
}


/*------------------------------------------- Home Page Styles ------------------------------------------------------*/
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100vw;
    min-height: 90vh;
    align-items: center;
}

.items-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height:90vh;
}

.items-wrapper img {
    padding: 0px 25px 5px 25px;
}

.profile-image {
    height: 300px;
    width: 300px;
    object-fit:cover;
    margin: 55px;
    transform: rotate(-15deg);
    border-radius: 5%;
    filter: drop-shadow(15px 15px 2px rgb(26, 15, 27));
    border-width: 2px;
    border-right-color: black;
}


/* ------------------------ Gallery --------------------------------- */
#gallery {
    width: 75vw;
}

.prev,
.next {
  cursor: pointer;
  top: 40%;
  width: auto;
  color: black;
  font-weight: bold;
  font-size: 20px;
  border-radius: 3px;
  user-select: none;
  -webkit-user-select: none;
  padding: 16px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/*------------------------------------ About page ------------------------------------------------------------------------*/
.profile-image {
    height: 300px;
    width: 300px;
    object-fit:cover;
    margin: 55px;
    transform: rotate(-15deg);
    border-radius: 5%;
    filter: drop-shadow(15px 15px 2px rgb(26, 15, 27));
    border-width: 2px;
    border-right-color: black;
}

.item-wrapper {
    padding: 0vh 3vw 3vh 3vw;
    position: relative;
}

.item-wrapper > ul > li {
    padding: 3vh 0vw 3vh 0vw;
    align-items:center;
    justify-content:center;
    text-align: center;
}

.welcome-wrapper > h1 {
    color: #E60E59;
    font-weight: 300;
}

.item-wrapper > h2 {
    background-color: #3CC3E6;
    color: white;
    font-weight: 300;
    padding: 0px;
    align-items:center;
    justify-content:center;
    text-align: center;
}

.welcome-wrapper {
    width: 35vw;
}

.profile-img-container {
    position: relative;
}

.square {
    height: 300px;
    width: 500px;
    background-color: rgb(252, 252, 64);
    overflow: hidden;
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: -1;
}

/* ------------------------------------ Photo Page ------------------------------------------------------- */

.portfolio-items-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    padding: 0vh 1vw 0vh 1vw;
}

.portfolio-item-wrapper {
    position: relative;
    cursor: pointer;
    padding: 0vh 1vw .5vh 0vw;
}

.portfolio-img-background {
    height: 40vh;
    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: 0px 100px 0px 100px;
}

.logo-wrapper img {
    width:20%;
    margin-bottom: 20px;
}

.img-text-wrapper .subtitle {
    transition: 1s;
    font-weight: 500;
    color: transparent;
}

.img-text-wrapper:hover .subtitle {
    font-weight: 500;
    color: white;
}

.img-darken {
    transition: 1s;
    filter: brightness(10%);
}

/* ---------- Full Image Styling ---------- */

.full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.full-img img {
    width: 90vw;
    z-index: 0;
}

.full-img span {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

#fullImgBox {
    color:rgba(255, 255, 255, 0.5);
}

#fullImgBox > a{
    color:white;
    background-color: rgba(255, 255, 255, 0.25);
}