@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


*{
    scroll-behavior: smooth;
    font-family:"Inter", sans-serif;
    text-decoration: none;
}

body{
    margin:0;
    padding: 0;
    overflow-x: hidden;
}

.container{
    max-width: 1920px;
    margin: 0 auto;
}

header{
    position: sticky;
    top: 0;
    z-index: 1;
}

nav{
    background-color: white;
    height: 67px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
  
.nav_container{
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.onglets_and_logos{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
    gap: 50px;
}
  
.onglets{
    display: flex;
    justify-content: space-between;
    width: 380px;
}
  
.onglets a{
    color: #1F2937;
    font-size: 18px;
    font-weight: 500;
}
  
.onglets a:hover{
    color:#314158;
}

.onglets .about{
    font-weight: 700;
}
  

.logos_and_language{
    display: flex;
    align-items: center;
    gap: 45px;
}
  
.logos_and_language a img{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 17px;
} 
  
.language_selector{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
  
.language_selector span{
    font-size: 18px;
    color: #1F2937;
    margin-right: 8px;
    font-weight: 500;
}
  
.language_selector img{
    fill: white;
    width: 13px;
    transition: 0.2s;
    margin-top: 4px;
}

.language_selector i{
    color: #1F2937;
    font-size: 14px;
}

.language_menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.language_menu li{
    padding: 8px 16px;
}

.language_menu li a{
    color: #1F2937;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.language_menu li:hover{
    background-color: #f3f4f6;
}

.language_selector:hover .language_menu{
    display: block;
}

.language_selector:hover img{
    transform: rotate(180deg);
}

.linkedin_mobile{
    display: none;
    height: 24px;
    position: absolute;
    right: 80px;
}

.linkedin_mobile img{
    width: 24px;
}

.burger_button{
    position: absolute;
    display: none;
    cursor: pointer;
    right: 20px;
    font-size: 0;
}

.burger_close{
    display: none;
}

.burger_menu{
    display: none;
}



.homebutton{
    margin-left: 1.5%;
    margin-left: 20px;
    display: flex;
    align-items: center;
    height: auto;
}

.homebutton img{
    margin-top: 4px;
    width: 45px;
}

.homebutton .lockystarhome{
    color: #1F2937;
    font-size: 24px;
    font-weight: 500;
    margin-left: 15px;
}



section::before {
    content: "";
    background: url('/images/Lockystar.svg') no-repeat center center;
    position: fixed;
    background-size: contain; 
    width: 680px;
    height: 680px;
    margin-top: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05; 
    z-index: -1; 
    filter: grayscale(100%);
}


footer{
    background-color:#D1D5DB;
    height: 52px;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.footer_container{
    display: flex;
    gap: 40px
}
  
footer a{
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.onglets .highlight{
    font-weight: 700;
}





@media screen and (max-width: 850px) {
    .onglets_and_logos {
        display: none;
    }

    .linkedin_mobile{
        display: block;
    }

    .burger_button{
        display: block;
    }

    .burger_button.open{
        display: none;
    }

    .burger_close{
        display: none;
        position: absolute;
        cursor: pointer;
        right: 23px;
        top: 19px;
        width: 30px;
        z-index: 1;
    }

    .burger_close.open{
        display: block;
    }

    .burger_menu{
        position: fixed;
        background-color: white;
        top: 67px;
        right:0;
        /* height: 257px; */
        width: 126px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        transform: translateX(100%);
        transition: 0.3s transform ease-in-out;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-end-start-radius: 5px;  
        z-index: 2;
    }



    .burger_menu.open{
        transform: initial;
        display: flex;
        position: absolute;
    } 

    .burger_onglets{
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .burger_onglets a{
        padding: 15px 0;
        padding-left: 20px;
        color: #1F2937;
        font-size: 18px;
        font-weight: 500;
    }


    .burger_onglets a:hover{
        background-color: #f3f4f6;
    }

    .language_selector{
        width: 70%;
        margin-bottom: 10px;
    }


@media screen and (max-width: 730px) {
    footer{
        height: 90px;
        justify-content: flex-start;
    }
      
    .footer_container{
        flex-direction: column;    
        gap: 10px;
        margin-left: 30px;
    }
    
    footer a{
        font-size: 10px;
    }
}

@media screen and (max-width: 710px) {
    section{
        min-height: 610px;
    }

    section h2{
        text-align: center;
    }

    section .top_page{
        text-align: center;
        margin: 0 6%;
    }

    .accordeon{
        margin: 0 ;
        margin-top: 50px;
        border-bottom: 1px solid #ccc;
    }

    .accordeon .question{
        padding: 1px;
        border-top: 0px solid #ccc;
    }

    .accordeon .question::before {
        content: '';
        position: absolute;
        top: 0;
        left: -4.5%; 
        width: 100vw;
        border-top: 1px solid #ccc;
    }

    .accordeon .last_question_answer{
        border-bottom: 0px solid #ccc;
    }

    .accordeon .question h4{
        font-size: 14px;
    }

    .accordeon .question_answer{
        margin: 0 4%;
    }

    .accordeon .question_answer.show .answer{
        width: 100%;
        text-align: start; 
    }
}
@media screen and (max-width: 600px) {
    section::before {
        display: block;
        position: fixed;
        background-size: 108% 50%;
        margin: 0;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 0.05; 
        transform: translate(36%, 45%);
        filter: grayscale(100%);
    }
}

