*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: white;
}
button{
    border: none;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;

}
:root{
    --yellow: rgb(255, 237, 74);
    --purple: rgb(177, 49, 255);
    --black: rgb(10, 10, 10);
    --glass-corps-light: linear-gradient(45deg, rgba(255, 255, 255, 0.04), rgba(177, 49, 255, 0.04));
    --glass-contour: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(177, 49, 255, 0.16));
}
body{
    max-width: 100vw;
    background-color: var(--black);
    overflow-x: hidden;
}

/*Components*/
.container{
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}

.row{
    display: flex;
    align-items: center;
}
.showcase-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reversed{
    flex-direction: row-reverse;
}

.frame{
    position: relative;
}
.frame img{
    width: 130%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-36%);
}
.reversed .frame img{
    transform: translateY(-50%) translateX(-64%);
}


.purple-spot{
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(rgba(177, 49, 255, 0.08) 0%,transparent);
    filter: blur(40px);
    position: absolute;
    z-index: -2;
}
.yellow-spot{
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 237, 74, 0.04) 0%, transparent);
    filter: blur(40px);
    position: absolute;
    z-index: -2;
}
.WIP{
    position: relative;
}
.WIP > div{
    opacity: 0.24;
    pointer-events: none;
}
.WIP::after{
    content: 'Coming soon';
    display: block;
    position: absolute;
    padding: 20px;
    font-size: 32px;
    line-height: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    background-color: rgba(10,10, 10, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    color: var(--yellow);
}


.CTA-primary{
    color: var(--black);
    background-color: var(--yellow);
    padding: 20px;
    font-size: 24px;
    line-height: 28px;
    display: flex;
    border-radius: 8px;
    font-weight: bold;
    column-gap: 20px;
    align-items: center;
    cursor: pointer;
    position: relative;
    border: 2px solid var(--yellow);
    font-family: 'Montserrat', sans-serif;
}
.CTA-primary::after{
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url('../img/svg/arrowPrimary.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .2s ease-in;
}
.CTA-primary:hover::after{
    transform: rotate(-45deg);
}

.CTA-secondary{
    padding: 20px;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    display: flex;
    border-radius: 8px;
    border: 2px solid var(--yellow);
    column-gap: 20px;
    align-items: center;
    cursor: pointer;
}
.CTA-secondary p {
    color: var(--yellow);
    font-weight: bold;
}
.CTA-secondary::after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url('../img/svg/plusSecondary.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: center;
    transform: rotate(45deg);
    transition: all .4s ease-in;
}
.CTA-secondary:hover::after{
    transform: rotate(225deg);
}



.tag-row{
    display: flex;
    column-gap: 8px;
}
.tags{
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background-color: rgba(10,10, 10, 0.64);
    backdrop-filter: blur(16px);
    position: relative;
    font-size: 24px;
    line-height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.tags::after{
    content: '';
    display: block;
    inset: -1px;
    background: var(--glass-corps-light);
    position: absolute;
    border-radius: 8px;
    z-index: -1;
}
.tags img{
    height: 28px;
}

.separator{
    width: 100%;
    padding: 20px 0;
    background-color: rgba(10,10, 10, 0.8);
    backdrop-filter: blur(60px);
    position: relative;
    column-gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.separator::after{
    content: '';
    display: block;
    inset: -1px;
    background: var(--glass-corps-light);
    position: absolute;
    z-index: -1;
}

.card{
    width: 30%;
    padding: 40px;
    background-color: rgba(10,10, 10, 0.8);
    backdrop-filter: blur(24px);
    position: relative;
    border-radius: 8px;
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.card::after{
    content: '';
    display: block;
    inset: -1px;
    background: var(--glass-corps-light);
    position: absolute;
    border-radius: 8px;
    z-index: -1;
}
.card-frame{
    height: 80px;
    margin-bottom: 24px;
}
.card-frame img{
    height: 100%;
    display: block;
    margin: 0 auto;
}


/* Header */
header{
    width: 100vw;
    background-color: rgba(10, 10, 10, 0.01);
    backdrop-filter: blur(16px);
    position: fixed;
    padding: 20px 0;
    z-index: 3;
}
nav .row{
    justify-content: space-between;
}
nav ul {
    column-gap: 40px;
    list-style: none;
}
a{
    text-decoration: none;
}
.logo{
    font-family: 'Monteserrat', sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
}

nav ul li{
    position: relative;
}
nav ul li::after{
    content: '';
    display: block;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    transition: all .2s ease-in .1s;
}
nav ul li:hover::after{
    transform: scaleX(1);
}
.burger-menu{
    width: 32px;
    height: 32px;
    display: none;
    position: relative;
}
.menu-button{
    width: 32px;
    height: 32px;
    position: absolute;
}
.menu-toggle{
    display: none;
}

/*Footer*/
footer{
    justify-content: space-between;
    padding: 20px 0;
}
.socials{
    width: 24px;
    height: 24px;
}
.socials img{
    width: 100%;
}
footer .row{
    column-gap: 16px;
}

/*Contact*/
.contact-card{
    display: flex;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10,0.80);
    position: fixed;
    z-index: 3;
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all .2s ease-in-out;
}
.contact-card.active{
    opacity: 1;
    pointer-events: all;
}
.contact-card > div{
    align-items: flex-start;
    justify-content: center;
    display: flex;
    width: 40%;
    column-gap: 24px;
}
.contact-card h2{
    margin-bottom: 40px;
    text-align: center;
}
.contact-card form {
    display: grid;
    padding: 40px;
    background: var(--glass-corps-light);
    border-radius: 16px;
    position: relative;
    transform: translateY(-40px);
    transition: all .4s ease-in-out .2s;
    opacity: 0;
}
.contact-card form::after{
    content: '';
    display: block;
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    z-index: -1;
    background-color: rgba(10, 10, 10,0.8);
}
.contact-card.active form{
    transform: translateY(0);
    opacity: 1;
}
.contact-card form input, .contact-card form textarea{
    display: block;
    width: 100%;
    margin: 0 auto 16px;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 28px;
    border-radius: 8px;
    border: none;
    color: var(--black);
}
.contact-card .CTA-primary{
    margin-top: 24px;
    justify-self: center;
}
.close{
    width: 32px;
    height: 32px;
}
.close img{
    width: 32px;
}

/*Contact-CTA*/
#contact{
    height: 80vh;
    display: grid;
}
#contact .container{
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#contact h2{
    width: 100%;
    text-align: center;
    margin-bottom: 64px;
}


/*Responsive*/

@media screen and (max-width:1200px) {
    /*Header*/
    header.active{
        height: 100vh;
    }
    nav ul.row{
        display: none;
    }
    header.active .menu-toggle{
        transform: translateX(0);
    }
    .menu-toggle{
        display: block;
        transform: translateX(100%);
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(10, 10, 10,0.8);
        padding: 72px 4%;
        transition: all .4s ease-in-out;
        backdrop-filter: blur(60px);
        border: 1px solid rgba(255, 255, 255, 0.04);
        z-index: -1;
        list-style: none;
    }
    .menu-toggle::after{
        content: '';
        display: block;
        inset: -1px;
        background: var(--glass-corps-light);
        position: absolute;
        z-index: -1;
    }
    .menu-toggle li{
        width: 40%;
        margin-bottom: 24px;
        
    }
    .menu-toggle a, .menu-toggle li{
        font-size: 28px;
        line-height: 32px;
        font-weight: bold;
    }
    .burger-menu{
        display: block;
    }
    header.active .burger-open{
        display: none;
    }
    .burger-close{
        display: none;
    }
    header.active .burger-close{
        display: block;
    }

    /*Contact*/
    .contact-card{
        justify-content: flex-start;
    }
    .contact-card > div{
        width: 92%;
        flex-wrap:wrap-reverse;
        justify-content: flex-end;
    }
    .contact-card > div form{
        width: 100%;
    }
    .purple-spot, .yellow-spot{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    body{
        position: relative;
    }
}