@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
    --violet: #A239CA;
    --ocean: #4717F6; /*#4717F6 Black is not the new blue*/
    --sun: #FFCE0C;
    --sand: #E7DFDD;
    --black: #35343d;
}


html,body {
    margin:0;
    padding:0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: var(--ocean);
    background-color: white;
    animation: 0.6s ease-in-out fadeIn;
}

main {
    width: 100vw;
    height: fit-content;
    margin:4rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    width: 100%;
    position:fixed;
    top:0;
    z-index: 9999;
}


/*TEXT SETTINGS*/
.tag {
    font-size: 1.5rem;
    width: fit-content;
    background-color: var(--sun);
    padding:0.1rem 0.2rem;
}

a { text-decoration: none !important; cursor: pointer;}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
   }

a:hover {text-decoration: underline;}

.visible {text-decoration: underline !important; white-space: wrap;}
.visible:hover {color:var(--violet);}

h1 {
    font-size: 4rem;
} 

h2 {
    font-size: 3rem;
} 

h3 {
    font-size: 2rem;
} 


.text-icon {
    display: flex;
    width: fit-content;
    max-width: 100vw;
    justify-content: flex-start;
    align-items: left;
    gap:0.5rem;
    flex-wrap:wrap;
}

.icon {
    width: 6rem;
}

.fancy {
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='16' viewBox='0 0 100 16'%3E%3Cpath d='M0,12 Q6,10 10,12 T20,12 T30,12 T40,12 T50,12 T60,12 T70,12 T80,12 T90,12 T100,12' stroke='%23ffce0c' stroke-width='10' stroke-linecap='round' vector-effect='non-scaling-stroke' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    transition: background-image 0.3s ease; /* Optional: Add transition for smooth hover effect */
}

.fancy:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='16' viewBox='0 0 100 16'%3E%3Cpath d='M0,12 Q4,9 10,12 T20,12 T30,12 T40,12 T50,12 T60,12 T70,12 T80,12 T90,12 T100,12' stroke='%23ffce0c' stroke-width='10' stroke-linecap='round' vector-effect='non-scaling-stroke' fill='none'/%3E%3C/svg%3E");
}




/*BUTTON*/
.primary__button{
    font-size: 1.2rem;
    width: fit-content;
    display: flex;
    padding: 1rem 4rem;
    justify-content: center;
    align-items: center;
    color: #FFF !important;
    background-color: var(--ocean);
    border-radius: 9999px;
    margin-top:3rem;
    -webkit-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
    -moz-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
    box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
    transition: all ease-in-out 0.3s;
}

.primary__button:hover{
    color:var(--ocean) !important;
    background-color: var(--sun);
    transform: rotate(5deg) scale(1.3);
    transition: all ease-in-out 0.3s;

}

.nav__btn{
    background-color: var(--ocean);
    color:#fff !important;
    border-radius: 9999px;
    padding:0.5rem 1rem;
    transition: all ease-in-out 0.3s;
}

.nav__btn:hover{
    color: var(--ocean) !important;
    background-color: var(--sun) !important;
    transition: all ease-in-out 0.3s;
}
/*IMG*/

.imgHolder50 {
    display: flex;
    width:50%;
    min-width: 300px;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.imgHolder50 > img {
    width:100%;
}

/*HEADER*/

.nav__header {
    height: fit-content;
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 9999;
}

.brand{
    display: flex;
    align-items: center;
    margin:1rem 0 1rem 4rem;
}

.logo__holder{
    width:4rem;
    margin:0;
}


.nav__list {
    display: flex;
    align-items: right;
    justify-content: space-around;
    list-style-type: none;
    margin-right:4rem;
}

.nav__link {
    text-decoration: none;
    background-color: #fff;
    border: 4px solid #fff;
    border-radius: 9999px;
    padding:0.5rem 1rem;
    font-size: 1rem;
    margin:0 1rem;
    white-space: nowrap;
    color:var(--ocean);
    transition: all ease-in-out 0.3s;
}

.nav__link:hover {
   text-decoration: none;
   -webkit-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
   -moz-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
   box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
   transition: all ease-in-out 0.3s;
}

/*FOOTERR*/
.nav__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 4rem;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid var(--ocean);
    background: var(--ocean);
    color:#fff;
    font-size: 0.8rem;
    font-weight: 300;
}

.footer__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
}
.footer__item {
    padding: 0.25rem 0rem;
}

.footer__link  {
    color:#fff;
}
.footer__link:hover{
     text-decoration: underline !important;
}
.social__list{
    display: flex;
    align-items: center;
    gap:1rem;
}

.social__icon{
    width:36px;
    height:36px;
    transition: all ease-in 0.2s;

}

.social__icon:hover{
    transform: translate(0,-5px) rotate(10deg);;
    transition: all ease-in-out 0.3s;
}

.social__icon:hover > path {
    fill:var(--sun);
}

/*PAGE HEADER*/
.page__header {
    padding:4rem 6rem;
    max-width:100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content:flex-start;
    gap: 1 0rem;
}

.header__info {
    width:50vw;
}

.statement {
    color:var(--ocean);
    font-family: 'Manrope', sans-serif;
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 50%;
    height:100%;
}

/*SECTION*/

.page__section {
    padding:4rem 6rem;
    max-width:100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:0.5rem;
    justify-content: flex-start;
}

.section__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;

}
.section__description {
    font-size: 1.2rem; 
    line-height: 1.5;
    max-width: 40rem; 
}

/*Project Section*/
.projects__list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin:4rem 0;
}
.project__wrap {
    width: 100%;
}

.project__info {
    display: flex;
    justify-content: space-between;
    color:var(--ocean);
    border-color: var(--ocean);
    align-items:center;
    border-radius: 9999px;
     -webkit-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
    -moz-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
    box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.07);
    padding:0.5rem 2rem;
    transition: all ease-in-out 0.5s;
}


.project__pop_up {
    display:none;
    width: 400px;
    height:300px;
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
    position: fixed;
    top:0;
    right:0;
    z-index: 9999;
    background-color: var(--sun);
}

.project__info:hover {
    color: #fff !important;
    border-color:#fff;
    background-color: var(--ocean);
    transition: all ease-in-out 0.5s;
}

.project__info:hover  .project__pop_up {
    transform: translate(-10%,10%);
    display: block;
    transition: all ease-in-out 0.5s;
}


.project__link {
    font-family: 'Manrope',sans-serif;
    font-weight: 100;
    width:50%;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer !important;
}

.project_tags__list {
    display: flex;
    align-items: left;
    justify-content: flex-start;
    gap:0.5rem;
}

.project__tag {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    padding:0.5rem 0.8rem;
    border: 1px solid;
    border-radius: 9999px;
    display: inline-block;
    white-space: nowrap;  
} 

/*Project page*/
.project__container {
    display: flex;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.project__content {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap:1rem;
    }    .curved-tr {
    border-top-right-radius: 15vw;
    overflow: hidden;
    }

        .curved-bl{
    border-bottom-left-radius: 15vw;
    overflow: hidden;
    }

.project__text {
    padding: 6rem 0;
    margin:0 6rem;
    width: calc(100vw - 12rem);
}

.project__description {
    width: 100%;
    max-width: 40rem;
}

.project__details {
    margin-top: 3rem;
    line-height: 1.5;
}

.project__img-grid {
    width: 100%;
    display: flex;
}    

.project__column {
    flex: 1;
    padding: 0.5rem;
    text-align: center;
}

.project__img-cover {
    width: 100vw;
    height: auto;
    object-fit: cover;
}

.project__video {
    width:100vw;
    height:calc(100vw*9/16);
}

.project__text-grid {
    width: calc(100vw - 12rem);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding:6rem 0; 
    gap:3rem;   
}

.col-3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(33% - 2rem*2);
    min-width: 20rem;
}

.col__number {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    text-underline-offset:0.4rem;
    text-decoration-thickness: 8px;
    text-decoration-color: #FFCE0C;
    margin-bottom: 1rem;
}

.col__title {
    font-size: 1.8rem;
    text-align: center;
}

.video__background {
    width: 100vw;
    height: fit-content;
}

.bg-video {
    width: 100%;
    height:calc(100vw*9/16);
    object-fit: cover;
}

.prototype__display {
    width: 100vw;
    height: 100vh;
}
/*About me*/

.aboutme {
    width: 100%;
    display: flex;
    align-items: left;
    flex-wrap: wrap-reverse;
    gap:1rem;
}

.experiences__list {
    font-family: 'Manrope',Sans-serif;
    display: flex;
    gap: 2rem 4rem;
    width: 100%;
    flex-wrap: wrap;
}
/*EXPERIENCE*/
.experience {
    font-family: 'Manrope',Sans-serif;
    display: flex;
    width:35rem;
    height:100%;
    flex-direction: column;
    transition: all ease-in-out 0.5s;
    gap:1rem 0;
}

.experience__description {
    display: flex;
    flex-direction: column;
    gap:1rem;
}

.jobtitle {
    color:var(--ocean);
    font-size: 1.5rem;
    font-weight: 700;
}
.company {
    font-size: 1rem;
    font-weight: 700;
}

/*JOTFORM*/
.contact {
    width: 100%;
    min-width: 600px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:4rem;
}

.formTitle {
    font-weight: 600;
}
.jotForm {
    width:500px;
    padding-top: 4rem;
    margin:1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*ANIMATION*/

/*fadeinup*/
.fadeInUp{animation:fadeInUp 1.5s ease backwards;}

@keyframes fadeIn {
    5% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes fadeInUp{
    0%{transform:translate(0px, 100px); opacity: 0;}
    100%{transform:translate(0px, 0); opacity: 1;}
  }

/*Transition fallIn*/
.fallIn {
    animation: fallIn 1s ease-in-out;}

@keyframes fallIn {
    5% {
      transform: rotate(-20deg);
      transform-origin: top left;
    }

    90% { transform: rotate(2deg); }
    
    100% {
        transform: rotate(0deg);
    }
  }

  @keyframes fadeInUp{
    0%{transform:translate(0px, 100px); opacity: 0;}
    100%{transform:translate(0px, 0); opacity: 1;}
  }

/*SCROLL DOWN*/
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 10px;
    display: block;
    text-align: center;
    width: 1.5rem;
    height: 1.5rem;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    z-index: 1;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 1.5s ease-in-out infinite;
    -moz-animation:    fade_move_down 1.5s ease-in-out infinite;
    animation:         fade_move_down 1.5s ease-in-out infinite;
}
  
  
  /*animated scroll arrow animation*/
  @-webkit-keyframes fade_move_down {
    0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  @-moz-keyframes fade_move_down {
    0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  @keyframes fade_move_down {
    0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }

/*MARQUEE*/
.marquee {
    position: relative;
    overflow: hidden;
    --offset: 10vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
}

.pattern {
    width: 10vw;
    display: flex;
    align-items: center;
}

.marquee__inner {
    width: fit-content;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 10s linear infinite;
    animation-play-state: running;
    will-change: transform; /* Hint to the browser about the animation */
}

.marquee span {
    color: var(--ocean);
    font-weight: 700;
    font-size: 8vw;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
    padding: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }
    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}

/*Spin*/
.spinning {
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
    /* transform: rotate(3deg); */
     /* transform: rotate(0.3rad);/ */
     /* transform: rotate(3grad); */ 
     /* transform: rotate(.03turn);  */
  }
  
  @keyframes spin {
      from {
          transform:rotate(0deg);
      }
      to {
          transform:rotate(360deg);
      }
  }

