/*FONTS*/
@font-face{
	font-family: Louis-George-cafe;
	src:url("Fonts/Louis\ George\ Cafe.ttf");
}

@font-face{
	font-family: Type-Icon;
	src:url("Fonts/Type Icons.ttf");
}

/*OVERALL*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: 100vh;
    cursor: none;
}

/*SCROLL BAR*/
::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}

/*HEADER*/
header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 50px;
    border-radius: 50px;
    z-index: 10;
    background-color: #11111100;
    backdrop-filter: blur(5px);
    animation: show 3s forwards;
}

@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

header #pic{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 25px;
    width: 100px;
    height: 40px;
}

header #pic img{
    width: 100px;
    height: 33.24px;
}

#navBar{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 25px;
    width: 50%;
    height: 40px;
}

#navBar ul{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    list-style: none;
    font-family: Louis-George-cafe;
    font-weight: bolder;
}

#navBar ul li a{
    color: #fffe00;
    text-decoration: none;
    cursor: none;
}

/*CURSOR*/

.cursor{
    width: 3rem;
    height: 3rem;
    border: 2px solid #fffe00;
    border-radius: 50%;
    position: absolute;
    z-index: 15;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s ease;
    transition-property: background, transform;
    transform-origin: 100% 100%;
    backdrop-filter: grayscale();
}

.link-grow{
    transform: scale(2);
}

.background{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url('Images/Background-01.jpg');
    background-size: cover;
    background-position: center;
}

/*PAGE*/

.page{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    color: #fff;
    font-size: 100px;
    font-family: Louis-George-cafe;
    background: transparent;
}

/*HOME*/

#home{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    z-index: 3;
}

.wrapper{
    display: flex;
    align-items: center;
}
.wrapper .dynamic-txts{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 90px;
    line-height: 90px;
    overflow: hidden;
}
.dynamic-txts li{
    color: #fff;
    list-style: none;
    font-size: 60px;
    font-weight: 500;
    position: relative;
    top: 0;
    animation: slide 30s steps(15) infinite;
    animation-delay: 3s;
}
@keyframes slide {
    100%{
        top: -1350px;
    }
}
.dynamic-txts li span{
    position: relative;

}
.dynamic-txts li span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 90PX;
    width: 100%;
    background: #690895;
    animation: typing 2s  infinite;
    animation-delay: 3s;
    transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
@keyframes typing {
    100%{
        left: 100%;
        width: 0%;
        margin: 0 -35px 0 35px;
    }
}

#home #button{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 50px;
    border: solid 3px;
    border-radius: 50px;
    border-color: #fffe00;
    color: #fff;
    font-size: 15px;
    opacity: 0;
    animation: appear 2s forwards;
    animation-delay: 1s;
    cursor: none;
}

@keyframes appear {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#home a li{
    list-style: none;
}

#home #button .text{
    opacity: 0;
    animation: appear1 2s forwards;
    animation-delay: 1.5s;
}

@keyframes appear1 {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#home #button img{
    position: relative;
    left: 10px;
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: translateY(-5px);
    animation: appear2 2s forwards;
    animation-delay: 2s;
}

@keyframes appear2 {
    0%{
        transform: translateY(-5px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

/*WORKS*/

#works{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

#works .colon{
    position: relative;
    display: grid;
    width: 700px;
    height: 700px;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 25%);
    grid-template-rows: repeat(3, 25%);
    justify-content: center;
    align-content: center;
    z-index: 3;
}

#works .colon .box{
    background-color: #fffe00;
    border-radius: 25px;
}

#works .colon .box a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    background-image: linear-gradient( #00000000, #690895);
    text-decoration: none;
    cursor: none;
    opacity: 0;
    transition: 1s;
}

#works .colon .box:hover,
#works .colon .box a:hover{
    opacity: 1;
}

#works .colon .box a li{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 150px;
    height: 50px;
    border: solid 3px;
    border-radius: 50px;
    border-color: #fffe00;
    color: #fff;
    font-size: 13px;
    cursor: none;
}

.project1{
    grid-column: 1 / 1;
    background-image: url('Images/Trumpetorial\ Logo\ Design-08.jpg');
    background-size: cover;
    background-position: center;
}

.project2{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background-image: url('Images/Aussehen\ Brand\ Identity-09.jpg');
    background-size: cover;
    background-position: center;
}

.project3{
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    background-image: url('Images/White\ Doyic\ Isometric\ Business\ Cards.jpg');
    background-size: cover;
    background-position: center;
}

.project4{
    grid-column: 3 / 2;
    background-image: url('Images/Artboard\ 1-100.jpg');
    background-size: cover;
    background-position: right;
}

.project5{
    grid-column: 3 / 3;
    grid-row: 1 / 4;
    background-image: url('Images/Logofolio-01.jpg');
    background-size: cover;
    background-position: center;
}

/*ABOUT ME*/

#about-me{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.text-colon{
    position: relative;
    display: flex;
    text-align: left;
    width: 75%;
    font-size: 30px;
}

#about-me a li{
    list-style: none;
}

#about-me #button{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 50px;
    border: solid 3px;
    border-radius: 50px;
    border-color: #fffe00;
    color: #fff;
    font-size: 15px;
    cursor: none;
}

/*CONTACT*/

#contacts{
    position: relative;
    display: flex;
}

#contacts .content-con {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.25;
}

form{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
    height: 360px;
    flex-direction: column;
    gap: 20px;
    background: transparent;
    font-family: Louis-George-cafe;
    font-weight: bolder;
}

#part{
    position: relative;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    width: 620px;
    flex-direction: row;
    gap: 20px;
}

.inputBox{
    position: relative;
    display: flex;
    width: 300px;
}

#part .inputBox,
#part .inputBox:nth-child(2){
    position: relative;
    display: flex;
    height: 50px;
    width: 300px;
}

form .inputBox:nth-child(3){
    position: relative;
    display: flex;
    height: 50px;
    width: 620px;
}
.inputBox:nth-child(4){
    position: relative;
    display: flex;
    width: 620px;
    height: 150px;
}


.inputBox input{
    width: 100%;
    padding: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: 5px;
    outline: none;
    color: #fff;
    font-size: 25px;
    transition: 0.5em;
}

form .inputBox:nth-child(3) input{
    position: relative;
    display: flex;
    width: 620px;
}

.inputBox:nth-child(4) input{
    position: relative;
    display: flex;
    width: 620px;
    height: 150px;
}

.inputBox span{
    position: absolute;
    left: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 25px;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    transition: 0.5s;
}

.inputBox input:valid ~ span,
.inputBox input:focus ~ span{
    transform: translateX(10px) translateY(-7px);
    font-size: 10px;
    padding: 0 10px;
    background: #fffe00;
    color: #690895;
    border-radius: 2px;
    letter-spacing: 0.2em;
}

.inputBox input:valid,
.inputBox input:focus{
    border: 1px solid #fffe00;
}

.inputBox a{
    text-decoration: none;
}

form button{
    width: 200px;
    height: 50px;
    color: #fff;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    background: transparent;
    border: 3px solid #fffe00;
    border-radius: 50px;
    cursor: none;
}

form li{
    display: flex;
    padding: 5px;
    list-style: none;
}

/*SCROLL DOWN ANIMATION*/

.reveal{
    opacity: 0;
    transition: 5s;
}

.reveal.active{
    opacity: 1;
    transition: 4s;
}

/*FOOTER*/

#socials{
    position: fixed;
    display: flex;
    left: 35px;
    top: 80%;
    transform: translateY(-80px);
    z-index: 3;
}

#socials ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    height: 150px;
    justify-content: space-between;
}

#socials ul li{
    margin: 10px;
    color: #fffe00;
    font-size: 25px;
    font-family: Type-Icon;
    text-decoration: none;
    cursor: none;
}

#link{
    display: flex;
    width: 200px;
    list-style: none;
}

#whatsappPage{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100vh;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    color: #fff;
    background: #46056463;
    backdrop-filter: blur(5px);
    opacity: 0;
    z-index: -2;
}

#whatsappPage #cancel{
    position: absolute;
    display: flex;
    top: 30%;
    left: 60%;
    transform: translate(-30%, -60%);
    cursor: none;
    z-index: 21;
}

#whatsappPage #cancel img{
    width: 50px;
    height: 50px;
}

#whatsappPage #QRcode{
    background-image: url('Images/WhatsApp QRCode.jpg');
    background-size: cover;
    background-position: center;
    width: 200px;
    height: 200px;
    border: solid 2px #fffe00;
    border-radius: 20px;
}

#whatsappPage a{
    position: absolute;
    top: 90%;
    transform: translateY(-90%);
    text-decoration: none;
}

#whatsappPage #button{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    color: #fff;
    background: none;
    border: solid 3px #fffe00;
    border-radius: 50px;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    cursor: none;
}

#twitterPage{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100vh;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    color: #fff;
    background: #46056463;
    backdrop-filter: blur(5px);
    opacity: 0;
    z-index: -2;
}

#twitterPage #cancel{
    position: absolute;
    display: flex;
    top: 30%;
    left: 60%;
    transform: translate(-30%, -60%);
    cursor: none;
    z-index: 21;
}

#twitterPage #cancel img{
    width: 50px;
    height: 50px;
}

#twitterPage #QRcode{
    background-image: url('Images/Twitter QRCode.jpg');
    background-size: 210px;
    background-position: center;
    width: 200px;
    height: 200px;
    border: solid 2px #fffe00;
    border-radius: 20px;
}

#twitterPage a{
    position: absolute;
    top: 90%;
    transform: translateY(-90%);
    text-decoration: none;
}

#twitterPage #button{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    color: #fff;
    background: none;
    border: solid 3px #fffe00;
    border-radius: 50px;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    cursor: none;
}

#instagramPage{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100vh;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    color: #fff;
    background: #46056463;
    backdrop-filter: blur(5px);
    opacity: 0;
    z-index: -2;
}

#instagramPage #cancel{
    position: absolute;
    display: flex;
    top: 30%;
    left: 60%;
    transform: translate(-30%, -60%);
    cursor: none;
    z-index: 21;
}

#instagramPage #cancel img{
    width: 50px;
    height: 50px;
}

#instagramPage #QRcode{
    background-image: url('Images/Instagram QRCode.jpg');
    background-size: cover;
    background-position: center;
    width: 200px;
    height: 200px;
    border: solid 2px #fffe00;
    border-radius: 20px;
}

#instagramPage a{
    position: absolute;
    top: 90%;
    transform: translateY(-90%);
    text-decoration: none;
}

#instagramPage #button{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    color: #fff;
    background: none;
    border: solid 3px #fffe00;
    border-radius: 50px;
    font-family: Louis-George-cafe;
    font-weight: bolder;
    cursor: none;
}

/*MOBLIE VIEW VERSION*/

@media only screen and (orientation: portrait){
  header{
    top: 30px;
    width: 300px;
    height: 50px;
    border-radius: 50px;
}

header #pic{
    left: 20px;
}

#navBar{
    right: 25px;
    transition: 0.5s;
    overflow: hidden;
}

#navBar.active{
    height: 340px;
}

#navBar .toggle{
    position: relative;
    display: flex;
    top: 0;
    width: 50px;
    left: 100px;
    height: 50px;
    align-items: center;
    justify-content: flex-end;
    cursor: none;
}

#navBar .toggle::before{
    content: "";
    margin-right: 0px;
}

#navBar .toggle.active:before{
    content: "";
    margin-right: 0px;
}

#navBar .toggle span{
    position: relative;
    width: 20px;
    height: 50px;
}

#navBar .toggle span::before{
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fffe00;
    transition: 0.5s;

}

#navBar .toggle span::after{
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fffe00;
    transition: 0.5s;
}

#navBar .toggle.active span::before{
    transform: rotate(225deg);
    top: 24px;
}

#navBar .toggle.active span::after{
    transform: rotate(135deg);
    bottom: 24px;
}

#navBar ul{
    flex-direction: column;
    align-items: flex-end;
    top: 100px;
}

#navBar ul li a{
    display: flex;
    height: 40px;
    color: #fff;
    transition: 1s;
}

#navBar ul li a:hover{
    transition: 0s;
    color: #fffe00;
}

.page{
    font-size: 50px;
}

.wrapper .dynamic-txts{
    height: 25px;
    line-height: 25px;
}

.dynamic-txts li{
    font-size: 25px;
    font-weight: bolder;
    animation: slide 30s steps(15) infinite;
    animation-delay: 3s;
}
@keyframes slide {
    100%{
        top: -375px;
    }
}

.dynamic-txts li:nth-child(9){
    font-size: 20px;
    font-weight: bolder;
}

/*CURSOR*/
.cursor{
    display: none;
}

/*WORKS*/


#works .colon{
    width: 350px;
    height: 350px;
    grid-gap: 10px;
}

#works .colon .box a{
    border-radius: 25px;
}

#works .colon .box a li{
    width: 75px;
    height: 25px;
    border-radius: 12.5px;
}

/*ABOUT ME*/

.text-colon{
    font-size: 15px;
}

/*CONTACT*/

form{
    height: 180px;
    gap: 10px;
}

#part{
    width: 310px;
    gap: 10px;
}

.inputBox{
    width: 150px;
}

#part .inputBox,
#part .inputBox:nth-child(2){
    width: 150px;
}

form .inputBox:nth-child(3){
    width: 310px;
}
.inputBox:nth-child(4){
    width: 310px;
}


.inputBox input{
    font-size: 12.5px;
}

form .inputBox:nth-child(3) input{
    width: 310px;
}

.inputBox:nth-child(4) input{
    width: 310px;
}

.inputBox span{
    font-size: 12.5px;
}

form button{
    width: 150px;
    height: 50px;
    border-radius: 25px;
}
}