*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* fonts import from google fonts (i know you're supposed to download them but this is easier for now */
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ////////// */
/* index page */
/* ////////// */
.index-body{
    background-image: url("photos/index-background-image.jpg");
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    height: 100vh;
}
.main-page-link-start-page{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    background-image: linear-gradient(to right, rgb(0, 8, 68, 0.8), rgb(0, 8, 68, 0), rgb(0, 8, 68, 0.0));
}
.index-text-section{
    width: 80%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.index-text-section h2{
    font-size: 3.5vw;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.05vw;
}
.index-text-section h1{
    font-size: 7vw;
    line-height: 6vw;
    font-weight: 900;
    letter-spacing: -0.05vw;
    justify-self: center;
}
.index-text-section h3{
    font-size: 3.5vw;
    font-weight: 600;
    letter-spacing: -0.05vw;
    margin-top: auto;
}
/* ///////// */
/* home page */
/* ///////// */

/* navigation header */
header{
    width: 100vw;
    height: auto;
    padding: 3vw;
    display: flex;
    justify-content: end;
    position: absolute;
    z-index: 6;
}
header nav{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.menu-button-line{
    height: 5px;
    width: 40px;
    background: rgb(0, 0, 0);
    mix-blend-mode: difference;
    border-radius: 5px;
    z-index: 7;
}
#middle-line.menu-button-line{
    margin: 15px 0;
}
.home-page-main-projects{
    height: 100vh;
    width: auto;
    overflow: hidden;
    background-image: url("photos/rudy-catwalk-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-cover{
    background-color: rgb(0, 8, 68, 0.6);
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(0.5vw);
}
.side-bar{
    background-color: white;
    height: 100vh;
    width: 30vw;
    margin-left: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}
.project-text{
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.1vw;
    font-size: 10vw;
    transform: rotate(-90deg);
    height: auto;
    width: auto;
    left: 23.1vw;
    top: 8vw;
    animation-duration: 4s;
    animation-name: up-and-down;
    animation-iteration-count: 1;
}

/* projects text animation */
@keyframes up-and-down {
    0%, 100%{
        top: 7vw;
    }
    50%{
        top: 0vw;
    }
    60%{
        opacity: 1;
    }
    75%{
        top: -200vw;
        opacity: 0;
    }
    80%{
        opacity: 0;
        
    }
    85%{
        top: 80vw;
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    
}

.person-image-cutout{
    height: 51vw;
    width: auto;
    position: absolute;
    right: 15vw;
    z-index: 3;
    align-self: flex-end;
}
/* project buttons */
.project-button-group{
    margin-left: 10vw;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    transform: rotate(-10.4deg);
}
.project-button{
    margin-bottom: 3vw;
    text-decoration: none;
    color: white;
    height: auto;
    transition: all ease-in-out 0.2s; 
    position: relative;
    overflow: hidden;
}
/* creates sliding animation using a before element. used this video for reference: https://www.youtube.com/watch?v=6-cNMfeEo9I */
.project-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #69E6FC;
    transition: all ease-in-out 0.2s; 
    z-index: -1;
}
.project-button:hover::before{
    width: 100%;
}
.project-button-text{
    font-family: "Inter", sans-serif;
    font-size: 4vw;
    line-height: 6vw;
    font-weight: 900;
    letter-spacing: -0.05vw;
    height: auto;
}
.lo-button{
    position: absolute;
    justify-self: center;
    top: 90vh;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 2vw;
}
/* ///////////////// */
/* menu page overlay */
/* ///////////////// */

.menu-screen {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-image: url("photos/blurred-hmia-catwalk-bg-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 1;
    height: 0%;
    transition: height ease-out 0.3s;
}
.menu-screen.active {
    height: 100%;

}
.side-bar-menu{
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
    display: flex;
    justify-content: start;
    width: 30vw;
    margin-right: auto;
}  
.navigation-text{
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.1vw;
    font-size: 10vw;
    transform: rotate(90deg);
    height: 10vw;
    width: auto;
    top: 0vw;
    left: -27.5vw;
    animation-duration: 4s;
    animation-name: up-and-down-reverse;
    animation-iteration-count: infinite;
    align-self: center;
}
/* 'navigation' text animation */
@keyframes up-and-down-reverse {
    0%, 100%{
        top: 0vw;
    }
    50%{
        top: 8vw;
    }
    60%{
        opacity: 1;
    }
    75%{
        top: 200vw;
        opacity: 0;
    }
    80%{
        opacity: 0;
        
    }
    85%{
        top: -80vw;
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    
}

/* person image */
#gojo-gun.person-image-cutout{
    margin-right: 30vw;
    width: 45vw;
    height: auto;
}

/* navigation buttons */
.button-container-menu{
    width: 30vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15vw;
}
.menu-button{
    margin-top: -1.5vw;
    position: relative;
    overflow: visible;
    width: auto;
    height: auto;
    background-color: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: scale 0.2s ease-in;
}

.menu-button-text{
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 5.5vw;
    letter-spacing: -0.5vw;
    background-color: none;
    color: #0DC0FC;
    mix-blend-mode: color-dodge;
    z-index: 0;
}

#start.menu-button-text{
    transform: rotate(-8.23deg);
}
#home.menu-button-text{
    transform: rotate(-0.17deg);
}
#projects.menu-button-text{
    transform: rotate(-2.76deg);
}
#lo-page.menu-button-text{
    transform: rotate(0.06deg);
}
#about-me.menu-button-text{
    transform: rotate(2.45deg);
}

.menu-button::before{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    height: 110%;
    width: 110%;
    background-color: #ff0000;
    transition: all ease-in-out 0.2s; 
    z-index: 1;
    mix-blend-mode: lighten;
    clip-path: polygon(100% 0, 0 81%, 100% 100%);
    transform: rotate(5deg);
    animation: menu-button-hover-animation ease-in-out;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    transition: clip-path ease-in-out;
    opacity: 0;
    transform: rotate();
}
.menu-button-text::before{
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    height: 110%;
    width: 110%;
    background-color: #ffffff;
    transition: all ease-in-out 0.2s; 
    z-index:-1;
    transform: rotate(5deg);
    clip-path: polygon(100% 0, 0 69%, 90% 100%);
    opacity: 0;
}
/* button hover effects */
/* red triangle animation */
/* changes polygon shape slightly and rotates it too */
@keyframes menu-button-hover-animation {
    0%, 100% {
        clip-path: polygon(100% 0, 0 81%, 100% 100%);
        transform: rotate(0);
    }
    33.3%{
        clip-path: polygon(100% 7%, 0 70%, 87% 100%);
        transform: rotate(3deg);
    }
    66.6%{
        clip-path: polygon(90% 0, 0 70%, 100% 100%);
        transform: rotate(-3deg);
    }
    
}

.menu-button:hover .menu-button-text {
    color: black;
    mix-blend-mode: normal;
    scale: 120%;
}

.menu-button:hover .menu-button-text::before {
    opacity: 1;
}

.menu-button:hover::before {
    opacity: 1;
    scale: 120%;
}
/* /////// */
/* lo page */
/* /////// */

.lo-page-main{
    background-image: url("photos/tanjiro-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    overflow: hidden;
}
.lo-buttons-container{
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    align-self: center;
    margin-bottom: 5vw;
    z-index: 9;
}
.lo-buttons-title-text{
    font-family: "Inter", sans-serif;
    font-size: 3vw;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.15vw;
    color: white;
    margin-bottom: -5vw;
}

/* individual button */
.lo-button-lo-page-link{
    text-decoration: none;
    cursor: default;
    height: 7vw;
    width: 25vw;
    margin-top: 1.5vw;
}
.lo-button-lo-page-link a * {
    pointer-events:none;
}

.lo-button-lo-page{
    position: relative;
    overflow: visible;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
    background-color: #0E0E54;
    width: 30vw;
    height: 7vw;
    color: #69E6FC;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding-bottom: 0.75vw;
    text-decoration: none;
}
.title-number-proofs-container-lo-button{
    display: flex;
    justify-content: center;
    align-items: end;
    width: 80%;
}
.number-card{
    height: 4vw;
    width: 3.25vw;
    background-color: #0E0E54;
    border: 0.25vw solid #69E6FC;
    display:flex;
    justify-content: center;
    align-items: center;
    transform: rotate(18deg);
    position: relative;
    z-index: 2;
    top: 3vw;
    left: 0.5vw;
    cursor: pointer;
}
.number-card-number{
    color: #69E6FC;
    font-family: "Inria Serif", serif;
    font-weight: 400;
    font-size: 2.5vw;
    font-style: normal;
    transform: rotate(-18deg);
}

.lo-title{
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5vw;
    margin-right: auto;
    margin-left: 0.5vw;
    margin-bottom: 0.5vw;
    letter-spacing: -0.1vw;
}
.lo-description-text-container{
    background-color: #69E6FC;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0E0E54;
    width: 85.5%;
    padding: 0.15vw;
    left: -1vw;
    clip-path: polygon(0 0, 97.4% 0, 100% 100%, 2.6% 100%);
}
.lo-description-text{
    font-size: 1.5vw;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.05vw;
    
}
.lo-button-proofs-text{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1vw;
    margin-bottom: -0.25vw;
}
.proof-number-text{
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 4vw;
    margin-bottom: -1vw;
}

#transferable-production{
    margin-left: 2.8vw;
}
#creative-iterations{
    margin-left: 5.6vw;
}
#professional-standards{
    margin-left: 8.4vw;
}
#personal-leadership{
    margin-left: 11.2vw;
}
/* lo button hover effects and elements */
.lo-button-lo-page::after{
    content: ""; 
    position: absolute;
    z-index: -2;
    background-color: #ff0000;
    opacity: 0;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
    width: 30vw;
    height: 7vw;
    top: -0.72vw;
    right: -28.5vw;
    transition: ease-in 0.2s right;
}
.lo-button-lo-page-link:hover{
    .lo-button-lo-page{
        background-color: white;
    }
    .title-number-proofs-container-lo-button{
        color: black;
    }
    .number-card{
        border-color: white;
        background-color: black;
    }
    .number-card-number{
        color: white;
    }
    .lo-description-text-container{
        background-color: black;
    }
    .lo-description-text{
        color: white;
    }
    .lo-button-lo-page::after{
        opacity: 1;
        right: -0.5vw;
    }
}

/* background image and element */
.gojo-glasses-seethrough-cutout-container{
    position: relative;
    margin-left: -20vw;
    margin-top: -4vw;
}
.lo-page-img{
    position: absolute;
    height: 110vh;
}
.lo-button-home-page-container{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100vw;
    text-align: center;
    top: -85vh;
    z-index: 6;
}
#projects.lo-button{
    text-align: center;
}

/* /////////////////// */
/* individual lo pages */
/* /////////////////// */

/* background design elements */
.individual-lo-page-main{
    display: flex;
    background-image: url("photos/lo-pages-background.png");
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.background-design-container{
    position: relative;
    display: flex;
    bottom: 5vw;
    height: 100vh;
    width: 60vw;
    overflow: visible;
}
.individual-lo-page-person-image{
    z-index: 2;
    width: auto;
    height: 100vh;
    margin-top: 10vh;
}
.background-rectangle{
    position: absolute;
    background-color: #1637D2;
    width: 35vw;
    transform: rotate(44.52deg);
    height: 80vw;
    left: 10vw;
    z-index: 0;
}
.big-proof-text{
    position: absolute;
    font-family: "Inter",sans-serif;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.1vw;
    z-index: 1;
    font-size: 18vw;
    transform: rotate(-9.41deg);
    top: 18vw;
    left: 20vw;
    color: black;
}
.small-text-lo-page-design{
    color: white;
    font-family: "Inria Sans", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.5vw;
    z-index: 3;
    position: absolute;
    transform: rotate(-9.41deg);
    top: 45vw;
    left: 25vw;
    width: 35vw;

    /* gives the text a border */
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -3px 0px 0 #000,
        3px 0px 0 #000,
        0px -3px 0 #000,
        0px 3px 0 #000;
}

/* proof-link */
.proofs-links-section{
    display: flex;
    flex-direction: column;
    width: auto;
    margin-left: -25vw;
    margin-top: 10vw;
    z-index: 4;
}
.proof-link{
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 32vw;
    height: 2.5vw;
    padding: 0.25vw;
    border-top: 5px solid rgb(0, 8, 68, 0);
    border-right: 5px solid rgb(0, 8, 68, 0);
}
.proof-link:hover{
    background-color: white;
    border-top: solid #ff0000 5px;
    border-right: solid #ff0000 5px;
    border-radius: 0.5vw;
    z-index: 5;
    .proof-title{
        color: black;
    }
}

.proof-logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.5vw;
    width: 6vw;
    background-color: #181728;
    justify-self: flex-start;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
    overflow: hidden;
}
.proof-logo{
    height: 1.3vw;
    width: auto;
}
.proof-title{
    font-family: "Inria sans", sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.05vw;
    font-size: 1.6vw;
    margin: 0 auto;
    color: #69E6FC;
}
.proof-page-number-container{
    display: flex;
    align-items: center;
    width: 6vw;
    height: 1.5vw;
    background-color: #F7E211;
    border-radius: 0.3vw;
    font-family: "Inter", sans-serif;
    overflow:hidden;
    font-size: 1.15vw;
}
.proof-page-number-black-container{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
.proof-page-number{
    font-weight: 200;
    color: #F7E211;
    font-style: italic;
    letter-spacing: 0.2vw;
}
.proof-page-number-p{
    font-style: italic;
    color: #000;
    font-weight: 600;
    margin-right: 0.3vw;
}

/* bw - fw buttons (this is for switching from one LO to the next) */

.next-previous-lo-button-container{
    background-image: url("photos/bw-fw-background-element.png");
    background-size: cover;
    height: auto;
    width: 40%;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-proof-page{
    padding: 0;
    padding-top: 3vw;
    padding-right: 3vw;
}
.previous-lo-button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
}
.red-triangle-bw-fw{
    height: 4vw;
    width: 4vw;
    background-color: #ff7bb8;
    opacity: 0.75;
    clip-path: polygon(0 50%, 50% 100%, 50% 0);
    position: absolute;
    scale: 125%;
}
.white-arrow-bw-fw{
    clip-path: polygon(75% 25%, 50% 50%, 75% 75%, 75% 100%, 25% 50%, 75% 0);
    background-color: white;
    height: 3.5vw;
    width: 3.5vw;
    position: absolute;
    margin-left: -1.5vw;
    scale: 125%;
}
.bw-fw-button-text{
    margin: 0 0.5vw;
    color: white;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 4vw;
    -webkit-text-stroke: 1px black;
}
.previous-lo-button div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.next-lo-button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
}
#next.previous-lo-button div .red-triangle-bw-fw{
    transform: rotate(180deg);
}
#next.previous-lo-button div .white-arrow-bw-fw{
    transform: rotate(180deg);
    margin-left: 1.5vw;
}
.next-previous-lo-button-container h3{
    font-family: "Inria sans", sans-serif;
    font-style: italic;
    font-weight: 600;
    margin: 0 2vw;
}
@keyframes breathe-bw-fw {
    0%, 100%{
        scale: 1.25;
    }
    50%{
        scale: 1;
    }
}
.previous-lo-button:hover{
    animation: breathe-bw-fw ease-in-out;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
