@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url("https://use.typekit.net/tjd2kuh.css");


:root{
    --tiffany: #81D8D0;
    --darklilac:#000000;
    --white2: #FFFFFF;
    --white3: red;

}


html, body {
  margin: 0;
  padding: 0;
  font-family: 'Anton', sans-serif;
  height: 100%; /* Add this to ensure the body covers the entire viewport height */

}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure body covers the entire viewport height */
  overflow-x:hidden;

}

main {
  flex: 1; /* Fill the remaining vertical space */
  position: relative; /* Add position: relative to establish a new stacking context */
  z-index: 1; /* Ensure main content is above footer */
}



section{
    min-height:100vh;
}

.container-this{
  padding:0 2vw 0 2vw;
}

/** HEADER PART **/

.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color:#FFF;
    padding: 10px;
    transition: top 0.5s ease-in-out;
}


.logo p {
    font-size: calc(clamp(1.5em, 5vw, 3em) * .875);
    font-weight: bold;
    padding-top: 25px;
  }
.logo a{
  color: var(--darklilac);
  text-decoration: none;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 15px;
}

.menu ul li {
    display: inline-block;
    margin-right: 50px;
    
}

.menu ul li a {
    text-decoration: none;
    color:var(--darklilac);
    padding: 5px;
    font-size: calc(clamp(1.5em, 5vw, 3em) * .875);

    box-shadow: inset 0 0 0 0 var(--tiffany);
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.menu ul li a:hover {
    box-shadow: inset 140px 0 0 0 var(--tiffany);
    color: white;
}


.menu-toggle {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    background-color: var(--tiffany);
    border-radius: 50%;
    z-index: 999;
    text-align: center;
    line-height: 70px;
    color: var(--darklilac);
    cursor: pointer;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    letter-spacing: 1.2px;
    font-size: 1.5rem;
  }

.menu-toggle span{
  letter-spacing: 1.2px;
  font-size: 1.5rem;
}
  
  .menu-toggle.show {
    opacity: 1;
    max-height: 70px;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    letter-spacing: 1.2px;
    font-size: 1.2rem;
  }
  
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darklilac);
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    z-index: 998;
}

.mobile-menu.open {
    transform: translateX(0%);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 20px; /* Add padding */

    /* Center the menu items */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }

.mobile-menu ul li {
    margin: 10px;
    padding: 10px; /* Add padding */
}

.mobile-menu ul li a {
    color: var(--white2);
    text-decoration: none;
    font-weight: bold;
    font-size:2rem;
    margin: 0 -.25rem;
padding: 0 .25rem;
transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
font-size:3.5rem;
}

.mobile-menu ul li a:hover {
  box-shadow: inset 200px 0 0 0 var(--tiffany);
}


.headerpart{
    background: var(--white2);
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;

}

.headerpart p{
    color:var(--white2);
}

.header-text p {
    text-align: center;
}

.upper-text {
  position: absolute;
  bottom: 25vh;
  left: 5vw;
}

.lower-text {
  position: absolute;
  bottom: 0vh;
  right: 20vw;
}


.upper-text-project p {
  font-size: calc(clamp(10rem, 15vw, 18rem) * .875);
  font-weight: bold;
  margin: 0;
  color: var(--darklilac);
  position: absolute;
  top: 30vh;
  left: 5vw;
}

.lower-text p  {
    font-size: calc(clamp(2rem, 15vw, 15rem) * .875);
    font-weight: bold;
    margin: 0;
    color:var(--darklilac);
  }


  .project-class{
    position: absolute;
    bottom: 10vh;
    right: 5vw;
    font-size: calc(clamp(3em, 5vw, 5em) * .875);
    padding: 20px;
  }
/**about me**/
.abt-me {
    background: #FFF;
    position:relative;
  }
.edges{
  height: 120vh;
  background: var(--darklilac);
  border-radius: 5vw 5vw 0 0;
}
  .abt-me h2 {
    padding-top: 15vh;
    font-size: calc(clamp(3em, 5vw, 10em) * .875);
    color: var(--white2);
  }

.name-change p{
    position:absolute;
    top:-30vh;
}

.section-header{
        display: flex;
        justify-content: flex-end;
        position:relative;
}


.line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 2px;
  background-color: var(--white2);
  transition: width 0.3s ease-in-out;
}







  /**BUTTONS for footer**/
  .my-button {
    width: 350px;
    height: 85px;
    background: #000;
    border-radius: 35px;
    margin: 50px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.5s ease-in-out;
    color: var(--tiffany);
    z-index: 2;
    pointer-events: auto;
  }

.my-button::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tiffany);
  transition: bottom 0.5s ease-in-out;
  z-index:-1;
}

.my-button:hover {
  background: var(--tiffany);
  color:#000;
}

.my-button:hover::before {
  bottom: 0;
}

.footer-button a {
  font-size: calc(clamp(1.5em, 1vw, 3em) * .875);
  text-decoration:none;
}

/**CURSOR**/
.cursor {
  pointer-events: none;
  position: fixed;
  display: block;
  border-radius: 0;
  top: 0;
  left: 0;
  z-index: 9999999999999999;  
  width: 250px; /* Adjust this width to match your cursor image size */
  height: 200px; /* Adjust this height to match your cursor image size */

}


/**INNER PAGES**/
.chroma-image{
  padding-top:100px;
}

.first-part{
  padding-bottom:25px;
}
.second-part{
  padding-bottom:25px;
}
.third-part{
  padding-bottom:25px;
}
.fourth-part{
  padding-bottom:25px;
}
.fifth-part{
  padding-bottom:25px;
}
.sixth-part{
  padding-bottom:25px;
}

.edges-chroma{
  background: var(--darklilac);
  border-radius: 5vw 5vw 0 0;
}

.edges-chroma img{
  width:100%;
}

.chroma h2 {
  padding-top: 15vh;
  font-size: calc(clamp(3em, 5vw, 10em) * .875);
  color: var(--white2);
  opacity: 1 !important;
  padding-right: 3vw;
}

.chroma .whatischroma {
  color: var(--white2);
  font-size: calc(clamp(2rem, 5vw, 2.5rem) * .875);
  position: absolute;
  bottom: 35vh;
}

.chroma p {
  color: var(--white2);
  font-size: calc(clamp(2rem, 5vw, 2.5rem) * .875);
}

.chroma .text-part{
  padding:3vh;
}
.chroma-text{
  position: relative;
  height: 100vh;
}


.chroma-video{
  padding-bottom:50px;
  padding-top: 10vh;
  text-align:right;
  color:#FFF;
}

.chroma-video .name{
  color:#81D8D0;
}

.chroma-video h3{
  color:var(--tiffany);
  font-size:48px;
}

.chroma-video h4{
  padding-bottom:50px;
}

.text-part h5{
  color:var(--tiffany);
  font-size:48px;
}



/**REPONSIVE CODES**/
/* Media query for screens up to 600px wide */

@media (max-width: 600px) {
  .chroma-video{
    padding-top: 0vh;
  }
  
  
  .upper-text-project p {
    font-size: calc(clamp(10rem, 15vw, 18rem) * .875);
    left: -25vw;
    transform: rotate(90deg);
  }

  .upper-text {
    top: 25vh;
  }
  .lower-text {
    top: 50vh;
  }

  .abt-me h2 {
    opacity: 1 !important;
    transform: translate(0px) !important;
  }

.abt-me span {
  opacity: 1 !important;
}

.abt-me p{
  top:40vh;
}

#changing-text{
  transform: translate(0px, 0px) !important;
}

.index {
  display: none;
}
#workworkwork h2{
  padding-left: 5vw;
}

footer h2{
  opacity: 1 !important;
transform: translate(0px) !important;
}


.menu-toggle {
  right: 20px;
}

.my-button {
  width: 250px;
  font-size: 1rem;
  display: block;
  margin: 0 auto;
    margin-bottom: 0px;
  margin-bottom: 20px;
}
.footer-socials p {
  text-align: center;
}
.footer-socials {
  padding-top: 20px;
}

.footer-message {
  margin-top: 50px;
}
.footer-message {
  text-align: center;
}
}

@media (max-width: 480px) {
 .thumbnail{
  display:none;
 }


 .header-menu .menu{
  display:none;
 }

 .upper-text-project p {

  left: -30vw;

}
}


