@font-face {
    font-family: 'Bigger';
    src: url('../Font/bigger_display/BiggerDisplay.otf') format('opentype');
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('../Font/Josefin_Sans/JosefinSans-VariableFont_wght.ttf') format('truetype');
}

.navbar{
    margin: 0;
    padding: 0;
    position:fixed;
    width: 100vw;
    height: 7vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5vh 0;
    transition: 0.4s ease-out;
    z-index: 101;
}

.navbar_inner{
    display: flex;
    justify-content: space-between;
    width: 95vw;
    height: 100%;
}

.navbar_logo{
    height: 100%;
    border-radius: 100%;
    transition: 0.4s cubic-bezier(1, 0, 0, 1);
}

.menu_toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    width: auto;
    height: 100%;
    transition: 0.2s ease-out;
}

.menu_toggle:hover{
    cursor: pointer;
}

.menu_toggle:hover > .menu_toggle_icon{
    transform: scale(0.6) translateY(-10px);
}

.menu_toggle_icon{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    transform: scale(0.6);
    transition: 0.2s ease-out;
}

.menu_toggle_icon > .menu_toggle_line{
    width: 100%;
    height: 3px;
    background-color: var(--light-color);
}

.navpage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--dark-color);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.navpage_inner{
    margin-top: 7vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 85vw;
    height: 80%;
}

.navpage_inner_upper{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: auto;
}

.navpage_heading{
    margin: 0;
    padding: 0;
    font-family: var(--header-font);
    font-size: 3rem;
    color: var(--light-color);
    text-align: center;
    font-weight: 100;
    transition: 0.4s ease-out;
}

.navpage_inner_lower{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav_menu{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.nav_menu_section1{
    height: 100%;
    width: 50%;
    transition: 0.25s ease-out;
}

.nav_menu_section1_inner{
    width: 100%;
    height: 100%;
}

.nav_menu_section1_img1{
    top: 0;
    left: 0;
    position: absolute;
    width: 90%;
    height: 60%;
    background-image: url('../images/Navbar/placeholder1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 3;
}
.nav_menu_section1_img2{
    bottom: 5%;
    right: 5%;
    position: absolute;
    width: 40%;
    height: 70%;
    background-image: url('../images/Navbar/placeholder2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
}
.nav_menu_section1_img2_blur{
    bottom: 5%;
    right: 5%;
    position: absolute;
    width: 40%;
    height: 80%;
    background-image: url('../images/Navbar/placeholder2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(150px) brightness(0.8);
    z-index: 1;
}


.nav_menu_section2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 30%;
    transition: 0.25s ease-out;
}

.nav_menu_section2_inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.nav_menu_section2_whitespace{
    width: 0%;
    height: 100%;
}

.nav_menu_section2_divider{
    height: 100%;
    width: 0.5px;
    background-color: var(--light-color);
}

.nav_menu_section2_textbox{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.nav_menu_section2_textbox_inner{
    transform: translateY(0%);
    width: 100%;
    height: 100%;
    transition: 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.nav_menu_section2_textbox_inner > .contact{
    transform: translateY(50%);
    width: 100%;
    height: 75%;
    transition: 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.contact > .contact_inner{
    padding: 5%;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    transition: 0.4s ease;
}

.contact_inner > .contact_name,
.contact_inner > .contact_email,
.contact_inner > .contact_message {
    font-family: var(--subtext-font);
    font-size: 1.2rem;
    text-align: start;
    padding: 12px;
    line-height: 1;
    font-weight: 400;
    color: var(--dark-color);
    width: 80%;
}

.contact_inner > .contact_email,
.contact_inner > .contact_message {
    margin-top: 5px;
}

.contact_inner > .contact_message {
    width: calc(80% + 2px);
}

.contact_inner > .contact_send{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    cursor: pointer;

    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--primary-color);
    color: var(--light-color);
    margin-left: calc(40% - 20px);
    transition: 0.2s ease;
    border: none;
}

.contact_inner > .contact_send:hover{
    transform: translateY(0) scale(1.1);
}

.nav_links{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    height: 90%;
    width: 90%;
}

.link{
    width: 100%;
    height: calc(100% / 5);
}

.link_inner{
    width: 100%;
    height: 100%;
}

.link_inner > .link_text{
    position: absolute;
    line-height: 0;
    width: 100%;
    height: calc(100% / 5);
    display: flex;
    justify-content: start;
    padding-left: 5%;
    align-items: center;
    font-family: var(--header-font);
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 0.3px var(--light-color);
    letter-spacing: 2px;
    transition: 0.25s ease-out;
    cursor: pointer;
}

.link_inner > .background_gradient{
    position: absolute;
    width: 100%;
    height: calc(100% / 5 - 10px);
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 0, 0, 0) 100%);
    transition: 0.25s ease-out;
    opacity: 0;
    transition: 0.25s ease-out;
}

.link:hover > .link_inner > .link_text{
    color: var(--light-color);
}

.link:hover > .link_inner > .background_gradient{
    opacity: 1;
}

.link_active > .link_inner > .link_text{
    color: var(--light-color);
}

.link_active > .link_inner > .background_gradient{
    opacity: 1;
}

.nav_menu_section3{
    display: flex;
    align-items: end;
    height: 100%; 
    width: 20%;
    transition: 0.25s ease-out;
}

.nav_menu_section3_inner{
    position: absolute;
    left: 0%;
    bottom: 5%;
    width: 100%;
    height: 30%;

    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.nav_menu_section3_divider{
    height: 100%;
    width: 0.5px;
    background-color: var(--light-color);
}

.nav_menu_section3_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 90%;
    height: 100%;
}

.nav_menu_section3_address{
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-direction: column;
    width: 100%;
    height: 80%;
}

.nav_location{
    font-family: var(--subtext-font);
    font-weight: 200;
    color: var(--light-color);
}

.nav_location > h1{
    font-weight: 500;
    font-size: 1.6rem;
}

.nav_email{
    font-family: var(--subtext-font);
    font-weight: 200;
    color: var(--light-color);
}

.nav_menu_section3_social{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 20%;
}

.social_section1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    height: 100%;
}

.social_section2{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 50%;
    height: 100%;
}

.social_icon{
    width: 30px;
    height: 30px;
    mask-size: cover;
    color: var(--light-color);
    background-color: var(--light-color);
    cursor: pointer;
}

.social_icon1{
    mask-image: url("../images/Icons/facebook.png");
}

.social_icon2{
    margin-right: calc((100% - 60px) / 3);
    mask-image: url("../images/Icons/instagram.png");
}

.social_icon3{
    mask-image: url("../images/Icons/tiktok.png");
    margin-left:  calc((100% - 60px) / 3);
}

.social_icon4{
    mask-image: url("../images/Icons/youtube.png");
}

@media screen and (max-width: 1400px) {
    .link_inner > .link_text{
        font-size: 4rem;
    }

    .nav_menu_section3_inner{
        height: 50%;
    }
}

@media screen and (max-width: 768px) {
    .navbar{
        height: 6vh;
    }

    .contact_inner > .contact_name,
    .contact_inner > .contact_email,
    .contact_inner > .contact_message{
        width: 100%;
        padding: 8px;
        font-size: 0.9rem;
    }


    .contact_inner > .contact_send{
        width: 40px;
        height: 40px;
        margin-left: calc(50% - 25px);
        transform: translateY(-30px);
    }

    .contact_inner > .contact_send:hover{
        transform:  translateY(-30px) scale(1.1);
    }

    .navbar_inner{
        width: 90vw;
    }

    .menu_toggle:hover > .menu_toggle_icon{
        transform: scale(0.6);
    }

    .navpage_inner{
        width: 90vw;
    }

    .navpage_heading{
        font-size: 2.5rem;
    }

    .nav_menu{
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .nav_menu_section1{
        height: 20%;
        width: 100%;
    }

    .nav_menu_section1_img1{
        width: 100%;
        height: 100%;
    }

    .nav_menu_section1_img2{
        top: 60%;
        left: -1%;
        width: 30%;
        height: 120%;
    }

    .nav_menu_section1_img2_blur{
        top: 60%;
        left: -1%;
        width: 30%;
        height: 120%;
        filter: blur(100px) brightness(2);
    }

    .nav_menu_section2{
        height: 65%;
        width: 100%;
    }

    .nav_menu_section2_inner{
        height: 90%;
    }

    .nav_menu_section2_whitespace{
        width: 35%;
    }

    .nav_menu_section2_textbox{
        justify-content: end;
    }

    .nav_links{
        height: 100%;
    }

    .link_inner > .link_text{
        font-size: 2.5rem;
    }

    .link_inner > .background_gradient{
        width: 65%;
    }

    .nav_menu_section3{
        height: 15%; 
        width: 100%;
    }

    .nav_menu_section3_inner{
        bottom: 0%;
        height: 100%;
        flex-direction: column;
    }

    .nav_menu_section3_divider{
        height: 0px;
        width: 100%;
    }

    .nav_menu_section3_content{
        width: 100%;
        flex-direction: row;
    }

    
    .nav_menu_section3_address{
        width: 75%;
        height: 100%;
        justify-content: space-between;
    }

    .nav_location{
        font-size: 0.8rem;
    }

    .nav_location > h1{
        font-size: 1rem;
        font-weight: 400;
        line-height: 0%;
    }

    .nav_email{
        font-size: 0.8rem;
    }

    .nav_menu_section3_social{
        width: 20%;
        height: 100%;
        flex-direction: column;
    }

    .social_section1{
        width: 100%;
        height: 50%;
    }

    .social_section2{
        width: 100%;
        height: 50%;
    }

    .social_icon{
        width: 25px;
        height: 25px;
    }

    .social_icon1{
        mask-image: url("../images/Icons/facebook.png");
    }

    .social_icon2{
        margin-right: 0;
        mask-image: url("../images/Icons/instagram.png");
    }

    .social_icon3{
        mask-image: url("../images/Icons/tiktok.png");
        margin-left:  0;
    }

    .social_icon4{
        mask-image: url("../images/Icons/youtube.png");
    }
    
}