@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    --text: #FFFFFF;
    --background: #000000;
    --primary: #FFDC00;
}

html, body{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
    /* width: 100vw; */
    scroll-behavior: smooth;

    /* overflow-x: hidden; */
}

.navigation{
    z-index: 100;
    overflow: hidden;
}

.navigation > .menu-visible{
    background-color: var(--background);
    width: 50px;
    height: 50px;
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20%;

    /* position: absolute; */

    position: fixed;
    top: 25px;
    right: 25px;
    cursor: pointer;
    
    /* display: none; */
}

.navigation > .menu-visible > .icon{
    margin-top: 3px;
}

.navigation > .menu-hide{
    background-color: var(--background);
    z-index: 100;
    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /* display: none; */
    transition: all 0.3s ease-in-out;
    transform: translateX(100vw);

}
.navigation > .menu-hide > .left{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}


.navigation > .menu-hide > .left > .title{
    display: none;
}

.navigation > .menu-hide > .left > .links{
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    margin: auto;
}

.navigation > .menu-hide > .left > .links > .link > *{
    font-weight: 300;
    font-size: 36px;
    font-size: clamp(28px, 4.8vw, 46px); 
    cursor: pointer;
}
.navigation > .menu-hide > .left > .links > .link span{
    padding-left: 20px;
}


.navigation > .menu-hide > .left > .contact{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    color: var(--text);

    height: 30vh;
}

.navigation > .menu-hide > .left > .contact > a{
    font-size: large;
    font-weight: 300;
}

.navigation > .menu-hide > .left > .contact > .socials{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 50px;
    max-width: 250px;
}

.navigation > .menu-hide > .left > .footer{
    color: var(--text);
    font-size: 11px;
    font-size: clamp(8px, 1.6vw, 14px); /* 18 */
    font-weight: 200;
    position: absolute;
    bottom: 0;

}
.navigation > .menu-hide > .right{
    display: none;
    background-color: var(--text);
    width: 50vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.navigation > .menu-hide > .right > .contact{
    height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 40vw;
    gap: 10px;
}

.menu-hide > .right > .contact > h3{
    font-size: 2rem;
    font-weight: 300;
    margin: 8px 0;
    color: var(--background);
}

.menu-hide > .right > .contact > .mail{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
}

.menu-hide > .right > .contact > .mail > a{
    text-decoration: none;
    font-size: 24px;
    font-size: clamp(16px, 2.8vw, 32px);
    font-weight: 400;
    color: var(--background);
}

.menu-hide > .right > .contact > .mail > .icon{
    width: 100%;
    min-width: 25px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    align-self: flex-end;
}

.menu-hide > .right > .contact > .mail > .icon > img{
    width: 100%;
    min-width: 25px;
    aspect-ratio: 1 / 1;
}

.right > .follow > h3{
    font-size: 2rem;
    font-weight: 300;
    /* margin: 8px 0; */
    color: var(--background);
}

.right > .follow > .links{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 40vw;
    gap: 10px;

}

.right > .follow > .links > .link{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-direction: row;
    flex-wrap: nowrap;
    border-bottom: var(--background) solid 1px;
    cursor: pointer;
    min-width: 40vw;
}

.right > .follow > .links > .link > p{
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    color: var(--background);
}

.right > .follow > .links > .link > .icon > img{
    width: 80%;
    aspect-ratio: 1 / 1;
}
.navigation > .menu-hide > .right > .footer{
    position: absolute;
    bottom: 0;

}
.navigation.op > .menu-visible{
    /* display: none; */
}

.navigation.op > .menu-hide{
    /* display: flex; */
    transform: translateX(0);
}

a{
    color: black;
    text-decoration: underline;
}

.cta-primary{
    background-color: var(--background);
    border-radius: 12px;
    height: 53px;
    width: 165px;
    color: var(--text);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 600;

    border: var(--background) 1px solid;

    cursor: pointer;
}

.cta-secondary{
    background-color: var(--text);
    border-radius: 12px;
    height: 53px;
    width: 165px;
    color: var(--background);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 600;

    border: var(--background) 3px solid;
    cursor: pointer;
}

a{
    font-size: 18px;
    font-size: clamp(14px, 2.5vw, 22px); /* 18 */
    font-weight: 300;
    font-style: italic;
    text-decoration: underline;
}

#backgroundgrd{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    
}

.toast{
    position: fixed;
    /* bottom: 5vh; */
    right: 40vw;
    width: 20vw;
    background-color: var(--background);
    border-radius: 10px;
    z-index: 100000;
    

    bottom: -40vh;
    transition: all 0.25s ease-in-out;
}

.toast > p{
    margin: auto;
    text-align: center;
    padding: 10px 15px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 400;
}

.toast.active{
    bottom: 5vh
}



@media screen and (min-width: 750px) {
    .navigation > .menu-hide{
        transition: all 0.3s ease-in-out;
        transform: translateY(-100vh);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    
    }
    .navigation.op > .menu-hide{
        /* display: flex; */
        transform: translateY(0);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    
    }
    .navigation > .menu-hide > .left > .title{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 40px;
        color: var(--text);
        padding-top: 40px;
    }
    .navigation > .menu-hide > .left > .title > img{
        margin-top: 20px;
    }
    .navigation > .menu-hide > .left > .title > h2{
        font-size: clamp(20px, 3.6vw, 32px); /* 18 */
    }
    .navigation > .menu-hide > .left{
        width: 50vw;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .navigation > .menu-hide > .left > .footer{
        display: none;
    }
    .navigation > .menu-hide > .left > .contact{
        display: none;
    }
    .navigation > .menu-hide > .left > .links{
        justify-content: start;
        margin-top: 15vh;
    }

    .navigation > .menu-hide > .right{
        display: flex;

    }

    
}