@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);
    color: black;
}
body {
    background-color: #DFDBE5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: black;
    font-family: "Manrope", sans-serif;
    color: var(--color2);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
.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: 105dvh;
    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("/assets/svg_noise_texture.svg");
    opacity: 0.2;
    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;
    justify-content: center;
    align-items: center;
}
.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%;
    max-width: 1300px;
    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: clamp(3em,10vw,4em);
}
.skillHeader > p {
    text-align: center;
    font-weight: 400;
    font-size: 1em;
    color: var(--color2);
    letter-spacing: 0.2px;
    opacity: 0.5;
}

/*particles*/
#particles-js {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    position: absolute;
    z-index: -1;
}
.skillMain {
    height: 70dvh;
}
.skillCard {
    background-color: #14110f;
}

.skillCard > button {
    margin-top: auto;
    margin-bottom: 1.5em;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: #0a0a0b;
    color: white;
    font-size: 1em;
    font-weight: 500;
    padding: .5em 1.5em;
    border-radius: 10px ;
    position: relative;
    transition: all .15s ease-in-out;
    &:hover {
        cursor: pointer;
        border-color: var(--color3);
        background-color: rgb(20, 20, 20);
    }
    &:active {
        background-color: rgb(30, 30, 30);
    }
    &:before {
        content:"";
        opacity:1;
        position: absolute;
        width: 100%;
        height: 100%;
        transition: all 0.1s ease-out;
        left: 0;
        top: 0%;
        z-index: -1;
        background: radial-gradient(ellipse at 50% 10%,rgba(234, 125, 44, 0.396) 0%, transparent 70%);
    }
}
.skillCard > button:hover::before {
    top: 70%;
    opacity: 1;
}

.convincedContainer {
    max-width: 1300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2em;
}
.convincedContainer > h4 {
    font-size: 2em;
    font-weight: 800;
}
.orangeButton{
    background-color: var(--color3);
    color: black;
    font-size: 1em;
    border: none;
    font-weight: 500;
    padding: .5em 1.5em;
    border-radius: 10px ;
    position: relative;
    transition: all .15s ease-in-out;
    box-shadow: 0px 4px 20px 0px rgba(226, 126, 3, 0.4);
    position: relative;
    &:hover {
        transform: translateY(-2px) scale(1.02);
        background-color: var(--color3Light);
        cursor: pointer;
    }
    &:active {
        transform: translateY(-2px);
        background-color: var(--color3);
        cursor: pointer;
    }
}
.footerSection {
    display: flex;
    height: fit-content;    
    box-sizing: border-box;
    background-repeat: no-repeat;
    position: relative;
    padding: 2em;
    justify-content: center;
    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("assets/svg_noise_texture.svg");
    opacity: 0.2;
    pointer-events: none;
    mix-blend-mode:overlay; 
} 
.footerWrapper {
    width: 100%;
    max-width: 1300px;
    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 > img{
    color: white;
    height: 1.5em;
    width: 1.5em;
    fill: white;
}
.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*/
/*loading GPU*/
#retourChart, 
#visibilityChart,
.progressTimeline,
.verticalLine {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}


.progressSection {
    height: 150em;
    position: relative;
}

.stickyPannel {
    position: -webkit-sticky;
    position:sticky;
    top:0;
    height: 100dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.progressMain {
    position: relative;
    background: rgba(0, 0, 0, .7 );
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid transparent;
    height: 80%;
    max-height: 40em;
    width: 90%;
    padding: 1.5em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* bordure gradient animée */
    background-clip: padding-box;
}

.progressMain::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    background: conic-gradient(
        from var(--angle),
        rgba(255,255,255,.07) 0%,
        var(--color3) 10%,
        rgba(255,255,255,.07) 20%
    );
    z-index: -1;
    animation: rotateBorder 5s linear infinite;
    mask: 
        linear-gradient(black, black) content-box,
        linear-gradient(black, black);
    mask-composite: exclude;
    padding: 1px; 
}

/* glow derrière */

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to { --angle: 360deg; }
}
.progressWrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
}
.progressTimeline {
    width: 5em;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.progressTimeline > .timestep {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timestep > span {
    border: 1px solid rgba(255,255,255,0.1);
    width:2em;
    height: 2em;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#000000 ;
    z-index: 1;
    position: relative;

}
.progressTimeline > .verticalLine {
    top: 20%;
    height: 60%;
    position: absolute;
    --orange-progress:0%;
    --orange-progress-2:0%;
    background-image: linear-gradient(180deg,#FF7F11 0% var(--orange-progress), rgba(255,255,255,0.1) var(--orange-progress) 45%, transparent 45% 55%, #FF7F11 55% calc(55% + var(--orange-progress-2)), rgba(255,255,255,0.1) calc(55% + var(--orange-progress-2)) 100%);
    width: 1px;

}
.progressContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 100%;
}
.progressContent > .part {
    flex: 1;
    align-items: center;
    gap: 1em;
}
.progressTitle {
    font-weight: 600;
    font-size: 1.5em;
}
.progressRetour {
    display: flex;
}

.retourChartWrapper canvas {
    display: block;
    width: 8em !important;
    height: 8em !important;
}
.progressVisibility {
    display: flex   ;
}
.smallDeviceDiv {
    display: flex;
    justify-content: center;
}
.visibilityChartWrapper > canvas {
    width: 10em;
    height: 6em;
}
.progressModeliser {
    display: flex;
}
.modeliserWrapper,.visibilityChartWrapper,.retourChartWrapper {
    width: 11em;
    height: 8em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modeliserWrapper > #svgMorph {
    width: 6em;
    height: 6em;
}
.modeliserWrapper > #gradient {
    height: 0;
}

.retourContainer, .visibilityContainer, .modeliserContainer {
    height: 100%;
    width: 70%;
    max-width: max-content;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .4em;

}
.retourContainer > h5, .visibilityContainer > h5, .modeliserContainer > h5 {
    font-size: 1.2em;
}
.retourContainer > p, .visibilityContainer > p, .modeliserContainer > p {
    font-size: .8em;
    font-weight: 300;
    color: rgba(200, 200, 200, 1);
}
/*projets section*/

.projectsSection {
    height: auto;
    width: 100%;
    padding: 1.5em;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;

}
.projectsWrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
}
.projectsHeader {
    height: 17.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    flex-direction: column;
}
.projectsMain {
    height: auto;
    max-width: 1300px;
    padding: .5em;
    box-sizing: border-box;
    display: flex;
    gap: 2em;
    justify-content: space-evenly;
    position: relative;
}
.projectsMain::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(ellipse at 50% 60%,#e0602a44 0%,transparent 50%);
}

.projectsTitle {
    font-size: clamp(3em,10vw,4em);
    position: relative;
}
.projectsDescribe {
    font-size: .8em;
    color: var(--color2);
    opacity: 0.5;
    text-align: center;
}
/*card project*/
.card2,.card3 {
   margin-top: 3em;
}
.card1 {
    margin-bottom: 3em;
}
.projectCard {
    flex-shrink: 0;
    width: 20em;
    max-height: 35em;
    aspect-ratio: 0.75 / 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 1em;
    border-radius: 15px;
    box-sizing: border-box;
    gap: .5em;
    background: linear-gradient(145deg, #1a1612 0%, #110f0d 50%, #0d0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.projectCardHeader {
    flex-shrink: 0;
    display: flex;
    padding: 0 .25em;
    align-items: center;
    gap: 1em;
}
.cardNumberContainer {
    height: 80%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 1px solid rgba(200, 80, 20, 0.35);
    background: linear-gradient(135deg, rgba(200, 80, 20, 0.2) 0%, rgba(200, 80, 20, 0.05) 100%);
}
.cardNumberContainer > span {
    font-size: 1.5em;
    color: #e0622a;

}
.cardTitleContainer {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .25em;
}
.cardTitle {
    font-size: 1.8em;
    display: inline-block;
    line-height: 1em;
    letter-spacing: 1px;
}
.cardLink {
    font-size: .7em;
    padding-left: .15em;
    color: #e0622a;
    text-decoration: none;
}
.projectCardMain {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
@keyframes clipPathDiagonal {
    from {
        clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);        
        filter: blur(20px);
    } to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
        filter: blur(0);
    }   
}

.cardThumbnailWrapper {
    aspect-ratio: 16/9;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}
.cardThumbnailWrapper > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.cardSplitter {
    width: 100%;
    height: 1px ;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.cardDescription {
    flex: 1;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    gap: 1em;
}
.cardDescription > .paragraphContainer > p {
    font-size: .8em;
    color: rgba(255, 255, 255, .8);
}
.cardDescription > .cardLabelContainer {
    display: flex;
    gap: .5em;
}

.cardLabel {
    display: flex;
    padding: .5em 1.2em;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    font-size: .6em;
}


.projectCardFooter {
    height: fit-content;
    bottom: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5em .25em 0 .25em;
}
.projectCardFooter > .projectCardAuthor {
    color: rgba(255, 255, 255, 0.2);
    font-size: .75em;
}
.cardDot {
    width: .5em;
    height: .5em;
    aspect-ratio: 1/1;
    border-radius: 20px;
    background: #3ecf6e;
    box-shadow: 0 0 8px rgba(62,207,110,0.5);
}

.projectsFooter {
    display: flex;
    padding: 1em 0;
    margin-top: 4em;
    justify-content: center;
}
.projectsFooter > span {
    display: flex;
    gap: 1em;
    align-items: center;
    flex-direction: column;
}
/* queries*/

@media screen and (max-width:800px) {
    .fromThis {
        top: 75%;
        left: 50%;
    }
    .toThis {
        left: 50%;
        top: 65%;
    }
    .layout {
        top: 30%;
        width: 75vw;
        left: 50%;
    }
    
    .skillFooter{
        padding: .5em;
    }
}
@media screen and (max-width:769px) {
    .skillWrapper {
        padding: 0;
        justify-content: center;
        gap: 2em;
    }       
    .layoutHeader > h1 {
        font-size: 1em;
    }
    .topHeader {
        justify-content: center;
    }
    .yourAccount {
        font-size: .5em;
    }
    .citation {
        font-size: .8em;
    }
    .convincedContainer {
        margin-top: 1.5em;
    }
    .convincedContainer > h4 {
        font-size: 1.5em;
    }
    /*about progress section */
    .progressTitle {
        text-align: center;
    }
    .progressMain {
        background-color: transparent;
        backdrop-filter: none;
        padding: 0;
        width: 100%;
    }
    .part {
        flex-direction: column;
    }
    .retourContainer, .visibilityContainer, .modeliserContainer {
        width: 100%;
    }
    .retourContainer > h5 , .visibilityContainer > h5, .modeliserContainer > h5 {
        text-align: center;
    }
    .retourContainer > p , .visibilityContainer > p, .modeliserContainer > p {
        text-align: center;
        padding-right: .25em;
    }
    .progressMain::before {
        background:none;
    }
    .progressTimeline {
        gap: 1em;
    }
    .modeliserWrapper, .visibilityChartWrapper, .retourChartWrapper {
        width: 8em;
        height: 6em;
    }
    .retourChartWrapper canvas {
        width: 6em !important;
        height: 6em !important;
    }
    .modeliserWrapper > #svgMorph {
        width: 3.5em;
        height: 3.5em;
    }
    
}


@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;
    }
}

@media screen and (max-width:1050px) {
    .projectsMain {
        flex-direction: column;
    }
    .projectCard {
        margin: 0;
        width: 100%;
    }
    .card1 {
        order: 1;
    }
    .card2{
        order:2;
    }
    .card3 {
        order:3;
    }
}
@media screen and (max-width:1200px) {
    .skillBottom {
        flex-direction: column;
        align-items: center;
    }
}