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

html, body {
    overscroll-behavior: none;
    background-color: white;
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  
body{
    width: 100%;
    height: 100%;
    margin: auto;
    font-family: 'Open Sans', sans-serif;
}

/* Style Mobile*/

body{
    margin: 0;
    font-weight: 400;
}

    /*navbar*/

#navbar-desktop{
    position: fixed;
    z-index: 1;
    top: 0%;
    width: 100%;
    /*mix-blend-mode: difference;*/
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: white;
    /*filter: drop-shadow(white 0rem 1rem 0.5rem);*/
    /* filter: drop-shadow(#1b1b1b 0rem 0rem 0.05rem); */
}

.logo{
    font-size: 1rem;
    font-weight: bold;
    margin: 1%;
    color: #1b1b1b;
    text-decoration: none;

}

.navbar-link{
    display: none;
    align-items: center;
}

.burger-menu{
    display: block;
    width: 2rem;
    height: 2rem;
    color: #1b1b1b;
    background: transparent;
    background-color: white;
    border-radius: 100%;
    border: 0px solid transparent;
}

.link{
    font-size: 1.25rem;
    padding: 1rem;
    color: #1b1b1b;
    transition: 0.25s;
    text-decoration: none;
}

.link-active{
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1rem;
    color: #1b1b1b;
    text-decoration: none;
}

.link:hover{
    opacity: 50%;
    text-decoration: underline;
}

    /*section*/

.section-1{
    margin: 2%;
}

.description-container{
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    margin-top: 20%;
}

.project-title{
    font-size: 1.5rem;
    font-weight: bold;
}

.project-detail{
    display: flex;
    gap: 1rem;
    /* grid-template-columns: 1fr 1fr; */
    margin-top: 5%;
}

.title-wrapper{
    font-size: 0.75rem;
    color: #757575;
}

.body-wrapper{
    font-size: 1rem;
    font-weight: bold;
    color: #1b1b1b;
}

.paragraph-1{
    font-size: 1.25rem;
    margin-top: 10%;
}

.paragraph-2{
    font-size: 0.75rem;
    margin-top: 10%;
}

.paragraph-3{
    font-size: 0.75rem;
}

.section-2{
    margin-top: 15%;

}

.hero-image-container{
    margin: 0%;
}

.hero-image{
    max-width: 100%;
}

.image-container-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1%;
    margin: 0%;
}

.menu-wrapper{
    display: none;
    position: fixed;
    z-index: 30;
    width: 100%;
    height: 100%;
    z-index: 30;
    left: 0;
    top: 0;

    .close-button1{
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 31;
        color: #1b1b1b;
        width: 2rem;
        height: 2rem;
        background: transparent;
        background-color: white;
        border-radius: 100%;
        border: 0px solid transparent;
    }

    .menu-content-wrapper{
        position: relative;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: space-around;
        align-items: center;

        .menu-content{
            opacity: 0%;
            transition: opacity 500ms linear;
    
        }
        .menu-content-active{
            font-size: 4rem;
            font-weight: bold;
            color: #1b1b1b;
            text-decoration: none;
        }

        .menu-content-notactive{
            font-size: 4rem;
            color: #1b1b1b;
            text-decoration: none;
        }

        .menu-content-notactive:hover{
            color: #757575;
            font-size: 4rem;
            text-decoration: underline;
        }
    }
}

.overlay-wrapper, .overlay-wrapper-video{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 30;
    left: 0;
    top: 0;

    .close-button, .close-button-video{
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 31;
        color: #1b1b1b;
        width: 2rem;
        height: 2rem;
        background: transparent;
        background-color: white;
        border-radius: 100%;
        border: 0px solid transparent;
    }

    .overlay-content-wrapper, .overlay-content-wrapper-video{
        position: relative;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;

        .overlay-content, .overlay-content-video{
            width: 100%;
            height: fit-content;
            max-width: auto;
            opacity: 0%;
            transition: opacity 500ms linear;
        }
    }
}

/* Style Laptop*/

@media (min-width: 1024px) {
    body{
        margin: 0;
        font-weight: 400;
    }
    
        /*navbar*/
    
    #navbar-desktop{
        position: fixed;
        z-index: 1;
        top: 0%;
        width: 100%;
        /*mix-blend-mode: difference;*/
    }
    
    .navbar-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.15%;
        background-color: white;
        /*filter: drop-shadow(white 0rem 1rem 0.5rem);*/
        /* filter: drop-shadow(#1b1b1b 0rem 0rem 0.05rem); */
    }
    
    .logo{
        font-size: 1rem;
        font-weight: bold;
        margin: 1%;
    
    }
    
    .navbar-link{
        display: flex;
        align-items: center;
    }

    .burger-menu{
        display: none;
    }
    
    .link{
        font-size: 0.9rem;
        padding: 1rem;
        color: #1b1b1b;
        transition: 0.25s;
    
    }
    
    .link-active{
        font-size: 0.9rem;
        font-weight: bold;
        padding: 1rem;
        color: #1b1b1b;
    }
    
    .link:hover{
        opacity: 50%;
        text-decoration: underline;
    }
    
        /*section*/
    
    .section-1{
        margin: 1%;
    }
    
    .description-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 9%;
    }
    
    .project-title{
        font-size: 3rem;
        font-weight: bold;
    }
    
    .project-detail{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 5%;
    }
    
    .title-wrapper{
        font-size: 1rem;
        color: #757575;
    }
    
    .body-wrapper{
        font-size: 1.25rem;
        font-weight: bold;
        color: #1b1b1b;
    }
    
    .paragraph-1{
        font-size: 2rem;
        margin: 0%;
    }
    
    .paragraph-2{
        font-size: 1.05rem;
        margin-top: 5%;
    }
    
    .paragraph-3{
        font-size: 1.05rem;
    }
    
    .section-2{
        margin-top: 5%;
    
    }
    
    .hero-image-container{
        margin: 0%;
    }
    
    .hero-image{
        max-width: 100%;
    }
    
    .image-container-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.3%;
        margin: 0%;
    }

    .overlay-wrapper, .overlay-wrapper-video{
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 30;
        left: 0;
        top: 0;

        .close-button, .close-button-video{
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            z-index: 31;
            color: #1b1b1b;
            width: 3rem;
            height: 3rem;
            background: transparent;
            background-color: white;
            border-radius: 100%;
            border: 0px solid transparent;
        }

        .overlay-content-wrapper, .overlay-content-wrapper-video{
            position: relative;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;

            .overlay-content, .overlay-content-video{
                width: 100%;
                height: auto;
                max-width: 70rem;
                opacity: 0%;
                transition: opacity 500ms linear;
            }
        }
    }
}

/* Style Desktop*/

@media (min-width: 1536px) {
    body{
        margin: 0;
        font-weight: 400;
    }
    
        /*navbar*/
    
    #navbar-desktop{
        position: fixed;
        z-index: 1;
        top: 0%;
        width: 100%;
        /*mix-blend-mode: difference;*/
    }
    
    .navbar-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.15%;
        background-color: white;
        /*filter: drop-shadow(white 0rem 1rem 0.5rem);*/
        /* filter: drop-shadow(#1b1b1b 0rem 0rem 0.05rem); */
    }
    
    .logo{
        font-size: 1.25rem;
        font-weight: bold;
        margin: 1%;
    
    }
    
    .navbar-link{
        display: flex;
        align-items: center;
    }

    .burger-menu{
        display: none;
    }
    
    .link{
        font-size: 1.1rem;
        padding: 1rem;
        color: #1b1b1b;
        transition: 0.25s;
    
    }
    
    .link-active{
        font-size: 1.1rem;
        font-weight: bold;
        padding: 1rem;
        color: #1b1b1b;
    }
    
    .link:hover{
        opacity: 50%;
        text-decoration: underline;
    }
    
        /*section*/
    
    .section-1{
        margin: 1%;
    }
    
    .description-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 9%;
    }
    
    .project-title{
        font-size: 3.5rem;
        font-weight: bold;
    }
    
    .project-detail{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 5%;
    }
    
    .title-wrapper{
        font-size: 1.25rem;
        color: #757575;
    }
    
    .body-wrapper{
        font-size: 1.5rem;
        font-weight: bold;
        color: #1b1b1b;
    }
    
    .paragraph-1{
        font-size: 2.5rem;
        margin: 0%;
    }
    
    .paragraph-2{
        font-size: 1.25rem;
        margin-top: 5%;
    }
    
    .paragraph-3{
        font-size: 1.25rem;
    }

    .paragraph-4{
        font-size: 1.25rem;
    }
    
    .section-2{
        margin-top: 5%;
    
    }
    
    .hero-image-container{
        margin: 0%;
    }
    
    .hero-image{
        max-width: 100%;
    }
    
    .image-container-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.3%;
        margin: 0%;
    }

    .overlay-wrapper, .overlay-wrapper-video{
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 30;
        left: 0;
        top: 0;

        .close-button, .close-button-video{
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            z-index: 31;
            color: #1b1b1b;
            width: 3rem;
            height: 3rem;
            background: transparent;
            background-color: white;
            border-radius: 100%;
            border: 0px solid transparent;
        }

        .overlay-content-wrapper, .overlay-content-wrapper-video{
            position: relative;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;

            .overlay-content, .overlay-content-video{
                width: 100%;
                height: auto;
                max-width: 70rem;
                opacity: 0%;
                transition: opacity 500ms linear;
            }
        }
    }
}