@font-face {
    font-family: KishimenSword;
    src: url(fonts/KishimenSword.otf);
}


html{
    scroll-behavior: smooth;
}

html, body{
    overflow-x: hidden;
}

body{
    max-width: 100vw;
    margin: 0;
    position: relative;
    background: #39407C;
    background-size: 100% 100vh;
    background-repeat: no-repeat;
   
}

.overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: overlay;
    background-image: url(images/Overlay.png);
    pointer-events: none;
    opacity: 26%;
    z-index: 10;
}

h1{
    font-family: "Lexend Deca", sans-serif;
     font-optical-sizing: auto;
    font-weight: 700;
    font-size: 50px;
    margin: 1vh 0 0 0;
    color: #39407C;
}

h2{
    font-family: KishimenSword;
    color: #fff;
    font-size: 50px;
    margin: 2vh 0 0vh 0;
}

h3{
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    color: #fff;
    font-size: calc(12px + 1.8vw); 
}

p{
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    color: #39407C;
    font-size: 1.125rem;
    hyphens: auto; 
	text-align: justify;
    line-height: 1.7rem;
}

a{
    text-decoration: none;
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
}

.return-home{
    position: fixed;
    width: calc(100vw - 40px);
    z-index: 9;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 0;
}

.return-home a{
    height: 50px;
    width: 50px;
    background-color: #E5D74E;
    color: #39407C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

#header{
    height: 100vh;
    position: relative;
    width: 100%;

}

.header-sparkles{
    height: 100vh;
    display: block;
}

.header-sparkles-left{
    width: auto;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.header-sparkles-right{
    width: auto;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.sticky-hamburger{
    position: fixed;
    width: calc(100vw - 40px);
    z-index: 9;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    cursor: pointer;
}

.hamburger.active{
    padding-top: 15px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
}

.hamburger span {
    width: 50px;
    height: 7px;
    background-color: #fff;
    outline: #39407C;
    outline-width: 3px;
    transition: all 0.3s ease-in-out;
    border: #39407C 2px solid;
    border-radius:  0 20px 0 0;
}


.nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    padding-top: 120px;
    right: 0;
    height: 100vh;
    width: 100vw;
    z-index: 8; 
    border-radius: 0 0 10px 10px;
}

.nav.active {
    display: flex; 
    background: linear-gradient(-90deg, #39407C 25%, rgba(77,82,171,0) 100%);
}

.nav p{
    font-size: 20px;
    white-space: nowrap;
}

.nav-item{
    background-color: #CF517F;
    padding: 15px 20px;
    rotate: 3deg;
    min-width: 15vw;
    margin: 10px 30px 30px 0px;
    z-index: 100;
    filter: drop-shadow(-5px 7px 2px #39407C);
    max-width: 40vw;
    display: flex;
    justify-content: center;
    border-radius: 10px 25px 10px 10px;
}

.nav-item:nth-child(2n+1) {
    background-color: #E5D74E;
    rotate: -3deg;
    }

.nav-item p{
    margin: 5px;
    text-align: left;
}

.nav-item:hover {
    background-color: #fff; 
    cursor: pointer;   
    rotate: -3deg;   
    transition: 0.2s ease-in;     
}

.nav-item:nth-child(2n+1):hover{
    rotate: 3deg;
}



.header-text{
    position: relative;
    padding-top: 9vh;
    height: 85vh;
    width: 100vw;
    z-index: 7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} 

.header-logo{
    width: 90vw;
}

.header-text h3{
    padding-left: 8vw;
    margin-bottom: -3vw;
    margin-top: 0;
    text-shadow: 3px 3px 2px #39407C, -3px 3px 2px #39407C, -3px -3px 2px #39407C, 3px -3px 2px #39407C;
    z-index: 10;
}

.header-text h2, svg{
    padding-right: 0;
    padding-left: 5vw;
    text-align: left;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 600;
    font-size: calc(12px + 10vw);
    text-shadow:
    3px 3px 2px #39407C, -3px 3px 2px #39407C, -3px -3px 2px #39407C, 3px -3px 2px #39407C;
    z-index: 10;
}

.header-image{
    position: absolute;
    top: 15vh;
    right: -30vw;
    animation: MoveUpDown 5s linear infinite;
    z-index: 3;
    filter: drop-shadow(-5px -2px 0px #E5D74E);
}

.header-image video{
    height: 110vh;
    width: auto;
}

@keyframes MoveUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
}

#about{
    background: linear-gradient(180deg, #E5D74E 80%, #39407C 80%);
    position: relative;
}

.diagonal-line{
    background: linear-gradient(185deg, #39407C 50%, #E5D74E 50%);
}

.artbook-banner{
    width: 120vw;
    padding-top: 90px;
    rotate: 5deg;
    border-bottom: 7px #39407C solid;
}

.marquee {   
    display: flex;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.marquee h1{
    padding-left: 10px;
}

.loop-text {
    animation: loopText 5s infinite linear;      
}

@keyframes loopText {

    from {
        transform: translateX(0);
     }
  
    to {
        transform: translateX(-100%);
     }
  
  }
  

.about-text {
    margin-left: 8vw;
    margin-right: 8vw;
    display: flex;
    flex-direction: column;
}

.about-text h2{
    color: #39407C;
    
}

.about-text p{
    max-width: 80vw;
    min-height: fit-content;
    font-size: 15px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 600;
}

.about-one {
    z-index: 2;
}

.about-two{
    z-index: 2;
    padding-bottom: 20vh;
}

#author{
    margin-top: -10vh;
}
.author-gradient{
    background: linear-gradient(180deg, #E5D74E 19%, #B2a15f 45%, #39407C 100%);
    height: 40vh;
    rotate: -5deg;
    position: absolute;
    bottom: 0;
    left: -10vw;
    width: 120vw;
    z-index: 1;
}

.author-content{
    margin-left: 8vw;
    margin-right: 8vw;
    display: flex;
    flex-direction: column-reverse;
    z-index: 2;
    align-items: center;
}

.author-text{
    margin-top: -130px;
    z-index: 4;
    width: 84vw;
}

.author-text h2{
    text-align: right;
}
.author-image{

    margin-top: -8vh;
    z-index: 3;
}

.author-content img{
    max-width: 90vw;
}

.author-content p{
    color: #fff;
    font-size: 15px;
}

.buttons{
    display: flex;
    flex-direction: row;
    height: fit-content;
    margin-top: 40px;
}

.author-content a{
    background-color: #E5D74E;
    padding: 10px 9px 10px 9px;
    margin: 10px;
    border-radius: 5px 20px 5px 5px;
    color: #39407C;
    text-decoration: none;
}

.author-content a:hover{
    background-color: #CF517F;
    color: #fff;
}

#pics{
    margin-top: 20vh;
}

.pics-content{
    margin-left: 8vw;
    margin-right: 8vw;
    
}

.pics-content img{
    background-color: #E5D74E;
    max-width: 350px;
    object-fit: cover;
    width: 100%;
    max-height: 100%;
    margin: 10px;
    position: relative;
    border-radius: 15px 40px 15px 15px;

    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.pics-content img:hover{
    -webkit-transform: scale(1.15);
	transform: scale(1.15);
    z-index: 10;
    filter: drop-shadow(7px 7px 2px #2c3266);
}

.pics-images{
    display: flex;
    flex-direction: column;
    left: 0;
    height: auto;
}

.pics-images :nth-child(2n){
    align-self: flex-end;
}


#footer{
    background: linear-gradient(#39407C 20%, #E5D74E 20%) ;
    height: fit-content;
    min-height: 400px;
    display: flex;
    justify-content: center;
}
#footer p{
    bottom: 0;
    position: absolute;
    color: #39407C;
    z-index: 2;
}

.footer-gradient{
    background: linear-gradient(180deg, #39407C 19%, #B2a15f 45%, #E5D74E 100%);
    height: 200px;
    rotate: 5deg;
    position: absolute;
  
    left: -10vw;
    width: 120vw;
    z-index: 1;
}

@media only screen and (min-width: 768px) {

    h2{
        font-size: calc(8px + 4em);
    }
    .header-image{
        top: 2vh;
        right: calc(50px - 20vw);
        z-index: 7;
    }
    
    .header-image video{
        height: 122vh;
    }

    .header-logo, .header-text h2{
        width: 70vw;
    }

    .header-text h2{
        font-size: 5rem;
        width: 40%;
    }

    .about-text {
        margin-left: 8vw;
        margin-right: 8vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 15vw;
        grid-row-gap: 0px;
    }
    
    .about-text h2{
        color: #39407C;
        grid-area: 1 / 1 / 2 / 3;
    }
    
    .about-text p{
        max-width: 40vw;
    }
    
    .about-one {
        grid-area: 2 / 1 / 5 / 2;
    }
    
    .about-two{
        grid-area: 3 / 2 / 6 / 3;
    }

    #author{
        margin-top: 0;
    }

    .author-content{
        margin-left: 8vw;
        margin-right: 8vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-row-gap: 0px; 
        z-index: 2;
    }
    
    .author-text{
        grid-area: 1 / 2 / 4 / 3; 
        max-width: 40vw;
    }
    
    .author-image{
        grid-area: 1 / 1 / 4 / 2;
        margin-top: -8vh;
        z-index: 3;
        margin-left: 0;
    }
    
    .author-content a{
        padding: 15px 15px 15px 15px;
    }

    .author-content img{
        max-width: 35vw;
    }

    .pics-content img{
        object-fit: cover;
        width: 100%;
        max-height: 100%;
        max-width: none;
       
    }

    .pics-content h2{
        margin-bottom: 20px;
    }

    .pics-images{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px; 
    }
    .pics-image-one{
        grid-area: 1 / 1 / 3 / 2;
    }
    .pics-image-two{
        grid-area: 2 / 2 / 4 / 3;
    }
    .pics-image-three{
        grid-area: 3 / 1 / 5 / 2;
    }
    .pics-image-four{
        grid-area: 4 / 2 / 6 / 3;
    }

  }

@media only screen and (min-width: 1280px) {
    
    .hamburger {
        gap: 13px;
        padding-right: 75px;
        padding-top: 40px;
        
    }
    
    .hamburger.active{
        padding-right: 75px;
        padding-top: 60px;
    }
    
    .hamburger span {
        width: 60px;
        height: 10px;
    }
    

    .nav {
        padding-top: 180px;
    }
    
    .nav-item{
        margin: 10px 75px 30px 0px;
    }

    .header-text{
        max-height: 50vh;
        width: 100%;
    }
    
    
    .header-text h2{
        width: 50%;
        margin-top: -10px;
        text-align: right;
        font-size: 4rem;
    }
    
    .header-image{
        top: 2vh;
        right: 0.5vw;
        z-index: 7;
    }
    
    .header-image video{
        height: 140vh;
    }


    .about-text {
        margin-left: 15vw;
        margin-right: 15vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 10vw;
        grid-row-gap: 0px;
    }

    .author-content{
        margin-left: 15vw;
        margin-right: 15vw;
    }

    .author-image{
        margin-left: -10vw;
    }

    .pics-content img{
        object-fit: cover;
        width: 75%;
        max-height: 100%;
       
    }
} 