@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* Start Global Variables */

:root {
    --main-color: #03a9f4;
    --secondary-color: #111;
}

/* Start Global Variables */

/* Start Global Rules */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* End Global Rules */

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: white;
    z-index: 2;
    transition: 0.5s;
}

.showcase.active {
    right: 300px;
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase .logo {
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: underline;
}

.showcase .toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background-image: url('../imgs/menu.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}

.showcase .toggle.active {
    background-image: url('../imgs/close.png');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.showcase .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    mix-blend-mode: overlay;
}

.showcase .text {
    position: relative;
    z-index: 3;
}

.showcase .text h2 {
    font-size: 5em;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
}

.showcase .text h3 {
    font-size: 4em;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}

.showcase .text p {
    font-size: 1.1em;
    font-weight: 400;
    margin: 20px 0;
    max-width: 700px;
}

.showcase .text a {
    display: inline-block;
    background: white;
    padding: 10px 30px;
    text-decoration: none;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 1em;
    transition: 0.3s;
}

.showcase .text a:hover {
    letter-spacing: 6px;
}

.showcase .social {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;
    list-style: none;
    padding: 40px 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.showcase .social li a {
    display: inline-block;
    filter: invert(1);
    margin-right: 20px;
    transform: scale(0.5);
    transition: 0.3s;
}

.showcase .social li a:hover {
    transform: translateY(-15px);
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu ul {
    position: relative;
    list-style: none;
    flex: 1;
}

.menu ul li a {
    display: block;
    text-decoration: none;
    font-size: 1.5em;
    color: #111;
    transition: 0.3s;
    border-bottom: 1px solid var(--main-color);
    padding: 10px;
}

.menu ul li a:hover {
    color: var(--main-color);
    padding-left: 15px;
}

@media (max-width: 991px) {
    .showcase, 
    .showcase header,
    .showcase .social {
        padding: 40px;
    }

    .showcase .text h2 {
        font-size: 3em;
    }

    .showcase .text h3 {
        font-size: 2em;
    }

    .showcase .text p {
        font-size: 1em;
    }
}

@media (max-width: 767px) {
    .showcase,
    .showcase header,
    .showcase .social {
        padding: 20px;
    }

    .showcase .text h2 {
        font-size: 2em;
    }

    .showcase .text h3 {
        font-size: 1.5em;
    }

    .showcase .text p {
        font-size: 1em;
    }
}