/* SETTINGS */
*{
    padding: 0;
    margin: 0;
}

body{
    background-color: black;
    color: white;
    overflow-x: hidden;
}

.container{
    margin: 3% 5%;
    
}
/* FONT FAMILY */
h1{
    font-family: "Goldman", serif;
    font-weight: 700;
    font-style: normal;
}

span, p{
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-variation-settings:
    "wdth" 100;
}

a, input, textarea, small, #scroll, h3{
    font-family: "Goldman", serif;
    font-weight: 400;
    font-style: normal;
}



/* -------------------------------------------------------- */
/* NAV BAR */
.homenav{
    position: fixed;
    justify-content: center;
    top: 0%;
    width: 100vw;
    z-index: 999;
    padding: 3%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
  }

.sticky{
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0px 9px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    border-radius: 6%;
}

.homenav ul{
    display: flex;
    list-style-type: none;
    text-align: center;
}

.homenavli{
    display: flex;

}

.homenavli li{
    padding-left: 10%;  
}

#logo{
    text-align: left;
}

.homenavli li a {
    text-decoration: none;
    color: white;
    padding: 20%;
}

.homenavli li a:hover{
    color: fuchsia;
    text-transform: uppercase;
    font-weight: 700 ;
}

.logo-container, .links-container{
    width: 50%;
}

/* HOME PAGE */
#home{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.textframe{
    position: relative;
    right: 10%;
}

.textframe h1{
    text-transform: uppercase;
    font-size: 7vw;
    -webkit-text-stroke: 1px white;
    /* https://css-tricks.com/adding-stroke-to-web-text/ */
    color: transparent;
    /* https://stackoverflow.com/questions/20048225/invisible-transparent-font-color-with-css-on-all-major-browsers */
}

.textframe .iam{
    position: relative;
    left: -30%;
}

.textframe .yn{
    position: relative;
    left: 40%;
}

.textframe span{
    text-transform: lowercase;
    color: white;
    -webkit-text-stroke: 0;
    position: absolute;
    top: -5%;
    padding-left: 10%;
}

.back-circle{
    width: 35vw;
    height: 35vw;
    margin-left: 10%;
    border-radius: 100%;
    background-color: Fuchsia;
    z-index: -1;
    position: absolute;
    right: 15%;
}

.outline-circle{
    width: 300px;
    height: 300px;
    border-radius: 100%;
    border: 1px solid white;
    position: absolute;
    left: -5%;
    top: -10%;
    z-index: -1;
}


.gradient-blue, .gradient-orange, .gradient-pink{
    width: 700px;
    height: 700px;
    border-radius: 100%;
    filter: blur(6.4px);
    z-index: -2;
    position: absolute;
}

.gradient-blue{
    background: radial-gradient(50% 50% at 50% 50%, rgba(38, 0, 255, 0.46) 0%, rgba(153, 0, 153, 0.00) 100%);    
    top: 30%;
    left: 40%;
}

.gradient-pink{
    background: radial-gradient(50% 50% at 50% 50%, #F0F 0%, rgba(153, 0, 153, 0.00) 100%);
    top: 0%;
    left: 53%;
}

.gradient-orange{
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 149, 0, 0.46) 0%, rgba(153, 0, 153, 0.00) 100%);
    top: 0%;
    left: 35%;
}
/* Gradient generator used https://angrytools.com/gradient/ */

#scroll {
    font-size:1vw;
    position: absolute;
    opacity: 0.2;
    top: 80%;
    left: 45%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1vw;
}


/*  ABOUT PAGE  */
#about{
    padding: 15% 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

#about .outline-circle{
    width: 200px;
    height: 200px;
    position: absolute;
    top: -20%;
    left: 80%;
}

.abouttext{
    padding: 10%;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0px 9px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    width: 30%;
    border-radius: 6%;
    position: relative;
}

.abouttext h1{
    margin-bottom: 10%;
}

#container3d{
    width: 70%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
}

#about .gradient-grp{
    position: relative;
    right: 60%;
    bottom: 200px;
}

#about .gradient-grp .gradient-blue{
    top: 200px;
    left: 50%;
}

#about .gradient-grp .gradient-pink{
    left: 100px;
}

#about .gradient-grp .gradient-orange{
    left: -100px;
}


/* WORK PAGE */
#work{
   position: relative;
    padding: 10% 0;
}

.project-grp{
    display: flex;
}

.project{
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    padding: 0 2%;
    text-align: center;
    flex-wrap: wrap;
}

.project h1{
    flex: 100%;
}

.project-img{
    flex: 100%;
    width: 70vw;
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-img img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-des{
    position: absolute;
    padding: 10% 20%;
    left: 0;
    text-align: center;
}

.project-des:hover{
    background-color:rgba(0, 0, 0, 0.7);
}


.project-des p{
    font-style:normal;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
}

.project-des:hover p, .project-des:hover h3 {
    opacity: 1; /* Show text on hover */
}

h3{
    color: #F0F;
    opacity: 0;
}

#work .gradient-grp{
    position: absolute;
    left: -10%;
    top: 0%;
    opacity: 70%;
    z-index: -2;
    
}

#work .grp2 {
    left: 80%;
    top: 10%;
    scale: 150%;
}

#work .gradient-grp .gradient-blue{
    top: 200px;
    left: 50%;
}

#work .gradient-grp .gradient-pink{
    left: 100px;
}

#work .gradient-grp .gradient-orange{
    left: -100px;
}

#work .outline-circle{
    position: absolute;
    width: 1200px;
    height: 1200px;
    left: -45%;
}

/* CONTACT PAGE */
#contact{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.textbox{
    width: 40%;
    text-align: center;
    margin-right: 5%;
}

#contact .gradient-grp{
    position: absolute;
    left: -10%;
    top: -40%;
    opacity: 70%;
    z-index: -2;
}

#contact .gradient-grp .gradient-blue{
    top: 200px;
    left: 50%;
}

#contact .gradient-grp .gradient-pink{
    left: 100px;
}

#contact .gradient-grp .gradient-orange{
    left: -100px;
}

.formbox{
    width: 60%;
}

input, textarea{
    display: block;
    border: none;
    width: 90%;
    background-color: transparent;
    padding: 5% 3%;
    border-bottom: 1px solid white;
    color: white;
    margin-bottom: 5%;
    font-size: 1em;
}

input:focus, textarea:focus{
    outline: none;
    border-bottom: 1px solid fuchsia;
    /* https://stackoverflow.com/questions/3397113/how-to-remove-focus-border-outline-around-text-input-boxes-chrome */
} 

.submit{
    display: flex;
    justify-content: end;
    padding: 5%;
}

.submitbtn{
    cursor: pointer;
} 

footer{
    width: 100%;
    height: 15%;
    padding: 2% 0;
    color: fuchsia;
    opacity: 60%;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    bottom: 0;
}
