@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --header_size: 4.5vmin;
    --text_size: 2.5vmin;
}

* {
    margin: 0;
    padding: 0;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
}

body {
    background-color: #5A3C7CFF;
    width: 100%;
    height: 100vh;
}

.content {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: var(--text_size);
}

ul {
    list-style: none;
}



#skip ul li::before {
    content: "";
}

ul li {
    font-family: "Roboto Condensed", sans-serif;
    font-size: var(--text_size);
}

ul li a {
    text-decoration: none;
    color: #ffffff;
}

.section {
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
    color: #ffffff;
    font-size: var(--header_size);
    padding: 0 5%;
    will-change: transform;
}
.section1 {
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
    color: #ffffff;
    font-size: var(--header_size);
    padding: 0 5%;
    will-change: transform;
    flex-direction: column;
    justify-content: center;
    gap: 2%;
}
/* Title */
.title {
    justify-content: flex-end;
    height: 100vh;
    font-family: "Roboto Condensed", sans-serif;
}



.title h1 {
    font-size: 4vmin;
    font-family: "Roboto Condensed", sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
}

.title h1 > span {
    font-size: 9vmin;
    font-weight: 900;
    font-style: bold;
}

.title p {
    max-width: 30svw;
    font-size: var(--text_size);
    font-family: "Roboto Condensed";
}

/* Article */
article {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 0% 5%;
}

article:nth-child(odd) {
    order: 1;
    text-align: left;
}

article:nth-child(even) {
    order: 2;
    text-align: right;

}

/* Pictures */
picture {
    height: auto;
    width: 30%;
    padding: 0 5% ;
    display: flex;
    align-items: center;
    justify-content: center;
}

video{
    height: auto;
    width: 30%;
    padding: 0 5% ;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mainvideo{
    height: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: #5A3C7CFF 2px solid;
    border-radius: 20px;
    padding: 0%;
    max-height: 80vh;
}

picture:nth-child(odd) {
    order: 2;
}

picture:nth-child(even) {
    order: 1;
    margin-right: 1%;
}

img {
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 100%;
    max-height: 80vh;
    height: auto;
}
.section title{
    width: 30%;
}


#process-list {
    list-style: none; /* Hide default bullet points */
}

.process-item {
    display: flex; /* Use Flexbox */
    align-items: center; /* Center items vertically */
}
.process-item {
    opacity: 0;
    transition: opacity 1s;
}
.process-item i {
    margin-right: 10px; /* Add some space between the icon and the text */
    font-size: 1.9em;
}
.process-item.visible {
    opacity: 1;
}
 
#olivier{
    text-align: left;
}
.landing img{
    position: absolute;
    width: 60%; /* Adjust this value to make the image bigger or smaller */
    left: 0;
    z-index: -1; /* Make the image appear on top of other elements */
    height: auto;
    max-height: none;
}
#icons{
    gap: 2vh;
}
.popup {
    display: none;
    position: absolute;
    padding: 10px;
    background-color: #5A3C7CFF; /* Same as the background color */
    font-size: 10px;
    width: 50vw; /* Adjust as needed */
    height: 20vh; /* Adjust as needed */
    box-sizing: border-box;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* Drop shadow */
    align-items: center;
    text-align: center;
}
.popup p{
    color: white;
    font-size: 2.7vmin;
}
@media screen and (max-width: 768px) {
    .section {
        display: flex;
        flex-direction: column;

        padding: 0%;
        justify-content: center;
    }
    .title{
        justify-content: center;
    }
    article{
        text-align: center !important;
    }
    picture {
        display: none; /* Hide all images */
    }
}