@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Pacifico&display=swap');
.pacifico {
    font-family: "pacifico", serif;
}
* {
    padding: 0;
    margin: 0;
}
:root {
    --color1:#0A0F0D;
    --color2:rgba(255, 255, 255, 0.92);
    --color3:#FF7F11;
    --color3Light:#ff8011be;
    --color4:#bf0603;
    --color5:#f5f749;
    --color6:#069e2d;
    --hover:#c3c4c7;
}
::selection {
    background-color: var(--color3);
}
body {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: black;
    font-family: "Manrope", sans-serif;
    color: var(--color2);
}
.topHeader {
    width: 100%;
    height: 5em;
    position: fixed;
    z-index: 100;
    display: flex;
    padding: 1em;
    box-sizing: border-box;
    justify-content: space-between;
    pointer-events: none;
}
.logoHeader {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    font-size: 1.5em;
    gap: .25em;
    font-weight: 900;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    opacity: 0;
}
.logoHeader.visible {
    opacity: 1;
}
.logoHeader > span {
    font-weight: 100;
}

.contactMeButton {
  padding: 1em 2.5em;
  border-radius: 2em;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color2);
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contactMeButton:hover {
  border-color: rgba(255, 180, 100, 0.8);
  box-shadow: 0 0 10px rgba(255, 150, 80, 0.3);
  transform: translateY(-2px);
}
.contactMeButton:active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px) scale(1.05);
}


@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.heroSection {
    width: 100%;
    height: 105vh;
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgba(255, 140, 60, 0.3), rgba(0, 0, 0, 1) 70%),
                linear-gradient(120deg, #b34700, #3a0a00, #1a0000);
    background-size: 200% 200%;
    animation: moveGradient 15s ease infinite;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 2em;
    position: relative;
    flex-direction: column;
    box-sizing: border-box;
}

.heroSection::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.75;
    pointer-events: none;
    mix-blend-mode:overlay;
}   
.availWork {
    background-color: rgba(255,255,255,0.8);
    color: var(--color1);
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 1;
    padding: 1em;
    display: flex;
    gap: 1em;
    font-size: .4em;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 15px 41px 12px rgba(0,0,0,0.1);
}
.dot {
    background-color:var(--color6);
    width: .5em;
    height: .5em;
    border-radius: 10px;
    filter: blur(1px);

}
.title {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
}
.title > h1{
    text-align: center;
    font-weight: 500;
}
.accent1 {
    font-weight: 900;
}
.accent2 {
    font-weight: 600;
}
.accent3 {
    color: var(--color3Light);
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(255, 120, 40, 0.4);
}
.commentar {
    text-align: center;
    font-weight: 400;
    font-size: 0.5em;
    color: var(--color2);
    z-index: 1;
    letter-spacing: 0.2px;
    opacity: 0.5;
}
.seeMore {
    display: inline-block;
    z-index: 1;
}
.seeMore > svg {
    transition: all 0.2s ease-in-out;
    &:hover {
        transform: translateY(3px);
        cursor: pointer;
    }
}
.seeMore > svg:hover > .arrowDown {
    stroke:rgba(255,255,255,1);
    stroke-width: 4;
}
.arrowDown {
    fill: none; 
    transition: all 0.2s ease-in-out;
    stroke: rgba(255,255,255,0.5);
    stroke-linecap: round;
    stroke-width: 3;
}
.author {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0.5em 1em; 
    font-size: 0.75em;
    color: var(--color2);
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    &:hover {
        cursor: pointer;
        color: var(--color3Light);
        opacity: 1;
        transform: translateY(-2px);
        text-shadow: 0 2px 20px rgba(255, 120, 40, 0.25);
    }
}
.skillSection {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.skillSection::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background:linear-gradient(to top,black,rgba(0,0,0,0));
    top: -100%;
    pointer-events: none;
}
.skillHeader {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    padding: 3em 0 0 0;
    box-sizing: border-box;
    gap: 1em;
}
.skillHeader > h2 {
    font-size: 4em;
}
.skillHeader > p {
    text-align: center;
    font-weight: 400;
    font-size: 1em;
    color: var(--color2);
    letter-spacing: 0.2px;
    opacity: 0.5;
}
.skillWrapper {
    padding: 1em;
    display: flex;
    margin: 0 1em;
    gap: 4em;
    flex-wrap:wrap;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.skillBottom {
    display: flex;
    width: 90%;
    gap: 5em;    
    justify-content: center;
}

.skillCard {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    background: rgba(200,200,200,0.10);
    border: 1px solid rgba(255,255,255,0.08);
    gap: 0.5em;
    min-width: 0;
    width: 50%;
    box-shadow: 0px 10px 80px 5px rgba(255, 255, 255, 0.08);
    transition: border 0.1s ease-in-out, filter 0.1s ease-in-out;
}
.skillCard:hover {
    border: 1px solid var(--color3Light);
    filter: drop-shadow(0px 0px 2px  var(--color3Light));
}

.skillCard > h3 {
    padding: 0.25em 0 ;
    font-size: 2.5em;
    white-space: nowrap;
}
.skillCard > p {
    font-size: 1em;
    width: 75%;
    padding: 0.25em;
    text-align: center;
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .75px;

}
.skillCard > p > b {
    color: rgba(255, 255, 255, 0.7);
}

.skillCard > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 80%;
    margin: 0;
    padding: 0;
    align-items: center;
}
.skillCard > ul > li {
    display: flex;
    gap:1em;
    justify-content: center;
}
.skillCard > ul > li > .langage {
    padding: 0.25em 0.5em;
    border-radius: 8px;
    color: white;
    display: inline-block; 
    letter-spacing: 1px;
    font-weight: 500;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(255, 255, 255, 0.075) inset;
}

.skillCard ul .carousel  {
    height: 5em;
    background-color: white;
    color: black;
    border-radius: 10px;
    width: 100%;
    align-items: center;
    display: flex;
    position: relative;
    /*carousel*/
    overflow-x: hidden;
}
.carousel > .carouselInner,
.carousel > .carouselInner2,
.carousel > .carouselInner3 {
    display: flex;
    height: 100%;
    gap: 0.2em;
    align-items: center;
}
.carouselInner {
    animation: carousel 13s linear infinite;
    &:hover {
        animation-play-state: paused;
        cursor: pointer;
    }
}
.carouselInner2 {
    animation: carousel2 13s linear infinite;
    animation-delay: 0.5s;
    &:hover {
        animation-play-state: paused;
        cursor: pointer;
    }
}
.carouselInner3 {
    animation: carousel3 13s linear infinite;
    animation-delay: 1s;
    &:hover {
        animation-play-state: paused;
        cursor: pointer;
    }
}

@keyframes carousel {
    0% {
        transform:translateX(0%); 
    }
    100% {
        transform: translateX(calc(-40.6em)); /* 4 items × 10em + 3 gaps × 0.2em */
    }
}
@keyframes carousel2 {
    0% {
        transform:translateX(0%); 
    }
    100% {
        transform: translateX(calc(-40.6em));
    }
}
@keyframes carousel3 {
    0% {
        transform:translateX(0%); 
    }
    100% {
        transform: translateX(calc(-30.4em)); /* 3 items x 10em + 2 gaps x 0.2em*/
    }
}

.carouselInner > .carouItem,
.carouselInner2 > .carouItem,
.carouselInner3 > .carouItem{
    height: 80%;
    flex: 0 0 10em;
    background-color: black;
    color: var(--color2);
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    &:hover {
        transform: scale(1.025);
        background-color: rgba(40,40,40,1);
    }
}
.carouItem > a > img {
    opacity: 0.65;
    transition: all 0.2s ease-in-out;
    padding: 0.2em;
    box-sizing: border-box;
    filter: grayscale(20%);
}
.carouItem > a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--color2);
}

.carouItem > a > .Bootstrap {
    height: 70%;
}
.carouItem > a > .GSAP {
    height: 70%;
}
.carouItem > a > .JQuery {
    height: 50%;
}
.carouItem > a > .NodeJS {
    height: 60%;
}
.carouItem > a > .Laravel {
    height: 60%;
}
.carouItem > a > .SocketIo {
    height: 70%;
}
.carouItem > a > .MongoDB {
    height: 60%;
}
.carouItem > a > .Three {
    height: 80%;
    filter: invert();
}
.carouItem > a > .Spline {
    height: 70%;
}
.carouItem > a > .Phaser {
    height: 50%;
}
.carouItem:hover  > a > img  {
    opacity: 1;
    transform: scale(1.075);
    filter: brightness(1.15);

}
.carouItem:hover > a > .Three{ 
    filter: brightness(1.15) invert();
}

.skillListContainer {
    width: 100%;
}
.skillList {
    list-style: none;
    font-size: 1.25em;
    letter-spacing: 1px;
    font-weight: 200;
}
.skillList > li {
    display: flex;
    padding: 0.2em;
    gap: .75em;
}
.skillList > li > .material-symbols-outlined {
    background: linear-gradient(120deg, var(--color3), var(--color5));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent; 
    display: inline-block; 
}

/*particles*/
#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
}


.footerSection {
    display: flex;
    height: fit-content;    
    box-sizing: border-box;
    background-repeat: no-repeat;
    position: relative;
    padding: 2em;
    background-size: 200% 200%;
    background: radial-gradient(circle at 50% 140%, rgba(255, 140, 60, 0.3), rgba(0, 0, 0, 1) 70%),
                linear-gradient(120deg, #b34700, #3a0a00, #1a0000);
}
.footerSection::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.75;
    pointer-events: none;
    mix-blend-mode:overlay; 
} 
.footerWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(200,200,200,0.10);
    border-radius: 1em;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
    padding: 2em 1em;
    box-sizing: border-box;
}


.asideFooter {
    flex: 2;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.mainAside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.mainAside > h2:nth-of-type(1) {
    font-size: 2em;
}
.mainAside > p {
    font-size: 1em;
    width: 90%;
    font-weight: 300;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.6);
}
.mainAside > p > b {
    color: white;
    padding-top: 1em;
}

.mainFooter {
    flex: 3;
    display: flex;
    flex-direction: column;
}
.coordsWrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.coordsWrapper > a {
    color: white;
}
.networksIcons {
    display: flex;
    gap: 1em;
}
.networksIcons > a > i{
    color: white;
    font-size: 1.75em;
}
.mainFooter > form {
    display: flex;
    gap: 1em;
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding: 0.5em;
    box-sizing: border-box;
}
.mainFooter > form > h1 {
    display: inline-block;
    width: fit-content;
    margin-bottom: .5em;
    font-size: 2.5em;
}
.mainFooter > form > p {
    margin-bottom: 3.5em;
    font-size: 1.2em;
}
.columnWrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1.5em;
    margin-bottom: 0;
}
.row1 , .row2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2em;
}
.formEntry {
    width: 100%;
    box-sizing: border-box;
    height: 4em;
    position: relative;
}
.formEntry > input {
    background-color: transparent;
    border: none;
    width: 100%;
    height: 2em;
    font-size: 1.25em;
    position: relative;
    color: #c3c4c7;
    box-sizing: border-box;
    &:focus {
        outline: none;
    }
}
.formEntry > input::placeholder,
.bottomInput > textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.formEntry::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    height: 0.25em;
    top: 60%;
    left: 0;
    z-index: 1;
}
.formEntry::after {
    content:"";
    transform: scaleX(0);
    width: 100%;
    height: 0.25em;
    top: 60%;
    z-index: 1;
    left: 0;
    position: absolute;
    background: linear-gradient(120deg, var(--color3), var(--color5));
    transition: all 0.2s ease-in-out;
    transform-origin: left;
}
.formEntry:focus-within::after,
.formEntry:has(input:not(:placeholder-shown))::after{
    transform: scaleX(1);
}
.bottomInput {
    position: relative;
    margin-bottom: 3em;
}
.bottomInput > textarea {
    border: none;
    width: 100%;
    resize: vertical;
    min-height: 1.5em;
    height: 1.5em;
    background-color: transparent;
    position: relative;
    font-family: "Roboto",sans-serif;
    color: white;
    overflow: hidden;
    font-size: 1.25em;
    &:focus {
        outline: none;
    }
}
.bottomInput::before {
    content: "";
    position: absolute;
    width: 100%;
    height: .25em;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
}
.bottomInput::after {
    content: "";
    position: absolute;
    width: 100%;
    height: .25em;
    bottom: 0;
    left: 0;
    background: linear-gradient(120deg, var(--color3), var(--color5));
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.2s ease-in-out;
}
.bottomInput:focus-within::after,
.bottomInput:has(textarea:not(:placeholder-shown))::after {
    transform: scaleX(1);
}
.bottomButton {
    height: 10%;
    display: flex;
    justify-content: right;
    padding-right:1em ;
    align-items: center;
}
.bottomButton > button {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: .85em 2.5em;
    border-radius: 10px;
    color: #fff;
    font-size: 1.2em;
    transition: 0.3s;
    letter-spacing: 1.25px;
}
.bottomButton > button:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
    cursor: pointer;
    border-color: var(--color3);
    filter: drop-shadow(0px 0px 2px  var(--color3Light));
}

.popUp {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    bottom: 5%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 15em;
    left: 50%;
    border-radius: 50px;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    padding: 0.2em;
    gap: 1em;
    overflow: hidden;

}

.popUp > svg > path {
    stroke: var(--color3);
    stroke-width:7;
    fill: transparent;
    stroke-linecap: round;
}
.popUp > svg > circle {
    stroke:  var(--color3);
    fill: transparent;
    stroke-width: 6;
}
.popUp > .popUpText {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.1em;
    gap: 0.3em;
}
/*progress section*/

.progressSection {
    height: 100vh;
    width: 100%;
    position: relative;
}

.progressMain {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2em;
    box-sizing: border-box;
}
.layout {
    font-size: 1.2em;
    width: clamp(20em,40vw,40em);
    aspect-ratio: 16/9;
    border: 1px solid rgb(200,200,200);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0.5em;
    gap: 0.5em;
}
.layoutHeader {
    height: 20%;
    border-radius: 0px;
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
    padding: .5em;
    box-sizing: border-box;
}
.layoutHeader > h1, .layoutHeader > .yourAccount {
    height: 100%;
    width: fit-content;
    padding: 0 1em;
    display: flex;
    align-items: center;
}
.layoutHeader > h1 {
    font-size: 1.2em;
    color: rgb(200, 200, 200);
    font-weight: 400;
}
.yourAccount {
    background-color: rgb(30,30,30);
    border-radius: 10px;
    font-size: .75em;
    font-weight: 100;
    color: rgb(120, 120, 120);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.layoutMain {
    height: 60%;
    display: flex;
    gap: 0.5em;
}
.layoutAside {
    width: 12.5%;
    border-radius: 0px;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0em 0.35em;
    justify-content: space-evenly;
    align-items: center;
}
.layoutAside > .asideText {
    width: 100%;
    height: 10%;
    background-color: rgba(120,120,120,0.6);
    border-radius: 5px;
}



.layoutSection {
    width: 87.5%;
    border-radius: 0px;
    border: 1px solid white;
}
.layoutSection > header {
    width: 100%;
    height: 20%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 0.2em;
    
}
.layoutSection > header > h4 {
    display: inline-block;
    text-decoration: underline;
}

.layoutSection > main {
    height: 80%;
    width: 100%;
    display: flex;
}

.layoutSection > main > .wrapper {
    flex: 2;
    display: flex;
    flex-direction: column;
    padding: 0.5em;
    box-sizing: border-box;
    gap: .5em;
}
.layoutSection > main > .wrapper > .line {
    height: 10%;
    width: 100%;
    background-color: rgba(120,120,120,0.6);
    border-radius: 2px;
}
.layoutSection > main > .wrapper > .paragraph {
    height: 60%;
    width: 100%;
    border-radius: 2px;
    background-color: rgba(120,120,120,0.6);

}
.layoutSection > main > .imageArticle {
    flex: 1;
}
.layoutFooter {
    border-radius: 0px;
    border: 1px solid white;
    height: 15%;
}
.fromThis {
    font-size: 3em;
    color: white;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%,-50%);
}

.toThis {
    display: none;
    position: absolute;
}




/* queries*/
@media screen and (max-width:1100px) {
    .skillBottom {
        flex-direction: column;
        align-items: center;
    }
    .skillCard {
        width: 80vw;
    }   
}
@media screen and (max-width:600px) {
    .skillWrapper {
        padding: 0;
        justify-content: center;
        gap: 2em;
    }
    .skillBottom {
        gap: 2em;
    }
    .skillCard {
        width: 90vw;
    }
    .skillCard > h3 {
        font-size: 2em;
    } 
}

@media screen and (max-width:800px) {
    .footerSection {
        height: fit-content;
        padding: 0.5em;
    }
    .footerWrapper {
        flex-direction: column;
    }
    .mainFooter > main > p {
        margin-bottom: 1em;
    }
    .columnWrapper {
        gap: .5em;
        margin-bottom: 1.5em;
    }
    .row1,.row2 {
        flex-direction: column;
        gap: .5em;
    }
    .bottomButton {
        justify-content: center;
        padding: 0;
    }
}