/* /Components/ImageCard.razor.rz.scp.css */
.imageCardBackround[b-z294kmopu6] {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    width: 100%;
    background-color:var(--backgrounds-light);
    position: relative;   
}

img[b-z294kmopu6] {
    flex: 1;
    width: 100%;
    min-height: 0;
    object-fit: cover;
    padding: 20px;
    padding-bottom: 0px;
}

.text-box[b-z294kmopu6] {
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imageCardBackround:hover img[b-z294kmopu6]{
    scale: 1.01;
    transform-origin: bottom center;
}   

.imageCardBackround[b-z294kmopu6]::before {
    content: "";
    position: absolute;
    padding: 2px;
    inset: 0;  
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
}

.imageCardBackround:hover[b-z294kmopu6]::before {
    opacity: 1;
    transition: opacity 0.3s ease;
}

span[b-z294kmopu6] {
    font-size: 8cqw;
    text-align: center;
    color: var(--text-primary);

    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
}
/* /Components/ProjectCard.razor.rz.scp.css */
.project-card[b-18j12bv80y] {
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    width: 25vw;
    background:
        linear-gradient(var(--backgrounds-light), var(--backgrounds-light)) padding-box,
        linear-gradient(to bottom, var(--primary), var(--secondary)) border-box;
}

.project-thumbnail[b-18j12bv80y] {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info[b-18j12bv80y] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    flex: 1;
}

.project-info h3[b-18j12bv80y] {
    color: var(--text-primary);
    margin: 0;
}

.project-info p[b-18j12bv80y] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex: 1;
    margin: 50;
}

.project-tags[b-18j12bv80y] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag[b-18j12bv80y] {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--primary);
    color: var(--primary);
}
/* /Components/skillBar.razor.rz.scp.css */
.skill-bar[b-39h8kxejyl] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    padding: 7px;
}

.skill-row[b-39h8kxejyl] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2px;
}

.skill-label[b-39h8kxejyl] {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.skill-percent[b-39h8kxejyl] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.skill-track[b-39h8kxejyl] {
    width: 100%;
    height: 10px;
    border-radius: 4px;
    background-color: var(--backgrounds-light, #2a2a2a);
    overflow: hidden;
}

.skill-fill[b-39h8kxejyl] {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.6s ease;
}
/* /Layout/MainLayout.razor.rz.scp.css */


.page[b-57rfh191dz] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.menu-grid[b-jey3l8hr1c] {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    padding: 0 ;
    background-color: var(--backgrounds-light) ;
    width: 100%;
    height: max(10vh,50px);
}

.border-linked[b-jey3l8hr1c] {
    display: flex;
    height: 100%;
}

.button-linked[b-jey3l8hr1c]{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2cqw;
    color: var(--text-primary);
    flex-direction: column;
}

.button-linked[b-jey3l8hr1c]::after{
    content: "";
    inset: 0;
    display: block;
    height: 2px;
    width: 0%;
    background:linear-gradient(to right, var(--primary), var(--secondary)) ;
}

.button-linked:hover[b-jey3l8hr1c]::after{
    width: 100%;
    transition: all 0.3s ease;
}


.button-linked a[b-jey3l8hr1c] {
    color: inherit;           /* removes the blue */
    text-decoration: none;    /* removes the underline */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;             /* fills the whole button — makes all space clickable */
}

i[b-jey3l8hr1c]{
    font-size: 2rem;
    padding: 0.5rem;
    width: 100%;
    height: 100%;  

}

i:hover[b-jey3l8hr1c] {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* /Pages/AboutMe.razor.rz.scp.css */
main[b-vc1rxuirtp] {
    background-color: var(--backgrounds-dark);
    padding-top: 100px;
}

h1[b-vc1rxuirtp], h2[b-vc1rxuirtp], h3[b-vc1rxuirtp] {
    color: var(--text-primary);
}

h2[b-vc1rxuirtp] {
    margin-bottom: 2rem;
}

h3[b-vc1rxuirtp] {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 2rem;
}

p[b-vc1rxuirtp] {
    color: var(--text-secondary);
}

section[b-vc1rxuirtp]{
    min-height: 100vh
}

.tile-centered[b-vc1rxuirtp]
{
    max-width: 800px;
    text-align: center;
    margin: 0 auto;  
}    

.tile-centered-width[b-vc1rxuirtp]{
    text-align: center;
    margin: 0 auto;  
    
}

.hero-actions[b-vc1rxuirtp] {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    padding: 0 20px;
    gap: 1rem;
}

.maximize-icon[b-vc1rxuirtp] {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    font-size: 2rem;
}

.flex-box-vertical[b-vc1rxuirtp]{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px;
}

.icon-gradient[b-vc1rxuirtp] {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-links[b-vc1rxuirtp] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.contact-item[b-vc1rxuirtp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.contact-item:hover[b-vc1rxuirtp] {
    color: var(--text-primary);
}

.contact-item i[b-vc1rxuirtp] {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.contact-item:hover i[b-vc1rxuirtp] {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simple-border[b-vc1rxuirtp] {
    text-align: left;
    border: 2px solid transparent;
    border-radius: 4px;
    width: 30vw;
    padding: 10px;
    background:
        linear-gradient(var(--backgrounds-dark), var(--backgrounds-dark)) padding-box,
        linear-gradient(to bottom, var(--primary), var(--secondary)) border-box;
}

/* /Pages/Cv.razor.rz.scp.css */
.profile-photo[b-51uymgvy1f] {
        border-radius: 50%;
        /* Cercle */
        object-fit: cover;
        /* Recadre sans déformer */
        padding: 30px;
        width: 100%;
        aspect-ratio: 1 / 1;

        object-position: center top;
        /* pan to face if needed */
        object-view-box: inset(20%)
    }

    .center[b-51uymgvy1f] {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cv-layout[b-51uymgvy1f] {
        min-height: 100vh;
        max-width: 1050px;
        display: flex;
        font-family: 'Lato', sans-serif;
    }

    .skill-grid[b-51uymgvy1f] {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        gap: 6px 16px;
        padding-left: 20px;

    }

    .left-padding[b-51uymgvy1f]{
        padding-left: 20px;
    }

    main[b-51uymgvy1f] {
        background-color: #ededed;
        padding-left: 20px;
    }

    main h2[b-51uymgvy1f]::after {
        content: '';
        display: block;
        width: 90%;
        height: 2px;
        background-color: #000000;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .bottom-margin[b-51uymgvy1f] {
        margin-bottom: 30px;
    }

    .date[b-51uymgvy1f] {
        font-weight: bold;
        font-size: 28px;
    }

    .skill-collum[b-51uymgvy1f] {
        display: grid;
        grid-template-columns: auto auto auto auto;
        align-items: center;
        max-width: 80%;
        gap: 6px 24px;

    }

    aside[b-51uymgvy1f] {
        background-color: #323b4c;
        max-width: 35%;
        color: white;
        padding: 5px;
        padding-bottom: 20px;

    }

    p[b-51uymgvy1f],
    ul[b-51uymgvy1f],
    li[b-51uymgvy1f] {
        font-size: 22px;
        margin: 0px;

    }

    aside h2[b-51uymgvy1f]::after {
        content: '';
        display: block;
        width: 90%;
        height: 2px;
        background-color: #ffffff;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    h1[b-51uymgvy1f] {
        margin-top: 50px;
        font-size: 60px;
    }

    h2[b-51uymgvy1f] {
        font-size: 40px;
        font-weight: bold;
        margin-top: 35px;
    }

    h3[b-51uymgvy1f] {
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 30px;
    }

@media (max-width: 640px) {
    .cv-layout[b-51uymgvy1f] {
        flex-direction: column;
        max-width: 100%;
    }

    aside[b-51uymgvy1f] {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .skill-collum[b-51uymgvy1f] {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        gap: 6px 24px;
        max-width: 100%;
    }

    h1[b-51uymgvy1f] {
        font-size: 32px;
        margin-top: 20px;
    }

    h2[b-51uymgvy1f] {
        font-size: 22px;
        margin-top: 16px;
    }

    h3[b-51uymgvy1f] {
        font-size: 18px;
    }

    p[b-51uymgvy1f], ul[b-51uymgvy1f], li[b-51uymgvy1f] {
        font-size: 15px;
    }

    .date[b-51uymgvy1f] {
        font-size: 17px;
    }

    main[b-51uymgvy1f] {
        background-color: #ededed;
        padding-left: 20px;
        padding-bottom: 20px;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.ImageCardGrid[b-ois3x2fd0s] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1vW;
  width: 80vW;
  padding: 20px;
  justify-self: center;
}

main[b-ois3x2fd0s]{
    background-color: var(--backgrounds-dark);
}

@media (max-width: 640px) {
.ImageCardGrid[b-ois3x2fd0s] {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
}
